/*** 平台管理 admin / 123456 商户 18292417675 / 000000 用户 18292417675 / crmeb_123456 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for QRTZ_BLOB_TRIGGERS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_BLOB_TRIGGERS`; CREATE TABLE `QRTZ_BLOB_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `BLOB_DATA` blob, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) USING BTREE, CONSTRAINT `QRTZ_BLOB_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_BLOB_TRIGGERS -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for QRTZ_CALENDARS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_CALENDARS`; CREATE TABLE `QRTZ_CALENDARS` ( `SCHED_NAME` varchar(120) NOT NULL, `CALENDAR_NAME` varchar(200) NOT NULL, `CALENDAR` blob NOT NULL, PRIMARY KEY (`SCHED_NAME`,`CALENDAR_NAME`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_CALENDARS -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for QRTZ_CRON_TRIGGERS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_CRON_TRIGGERS`; CREATE TABLE `QRTZ_CRON_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `CRON_EXPRESSION` varchar(200) NOT NULL, `TIME_ZONE_ID` varchar(80) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) USING BTREE, CONSTRAINT `QRTZ_CRON_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_CRON_TRIGGERS -- ---------------------------- BEGIN; INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_10', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_11', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_12', 'DEFAULT', '0 0 1 * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_14', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_15', 'DEFAULT', '0 0 0 */1 * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_16', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_17', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_18', 'DEFAULT', '0 0 0 */1 * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_19', 'DEFAULT', '0 0 0 */1 * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_2', 'DEFAULT', '0 0 */1 * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_20', 'DEFAULT', '0 0 0 */1 * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_21', 'DEFAULT', '0 0 2 1 * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_22', 'DEFAULT', '0 0 */4 * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_3', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_4', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_5', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_6', 'DEFAULT', '0 0 */1 * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_7', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_8', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); INSERT INTO `QRTZ_CRON_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `CRON_EXPRESSION`, `TIME_ZONE_ID`) VALUES ('quartzScheduler', 'TASK_9', 'DEFAULT', '0 */1 * * * ?', 'Asia/Shanghai'); COMMIT; -- ---------------------------- -- Table structure for QRTZ_FIRED_TRIGGERS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_FIRED_TRIGGERS`; CREATE TABLE `QRTZ_FIRED_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `ENTRY_ID` varchar(95) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `INSTANCE_NAME` varchar(200) NOT NULL, `FIRED_TIME` bigint(13) NOT NULL, `SCHED_TIME` bigint(13) NOT NULL, `PRIORITY` int(11) NOT NULL, `STATE` varchar(16) NOT NULL, `JOB_NAME` varchar(200) DEFAULT NULL, `JOB_GROUP` varchar(200) DEFAULT NULL, `IS_NONCONCURRENT` varchar(1) DEFAULT NULL, `REQUESTS_RECOVERY` varchar(1) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`ENTRY_ID`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_FIRED_TRIGGERS -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for QRTZ_JOB_DETAILS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_JOB_DETAILS`; CREATE TABLE `QRTZ_JOB_DETAILS` ( `SCHED_NAME` varchar(120) NOT NULL, `JOB_NAME` varchar(200) NOT NULL, `JOB_GROUP` varchar(200) NOT NULL, `DESCRIPTION` varchar(250) DEFAULT NULL, `JOB_CLASS_NAME` varchar(250) NOT NULL, `IS_DURABLE` varchar(1) NOT NULL, `IS_NONCONCURRENT` varchar(1) NOT NULL, `IS_UPDATE_DATA` varchar(1) NOT NULL, `REQUESTS_RECOVERY` varchar(1) NOT NULL, `JOB_DATA` blob, PRIMARY KEY (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_JOB_DETAILS -- ---------------------------- BEGIN; INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_10', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400104F72646572526563656970745461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000A74000C6F726465725265636569707474000074001EE794A8E688B7E7A1AEE8AEA4E694B6E8B4A7E5908EE7BDAEE5A484E790867371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_11', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074000F4F72646572526566756E645461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000B74000B6F72646572526566756E64740000740012E8AEA2E58D95E98080E6ACBEE5A484E790867371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_12', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400114175746F5570646174654361745461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000B3020302031202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000C74000D6175746F557064617465436174740000740027E887AAE58AA8E69BB4E696B0E887AAE5AE9AE4B989E4BAA4E69893E7BB84E4BBB6E7B1BBE79BAE7371007E0014000000017800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_14', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074001050726F6475637453746F636B5461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000E74000E73746F636B4F7065726174696F6E740000740012E6938DE4BD9CE59586E59381E5BA93E5AD987371007E0014000000017800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_15', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074000E537461746973746963735461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000D3020302030202A2F31202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000F74000A73746174697374696373740000740012E7BB9FE8AEA1E5AE9AE697B6E4BBBBE58AA17371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_16', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074001D4173796E6357654368617450726F6772616D54656D704D6573736167657372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000010740004696E697474000074001BE5B08FE7A88BE5BA8FE6B688E8B4B9E9989FE58897E6B688E8B4B97371007E0014000000017800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_17', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074001C4173796E635765436861745075626C696354656D704D6573736167657372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B020000787000000011740004696E697474000074001BE585ACE4BC97E58FB7E6B688E8B4B9E9989FE58897E6B688E8B4B97371007E0014000000017800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_18', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400114175746F44656C6574654C6F675461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017E290C96F07874000D3020302030202A2F31202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000001274000D6175746F44656C6574654C6F67740000740024E887AAE58AA8E588A0E999A4E4B88DE99C80E8A681E79A84E58E86E58FB2E697A5E5BF977371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_19', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400144F726465724175746F526563656970745461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000018198C30A807874000D3020302030202A2F31202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B0200007870000000137400106175746F54616B6544656C697665727974000074001CE7B3BBE7BB9FE887AAE58AA8E7A1AEE8AEA4E694B6E8B4A75461736B7371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_2', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074001342726F6B657261676546726F7A656E5461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EAC7107874000D302030202A2F31202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000274000F62726F6B657261676546726F7A656E74000074001BE4BDA3E98791E586BBE7BB93E69C9FE8A7A3E586BBE5A484E790867371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_20', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074000D53746174656D656E745461736B7372000E6A6176612E7574696C2E44617465686A81014B5974190300007870770800000180040F8E507874000D3020302030202A2F31202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000001474000E6461696C7953746174656D656E74740000740018E6AF8FE697A5E5B890E58D95E5AE9AE697B6E4BBBBE58AA17371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_21', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074000D53746174656D656E745461736B7372000E6A6176612E7574696C2E44617465686A81014B5974190300007870770800000180072333087874000B30203020322031202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000001574000E6D6F6E746853746174656D656E74740000740018E6AF8FE69C88E5B890E58D95E5AE9AE697B6E4BBBBE58AA17371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_22', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074001A5365636B696C6C50726F6475637443616C6C6261636B5461736B7372000E6A6176612E7574696C2E44617465686A81014B5974190300007870770800000184A38554987874000D302030202A2F34202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000001674001370726F6475637443616C6C6261636B5461736B740000740024E7A792E69D80E59586E59381E59B9EE5BD92E5BA93E5AD98E5AE9AE697B6E4BBBBE58AA17371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_3', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C7870740011436F75706F6E4F7665726475655461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EAC7107874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000374000D636F75706F6E4F766572647565740000740015E4BC98E683A0E588B8E8BF87E69C9FE5A484E790867371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_4', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C7870740012496E74656772616C46726F7A656E5461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EAC7107874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000474000E696E74656772616C46726F7A656E74000074001BE7A7AFE58886E586BBE7BB93E69C9FE8A7A3E586BBE5A484E790867371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_5', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400134F726465724175746F43616E63656C5461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EAC7107874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000574000A6175746F43616E63656C740000740021E7B3BBE7BB9FE887AAE58AA8E58F96E6B688E69CAAE694AFE4BB98E8AEA2E58D957371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_6', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400154F726465724175746F436F6D706C6574655461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EAC7107874000D302030202A2F31202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000674000C6175746F436F6D706C657465740000740018E8AEA2E58D95E887AAE58AA8E5AE8CE68890E5A484E790867371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_7', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C787074000F4F7264657243616E63656C5461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EAC7107874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000774000A7573657243616E63656C740000740018E794A8E688B7E58F96E6B688E8AEA2E58D95E5A484E790867371007E0014000000007800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_8', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400114F72646572436F6D706C6574655461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EAC7107874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000874000D6F72646572436F6D706C657465740000740018E794A8E688B7E8AEA2E58D95E5AE8CE68890E5A484E790867371007E0014000000017800); INSERT INTO `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `JOB_CLASS_NAME`, `IS_DURABLE`, `IS_NONCONCURRENT`, `IS_UPDATE_DATA`, `REQUESTS_RECOVERY`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_9', 'DEFAULT', NULL, 'com.zbkj.admin.quartz.QuartzJob', '0', '1', '0', '0', 0xACED0005737200156F72672E71756172747A2E4A6F62446174614D61709FB083E8BFA9B0CB020000787200266F72672E71756172747A2E7574696C732E537472696E674B65794469727479466C61674D61708208E8C3FBC55D280200015A0013616C6C6F77735472616E7369656E74446174617872001D6F72672E71756172747A2E7574696C732E4469727479466C61674D617013E62EAD28760ACE0200025A000564697274794C00036D617074000F4C6A6176612F7574696C2F4D61703B787001737200116A6176612E7574696C2E486173684D61700507DAC1C31660D103000246000A6C6F6164466163746F724900097468726573686F6C6478703F4000000000000C7708000000100000000174000D4A4F425F504152414D5F4B455973720020636F6D2E7A626B6A2E61646D696E2E6D6F64656C2E5363686564756C654A6F6200000000000000010200094C00086265616E4E616D657400124C6A6176612F6C616E672F537472696E673B4C000A63726561746554696D657400104C6A6176612F7574696C2F446174653B4C000E63726F6E45787072657373696F6E71007E00094C0008697344656C6574657400134C6A6176612F6C616E672F426F6F6C65616E3B4C00056A6F6249647400134C6A6176612F6C616E672F496E74656765723B4C000A6D6574686F644E616D6571007E00094C0006706172616D7371007E00094C000672656D61726B71007E00094C000673746174757371007E000C78707400134F72646572506179537563636573735461736B7372000E6A6176612E7574696C2E44617465686A81014B597419030000787077080000017D73EACAF87874000D30202A2F31202A202A202A203F737200116A6176612E6C616E672E426F6F6C65616ECD207280D59CFAEE0200015A000576616C7565787000737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000974000D6F72646572506179416674657274000074001EE8AEA2E58D95E694AFE4BB98E68890E58A9FE5908EE7BDAEE5A484E790867371007E0014000000007800); COMMIT; -- ---------------------------- -- Table structure for QRTZ_LOCKS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_LOCKS`; CREATE TABLE `QRTZ_LOCKS` ( `SCHED_NAME` varchar(120) NOT NULL, `LOCK_NAME` varchar(40) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`LOCK_NAME`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_LOCKS -- ---------------------------- BEGIN; INSERT INTO `QRTZ_LOCKS` (`SCHED_NAME`, `LOCK_NAME`) VALUES ('quartzScheduler', 'TRIGGER_ACCESS'); COMMIT; -- ---------------------------- -- Table structure for QRTZ_PAUSED_TRIGGER_GRPS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_PAUSED_TRIGGER_GRPS`; CREATE TABLE `QRTZ_PAUSED_TRIGGER_GRPS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_GROUP`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_PAUSED_TRIGGER_GRPS -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for QRTZ_SCHEDULER_STATE -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_SCHEDULER_STATE`; CREATE TABLE `QRTZ_SCHEDULER_STATE` ( `SCHED_NAME` varchar(120) NOT NULL, `INSTANCE_NAME` varchar(200) NOT NULL, `LAST_CHECKIN_TIME` bigint(13) NOT NULL, `CHECKIN_INTERVAL` bigint(13) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`INSTANCE_NAME`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_SCHEDULER_STATE -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for QRTZ_SIMPLE_TRIGGERS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_SIMPLE_TRIGGERS`; CREATE TABLE `QRTZ_SIMPLE_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `REPEAT_COUNT` bigint(7) NOT NULL, `REPEAT_INTERVAL` bigint(12) NOT NULL, `TIMES_TRIGGERED` bigint(10) NOT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) USING BTREE, CONSTRAINT `QRTZ_SIMPLE_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_SIMPLE_TRIGGERS -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for QRTZ_SIMPROP_TRIGGERS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_SIMPROP_TRIGGERS`; CREATE TABLE `QRTZ_SIMPROP_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `STR_PROP_1` varchar(512) DEFAULT NULL, `STR_PROP_2` varchar(512) DEFAULT NULL, `STR_PROP_3` varchar(512) DEFAULT NULL, `INT_PROP_1` int(11) DEFAULT NULL, `INT_PROP_2` int(11) DEFAULT NULL, `LONG_PROP_1` bigint(20) DEFAULT NULL, `LONG_PROP_2` bigint(20) DEFAULT NULL, `DEC_PROP_1` decimal(13,4) DEFAULT NULL, `DEC_PROP_2` decimal(13,4) DEFAULT NULL, `BOOL_PROP_1` varchar(1) DEFAULT NULL, `BOOL_PROP_2` varchar(1) DEFAULT NULL, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) USING BTREE, CONSTRAINT `QRTZ_SIMPROP_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) REFERENCES `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_SIMPROP_TRIGGERS -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for QRTZ_TRIGGERS -- ---------------------------- DROP TABLE IF EXISTS `QRTZ_TRIGGERS`; CREATE TABLE `QRTZ_TRIGGERS` ( `SCHED_NAME` varchar(120) NOT NULL, `TRIGGER_NAME` varchar(200) NOT NULL, `TRIGGER_GROUP` varchar(200) NOT NULL, `JOB_NAME` varchar(200) NOT NULL, `JOB_GROUP` varchar(200) NOT NULL, `DESCRIPTION` varchar(250) DEFAULT NULL, `NEXT_FIRE_TIME` bigint(13) DEFAULT NULL, `PREV_FIRE_TIME` bigint(13) DEFAULT NULL, `PRIORITY` int(11) DEFAULT NULL, `TRIGGER_STATE` varchar(16) NOT NULL, `TRIGGER_TYPE` varchar(8) NOT NULL, `START_TIME` bigint(13) NOT NULL, `END_TIME` bigint(13) DEFAULT NULL, `CALENDAR_NAME` varchar(200) DEFAULT NULL, `MISFIRE_INSTR` smallint(2) DEFAULT NULL, `JOB_DATA` blob, PRIMARY KEY (`SCHED_NAME`,`TRIGGER_NAME`,`TRIGGER_GROUP`) USING BTREE, KEY `SCHED_NAME` (`SCHED_NAME`,`JOB_NAME`,`JOB_GROUP`) USING BTREE, CONSTRAINT `QRTZ_TRIGGERS_ibfk_1` FOREIGN KEY (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) REFERENCES `QRTZ_JOB_DETAILS` (`SCHED_NAME`, `JOB_NAME`, `JOB_GROUP`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of QRTZ_TRIGGERS -- ---------------------------- BEGIN; INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_10', 'DEFAULT', 'TASK_10', 'DEFAULT', NULL, 1677751980000, 1677751920000, 5, 'WAITING', 'CRON', 1677750177000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_11', 'DEFAULT', 'TASK_11', 'DEFAULT', NULL, 1677751980000, 1677751920000, 5, 'WAITING', 'CRON', 1677750177000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_12', 'DEFAULT', 'TASK_12', 'DEFAULT', NULL, 1677776400000, -1, 5, 'PAUSED', 'CRON', 1677750176000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_14', 'DEFAULT', 'TASK_14', 'DEFAULT', NULL, 1677750180000, -1, 5, 'PAUSED', 'CRON', 1677750175000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_15', 'DEFAULT', 'TASK_15', 'DEFAULT', NULL, 1677772800000, -1, 5, 'WAITING', 'CRON', 1677750175000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_16', 'DEFAULT', 'TASK_16', 'DEFAULT', NULL, 1677750180000, -1, 5, 'PAUSED', 'CRON', 1677750174000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_17', 'DEFAULT', 'TASK_17', 'DEFAULT', NULL, 1677750180000, -1, 5, 'PAUSED', 'CRON', 1677750173000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_18', 'DEFAULT', 'TASK_18', 'DEFAULT', NULL, 1677772800000, -1, 5, 'WAITING', 'CRON', 1677750172000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_19', 'DEFAULT', 'TASK_19', 'DEFAULT', NULL, 1677772800000, -1, 5, 'WAITING', 'CRON', 1677750171000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_2', 'DEFAULT', 'TASK_2', 'DEFAULT', NULL, 1677754800000, 1677751200000, 5, 'WAITING', 'CRON', 1677750181000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_20', 'DEFAULT', 'TASK_20', 'DEFAULT', NULL, 1677772800000, -1, 5, 'WAITING', 'CRON', 1677750171000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_21', 'DEFAULT', 'TASK_21', 'DEFAULT', NULL, 1680285600000, -1, 5, 'WAITING', 'CRON', 1677750170000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_22', 'DEFAULT', 'TASK_22', 'DEFAULT', NULL, 1677758400000, -1, 5, 'WAITING', 'CRON', 1677750170000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_3', 'DEFAULT', 'TASK_3', 'DEFAULT', NULL, 1677751980000, 1677751920000, 5, 'WAITING', 'CRON', 1677750181000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_4', 'DEFAULT', 'TASK_4', 'DEFAULT', NULL, 1677751980000, 1677751920000, 5, 'WAITING', 'CRON', 1677750180000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_5', 'DEFAULT', 'TASK_5', 'DEFAULT', NULL, 1677751980000, 1677751920000, 5, 'WAITING', 'CRON', 1677750180000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_6', 'DEFAULT', 'TASK_6', 'DEFAULT', NULL, 1677754800000, 1677751200000, 5, 'WAITING', 'CRON', 1677750179000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_7', 'DEFAULT', 'TASK_7', 'DEFAULT', NULL, 1677751980000, 1677751920000, 5, 'WAITING', 'CRON', 1677750179000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_8', 'DEFAULT', 'TASK_8', 'DEFAULT', NULL, 1677750180000, -1, 5, 'PAUSED', 'CRON', 1677750178000, 0, NULL, 1, ''); INSERT INTO `QRTZ_TRIGGERS` (`SCHED_NAME`, `TRIGGER_NAME`, `TRIGGER_GROUP`, `JOB_NAME`, `JOB_GROUP`, `DESCRIPTION`, `NEXT_FIRE_TIME`, `PREV_FIRE_TIME`, `PRIORITY`, `TRIGGER_STATE`, `TRIGGER_TYPE`, `START_TIME`, `END_TIME`, `CALENDAR_NAME`, `MISFIRE_INSTR`, `JOB_DATA`) VALUES ('quartzScheduler', 'TASK_9', 'DEFAULT', 'TASK_9', 'DEFAULT', NULL, 1677751980000, 1677751920000, 5, 'WAITING', 'CRON', 1677750178000, 0, NULL, 1, ''); COMMIT; -- ---------------------------- -- Table structure for eb_activity_product -- ---------------------------- DROP TABLE IF EXISTS `eb_activity_product`; CREATE TABLE `eb_activity_product` ( `aid` int(11) NOT NULL COMMENT '活动id', `pro_id` int(11) NOT NULL COMMENT '商品id', `pro_image` varchar(256) NOT NULL DEFAULT '' COMMENT '活动商品图片', `sort` int(5) NOT NULL DEFAULT '999' COMMENT '排序', PRIMARY KEY (`aid`,`pro_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='活动商品关联表'; -- ---------------------------- -- Records of eb_activity_product -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_activity_style -- ---------------------------- DROP TABLE IF EXISTS `eb_activity_style`; CREATE TABLE `eb_activity_style` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `name` varchar(255) NOT NULL COMMENT '活动名称', `type` bit(1) NOT NULL COMMENT '活动类型0=活动边框,1=活动背景', `starttime` datetime NOT NULL COMMENT '开始时间', `endtime` datetime NOT NULL COMMENT '结束时间', `style` varchar(255) NOT NULL COMMENT '活动边框素材地址', `status` bit(1) NOT NULL COMMENT '状态 0=关闭1=开启', `method` int(11) DEFAULT NULL COMMENT '商品参与类型 0=全部商品参与,1=指定商品参与,2=指定品牌参与,3=指定商品分类参与,4=指定商户产品', `products` varchar(500) DEFAULT NULL COMMENT '参与活动商品', `createtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `updatetime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of eb_activity_style -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_ali_pay_callback -- ---------------------------- DROP TABLE IF EXISTS `eb_ali_pay_callback`; CREATE TABLE `eb_ali_pay_callback` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `notify_type` varchar(64) DEFAULT NULL COMMENT '通知的类型', `notify_id` varchar(128) DEFAULT NULL COMMENT '通知校验 ID', `app_id` varchar(32) DEFAULT NULL COMMENT '支付宝分配给开发者的应用 ID', `charset` varchar(10) DEFAULT NULL COMMENT '编码格式,如 utf-8、gbk、gb2312 等', `version` varchar(3) DEFAULT NULL COMMENT '调用的接口版本,固定为:1.0', `sign_type` varchar(10) DEFAULT NULL COMMENT '商户生成签名字符串所使用的签名算法类型,目前支持 RSA2 和 RSA,推荐使用 RSA2', `sign` varchar(256) DEFAULT NULL COMMENT '签名', `trade_no` varchar(64) DEFAULT NULL COMMENT '支付宝交易凭证号', `out_trade_no` varchar(64) DEFAULT NULL COMMENT '原支付请求的商户订单号', `trade_status` varchar(32) DEFAULT NULL COMMENT '交易目前所处的状态:WAIT_BUYER_PAY-交易创建,等待买家付款,TRADE_CLOSED-未付款交易超时关闭,或支付完成后全额退款,3-交易支付成功,4-交易结束,不可退款', `total_amount` decimal(9,2) DEFAULT NULL COMMENT '本次交易支付的订单金额,单位为人民币(元)', `receipt_amount` decimal(9,2) DEFAULT NULL COMMENT '商家在交易中实际收到的款项,单位为人民币(元)', `refund_fee` decimal(9,2) DEFAULT NULL COMMENT '退款通知中,返回总退款金额,单位为人民币(元),支持两位小数', `subject` varchar(256) DEFAULT NULL COMMENT '商品的标题/交易标题/订单标题/订单关键字等,是请求时对应的参数,原样通知回来', `body` varchar(400) DEFAULT NULL COMMENT '该订单的备注、描述、明细等。对应请求时的 body 参数,原样通知回来', `passback_params` varchar(512) DEFAULT NULL COMMENT '公共回传参数,如果请求时传递了该参数,则返回给商户时会在异步通知时将该参数原样返回。本参数必须进行UrlEncode之后才可以发送给支付宝。', `notify_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '通知的发送时间。格式为 yyyy-MM-dd HH:mm:ss', `add_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, KEY `out_trade_no` (`out_trade_no`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='支付宝回调表'; -- ---------------------------- -- Records of eb_ali_pay_callback -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_ali_pay_info -- ---------------------------- DROP TABLE IF EXISTS `eb_ali_pay_info`; CREATE TABLE `eb_ali_pay_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(50) DEFAULT NULL COMMENT '支付宝分配给开发者的应用ID', `timestamp` varchar(20) DEFAULT NULL COMMENT '发送请求的时间,格式yyyy-MM-dd HH:mm:ss', `body` varchar(128) DEFAULT NULL COMMENT '订单描述', `subject` varchar(256) DEFAULT NULL COMMENT '订单标题', `out_trade_no` varchar(64) DEFAULT NULL COMMENT '商户订单号', `timeout_express` varchar(6) DEFAULT NULL COMMENT '订单相对超时时间', `time_expire` varchar(32) DEFAULT NULL COMMENT '订单绝对超时时间', `total_amount` varchar(9) DEFAULT NULL COMMENT '订单总金额。单位为元,精确到小数点后两位', `passback_params` varchar(512) DEFAULT NULL COMMENT '公用回传参数,本参数必须进行UrlEncode之后才可以发送给支付宝', `code` varchar(32) DEFAULT NULL COMMENT '网关返回码', `msg` varchar(256) DEFAULT NULL COMMENT '网关返回码描述', `sub_code` varchar(50) DEFAULT NULL COMMENT '业务返回码', `sub_msg` varchar(100) DEFAULT NULL COMMENT '业务返回码描述', `sign` varchar(500) DEFAULT NULL COMMENT '签名', `trade_no` varchar(64) DEFAULT NULL COMMENT '该交易在支付宝系统中的交易流水号', `seller_id` varchar(20) DEFAULT NULL COMMENT '收款支付宝账号对应的支付宝唯一用户号', `notify_url` varchar(256) DEFAULT NULL COMMENT '支付宝服务器主动通知商户服务器里指定的页面http/https路径', PRIMARY KEY (`id`) USING BTREE, KEY `out_trade_no` (`out_trade_no`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='支付宝订单表'; -- ---------------------------- -- Records of eb_ali_pay_info -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_article -- ---------------------------- DROP TABLE IF EXISTS `eb_article`; CREATE TABLE `eb_article` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '文章ID', `cid` int(11) NOT NULL DEFAULT '0' COMMENT '分类id', `title` varchar(200) NOT NULL DEFAULT '' COMMENT '文章标题', `author` varchar(100) NOT NULL DEFAULT '' COMMENT '文章作者', `cover` varchar(255) NOT NULL DEFAULT '' COMMENT '文章封面', `synopsis` varchar(500) DEFAULT '' COMMENT '文章简介', `content` text NOT NULL COMMENT '文章内容', `visit` bigint(15) NOT NULL DEFAULT '0' COMMENT '浏览次数', `is_hot` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否热门(小程序)', `is_banner` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否轮播图(小程序)', `status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '状态,0-关闭,1-开启', `sort` int(6) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品关联id', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除,0-未删除,1-删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `cid` (`cid`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='文章管理表'; -- ---------------------------- -- Records of eb_article -- ---------------------------- BEGIN; INSERT INTO `eb_article` (`id`, `cid`, `title`, `author`, `cover`, `synopsis`, `content`, `visit`, `is_hot`, `is_banner`, `status`, `sort`, `product_id`, `is_del`, `create_time`, `update_time`) VALUES (1, 1, '打造一款爆品', '大粽子', 'crmebimage/public/store/2022/11/15/02b8c5a0adff40ca9f76448b81b8f1a5fkryldsm8f.jpg', '如何打造一款爆品', '

1、爆品品类的选择

\n

从风口选择品类、产品定义到可感知研发,结合竞争对手,找出他们的弱点,开辟另一个细分领域出来,爆品思维核心不是跟随,而是找到蓝海,并打败所有其他的品牌。打造爆品不提倡跟随战略,一方面,跟随者难以撼动领先者在消费者心目中的地位,另一方面,跟随者想在品质上做到颠覆近乎不可能。真正做到了‘人无我有,人有我精,人精我专’的程度。”

\n

但是有一点,爆品思维不能总是机会主义倾向,如果你每天想着找风口、找痛点,实际上找到不痛点的,而找到的所谓痛点很可能也是“伪痛点”,如果在战略层面欠缺考虑,则会陷入迷茫之中。

\n

品类基础广谱=顾客类型广*消费频次高,换句话说,吃的人群广和愿意重复吃的菜。

\n

2、爆品的结构化

\n

爆品的前提一定是从单品出发。爆品思维的第一层含义就是单品思维,企业先把超级单品大头透做深,做到“1厘米宽1公里深”,打造出用户口碑爆棚的超级爆品。通过爆品的驱动影响整个品类,从而带动整个品类的系列产品都成为“爆品系列”。

\n

爆品则主要立足于流量思维,跟电商的爆款比较接近。以成本价或低于成本的价格,用功能或者体验的极致,靠“羊毛出在狗身上,猪买单”的思维来实现爆发式增长。

\n

欧赛斯合伙人泉爷认为,打造爆品需要强调一点,大单品≠爆品,大单品的逻辑是有销量、有规模、市场地位、有利润、更有影响力和话语权。而爆品的逻辑是流量化、低成本、规模化、高性价比,消费者追求高价值、有品质、有品位的产品,这是爆品所谓的免费、低价所做不到的。

\n

爆品公式:刚需产品×解决痛点+高颜值+有内涵+有文化

\n

3、爆品的内核是品质

\n

产品品质是1,营销、体验、服务、包装……都是后面的0,没有前面的1,后面的0再多,也等于0,而如果有了前面的1,后面的0就是产品和品牌的附加值。爆品是有【爆】和【品】两个字组成的,其中【爆】是指引爆、爆发的意思,【品】是指产品、品牌、质量、以及人品,品由三个口组成,是众口铄金,是口口传播,最后成为口碑。

\n

在卤味行业中,绝味的产品特色是“麻辣鲜香”,周黑鸭是“鲜香甜辣”,周黑鸭创始人周富裕江湖人称“鸭哥”,一天的时间能围在卤锅周围工作20个小时以上,耐心的钻研加之天生的口味敏感天赋,造就了周黑鸭独特的“甜辣酱”馥郁风,消费者对于周黑鸭的认可度较高:“辣的周黑鸭够味,不辣的够清新,浓妆淡抹总相宜!”因此,爆是果,品是因,爆品是因果。

\n

爆品的起点不是在产品上市的时间点,而是在产品生产端的起点及开发过程中,甚至在产品的创意阶段,就已经开始植入爆品基因。
产品是一切传播、一切营销的起点,需要用产品驱动营销,而非用营销去强推产品。明白这个点,在产品开发的过程的每一个环节:创意、命名、包装设计、配方设计都会考虑如何预埋爆点。
爆品开发的节点:
需求洞察→产品概念收集→产品开发方向确认→包装设计、口味测试→中试→上线推广

\n

4、产品之外是价值链接

\n

爆品往往不只在于产品本身,需要转变思维,从卖产品到卖服务,从卖产品到卖价值观。产品受时代的束缚,产品是有周期的,但服务没有。在满足了各种口味类型的需求之后,有的产品生来就是有情绪的,有社会价值的,有符号属性的,有审美倾向的。

\n

举个例子,“辣鸡侠”的传播口号为:怼遍全宇宙,薯我最好吃!十足的个性加上张扬的造型,让产品风格和调性已经不再像之前的玩家一样只追寻口味,更向着“好酷”的品牌上进发。

\n

随着“Z世代”(95~00后)成为消费主力,品牌老化已经成为非常普遍的商业现象。而这样一群富有个性的消费趋向的日渐壮大,无形中成了“情绪食品”的繁荣。正所谓“食色性也”,现在的零食不仅要“好吃”、“好看”,更要像一张名片一样,只要一展示,就能传递出年轻人的“性格“与“品位”。而“辣鸡侠”的理念则与这个趋势不谋而合:定义“社交食品新模式”。

\n

在互联网思维下,有一些爆款品牌是资本化的加持,比如元気森林、认养一头牛、三顿半……这些品牌让消费者眼前一亮,也成为资本的宠儿。

\n

5、爆品是一个生态体系

\n

爆品不是打造出一款产品,也不是打造一个系列产品就可以了,而是要一遍又一遍地修正你的经营体系,在这个体系中,产品只是其中一个重要部分,除此之外,还包括用户、服务、包装、供应链等种种环节,拥有了这样的体系或者掌握了这样的思维方法,会让你在任何一个领域内都能够生产出爆品来。

\n

营销战役首先是从公司内部引爆的,公司内部生态系统要建立以爆品为中心的体系化经营,包括生产体系、技术研发体系、服务体系、团队体系、考核体系、零售体系。

\n

爆品体系要提升产品的运营能力,用户分析、产品定位、系统跟踪、运营创新。“兵贵神速”与“唯快不败”是互联网语境下企业生存的铁律。与市场抢时间,与同行抢效率,两个要素在爆品体系中缺一不可。

\n

爆品体系:用户分析+产品定位+研发+生产+技术+团队+运营+考核+零售体系

\n

6、爆品的营销推广(线上)

\n

互联网时代与传统销售的差异点在于,互联网时代品牌有更多渠道与用户接触,品牌可以通过内容建设来与消费者互动,直接收取用户反馈,进行品牌传播或产品推广。

\n

一个超级话题、一个超级网红级包装、 一个超级创意海报、一个超级爆款尝鲜装“小包装”、一个超级爆款秒杀价“xxx”积人气、一个超级爆款销售氛围营造“日销3000” “全国人民都在吃”••••

', 139, 1, 0, 1, 0, 0, 0, '2022-11-16 17:36:37', '2023-02-17 15:41:28'); COMMIT; -- ---------------------------- -- Table structure for eb_article_category -- ---------------------------- DROP TABLE IF EXISTS `eb_article_category`; CREATE TABLE `eb_article_category` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '文章分类ID', `name` varchar(255) NOT NULL DEFAULT '' COMMENT '分类名称', `icon` varchar(255) NOT NULL DEFAULT '' COMMENT '分类图标', `sort` int(6) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `status` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '状态,0-关闭,1-开启', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除,0-未删除,1-删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='文章分类表'; -- ---------------------------- -- Records of eb_article_category -- ---------------------------- BEGIN; INSERT INTO `eb_article_category` (`id`, `name`, `icon`, `sort`, `status`, `is_del`, `create_time`, `update_time`) VALUES (1, '身边助农', 'crmebimage/public/product/2022/12/01/b441836d29194ae9a6529a8ef91fa2d18o7lmb9pxq.png', 1, 1, 0, '2022-12-02 15:26:52', '2023-02-14 17:40:10'); COMMIT; -- ---------------------------- -- Table structure for eb_bill -- ---------------------------- DROP TABLE IF EXISTS `eb_bill`; CREATE TABLE `eb_bill` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '帐单id', `uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户uid', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户id', `link_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '关联id', `order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '关联订单', `pm` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '0 = 支出 1 = 获得', `amount` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额', `type` varchar(20) NOT NULL DEFAULT '' COMMENT '类型:pay_order-订单支付,refund_order-订单退款,recharge_user-用户充值,yue_pay-余额支付,merchant_collect-商户分账,brokerage-分佣,system-系统', `mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE, KEY `type` (`type`) USING BTREE, KEY `pm` (`pm`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='平台帐单表'; -- ---------------------------- -- Records of eb_bill -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_browse_record -- ---------------------------- DROP TABLE IF EXISTS `eb_browse_record`; CREATE TABLE `eb_browse_record` ( `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户id', `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品id', `date` varchar(12) NOT NULL DEFAULT '' COMMENT '日期:年-月-日', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`uid`,`product_id`) USING BTREE, KEY `date` (`date`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='浏览记录表'; -- ---------------------------- -- Records of eb_browse_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_cart -- ---------------------------- DROP TABLE IF EXISTS `eb_cart`; CREATE TABLE `eb_cart` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '购物车表ID', `uid` int(11) unsigned NOT NULL COMMENT '用户ID', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户Id', `product_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID', `product_attr_unique` int(11) NOT NULL DEFAULT '0' COMMENT '商品规格属性ID', `cart_num` int(5) unsigned NOT NULL DEFAULT '0' COMMENT '商品数量', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '购物车状态', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `user_id` (`uid`) USING BTREE, KEY `search_id` (`id`,`uid`,`mer_id`,`status`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='购物车表'; -- ---------------------------- -- Records of eb_cart -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_category -- ---------------------------- DROP TABLE IF EXISTS `eb_category`; CREATE TABLE `eb_category` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级ID', `path` varchar(255) NOT NULL DEFAULT '/0/' COMMENT '路径', `name` varchar(50) NOT NULL COMMENT '分类名称', `type` smallint(2) DEFAULT '1' COMMENT '类型,2 附件分类, 4 设置分类, 5 菜单分类,6 配置分类, 7 秒杀配置', `url` varchar(255) DEFAULT '' COMMENT '地址', `extra` text COMMENT '扩展字段 Jsos格式', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态, 1正常,0失效', `sort` int(6) NOT NULL DEFAULT '99999' COMMENT '排序', `owner` int(11) NOT NULL DEFAULT '-1' COMMENT '分类所属:-1 - 平台,其他-商户', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `status+pid` (`pid`,`status`) USING BTREE, KEY `id+status+url` (`path`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='分类表'; -- ---------------------------- -- Records of eb_category -- ---------------------------- BEGIN; INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (5, 0, '/0/', '应用配置', 6, '应用配置', NULL, 1, 7, -1, '2022-08-01 10:05:45', '2022-08-01 16:55:25'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (7, 0, '/0/', '文件上传配置', 6, '文件上传配置', NULL, 1, 1, -1, '2022-08-01 10:06:10', '2022-08-01 10:06:10'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (8, 0, '', '第三方配置', 6, '第三方配置', NULL, 1, 1, -1, '2022-08-01 10:06:22', '2022-11-09 10:03:15'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (9, 0, '/0/', '商户设置', 6, '商户设置', NULL, 1, 9, -1, '2022-08-01 10:06:47', '2022-08-01 16:55:10'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (10, 0, '/0/', '商城设置/移动端配置', 6, '商城设置/移动端配置', NULL, 1, 8, -1, '2022-08-01 10:07:08', '2022-08-01 16:55:19'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (11, 0, '/0/', '支付/充值', 6, '支付/充值', NULL, 1, 6, -1, '2022-08-01 10:07:21', '2022-08-01 16:55:31'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (12, 5, '/0/5/', '公众号配置', 6, '公众号配置', '8', 1, 1, -1, '2022-08-01 12:14:55', '2022-08-01 12:29:31'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (13, 5, '/0/5/', '小程序配置', 6, '小程序配置', '9', 1, 1, -1, '2022-08-01 12:15:05', '2022-08-01 14:09:27'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (14, 7, '/0/7/', '基础配置', 6, '基础配置', '11', 1, 1, -1, '2022-08-01 12:16:13', '2022-08-01 14:09:44'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (15, 7, '/0/7/', '阿里云配置', 6, '阿里云配置', '12', 1, 1, -1, '2022-08-01 12:16:21', '2022-08-01 14:09:55'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (16, 7, '/0/7/', '七牛云配置', 6, '七牛云配置', '13', 1, 1, -1, '2022-08-01 12:16:28', '2022-08-01 14:10:04'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (17, 7, '/0/7/', '腾讯云配置', 6, '腾讯云配置', '14', 1, 1, -1, '2022-08-01 12:16:35', '2022-08-01 14:10:16'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (18, 8, '/0/8/', ' 短信配置', 6, ' 短信配置', '15', 1, 1, -1, '2022-08-01 12:17:09', '2022-08-01 14:10:28'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (19, 8, '/0/8/', ' 采集商品配置', 6, ' 采集商品配置', '16', 1, 1, -1, '2022-08-01 12:17:15', '2022-08-01 14:10:36'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (20, 8, '/0/8/', '物流查询', 6, '物流查询', '20', 1, 1, -1, '2022-08-01 12:17:31', '2022-08-01 14:10:44'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (21, 8, '8/', ' 电子面单', 6, ' 电子面单', '21', 0, 1, -1, '2022-08-01 12:17:42', '2022-11-15 18:14:40'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (22, 8, '8/', '小票打印(易联云)', 6, '小票打印(易联云)', '22', 1, 1, -1, '2022-08-01 12:17:59', '2022-11-15 18:14:45'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (23, 9, '/0/9/', '商户登录页配置', 6, '商户登录页配置', '38', 1, 1, -1, '2022-08-01 12:18:41', '2022-08-19 15:56:50'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (24, 11, '/0/11/', ' 公众号支付配置', 6, ' 公众号支付配置', '26', 1, 1, -1, '2022-08-01 12:19:29', '2022-08-01 15:36:42'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (25, 11, '/0/11/', '小程序支付配置', 6, '小程序支付配置', '27', 1, 1, -1, '2022-08-01 12:19:34', '2022-08-01 15:37:08'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (26, 11, '/0/11/', ' 余额支付', 6, ' 余额支付', '28', 1, 1, -1, '2022-08-01 12:19:39', '2022-08-01 15:37:14'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (27, 11, '/0/11/', '微信APP支付', 6, '微信APP支付', '30', 1, 1, -1, '2022-08-01 12:19:45', '2022-08-01 15:37:24'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (28, 11, '/0/11/', '支付宝支付(h5/App)', 6, '支付宝支付(h5/App)', '29', 1, 1, -1, '2022-08-01 12:19:58', '2022-08-01 15:37:39'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (29, 10, '/0/10/', 'H5', 6, 'H5', '25', 1, 1, -1, '2022-08-01 14:36:38', '2022-08-01 14:46:02'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (30, 11, '/0/11/', '支付回调地址(域名)', 6, '支付回调地址(域名)', '31', 1, 1, -1, '2022-08-01 15:10:15', '2022-08-01 15:37:45'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (31, 0, '', '平台配置', 6, '平台配置', '48', 1, 10, -1, '2022-08-01 16:50:15', '2022-11-09 10:20:14'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (32, 31, '/0/31/', '登录页配置', 6, '登录页配置', '4', 1, 1, -1, '2022-08-01 16:51:24', '2022-08-01 16:51:36'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (33, 31, '/0/31/', '订单配置', 6, '订单配置', '19', 1, 1, -1, '2022-08-01 16:51:51', '2022-08-01 16:52:04'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (34, 31, '/0/31/', 'app升级配置', 6, 'app升级配置', '3', 1, 1, -1, '2022-08-01 16:52:22', '2022-08-01 16:52:33'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (35, 31, '/0/31/', '物流配置', 6, '物流配置', '5', 1, 1, -1, '2022-08-01 16:52:49', '2022-08-01 16:53:01'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (36, 31, '/0/31/', '客服配置', 6, '客服配置', '24', 1, 1, -1, '2022-08-01 16:53:13', '2022-08-01 16:53:25'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (37, 0, '/0/', '七夕素材', 2, 'url', NULL, 0, 1, -1, '2022-08-04 11:40:02', '2022-08-04 11:40:02'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (38, 0, '/0/', '服装', 1, '', 'crmebimage/public/maintain/2022/08/04/b908b2b0034343458ba3649c7d1084383u7xxcc3ji.png', 1, 0, -1, '2022-08-09 09:47:56', '2022-08-09 09:47:56'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (39, 11, '/0/11/', '充值配置', 6, '充值配置', '42', 1, 1, -1, '2022-08-31 09:48:20', '2022-08-31 09:48:42'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (40, 0, '', '系统素材', 2, 'url', NULL, 0, 1, -1, '2022-09-15 12:19:30', '2022-09-15 12:19:30'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (41, 0, '', '衣服', 2, 'url', NULL, 0, 1, 1, '2022-10-10 14:46:12', '2022-10-10 14:46:12'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (42, 0, '', '商品图', 2, 'url', NULL, 0, 1, 2, '2022-10-10 18:05:19', '2022-10-10 18:05:19'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (43, 0, '', '商品图', 2, 'url', NULL, 0, 1, -1, '2022-10-11 11:16:36', '2022-10-11 11:16:36'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (44, 0, '', '商品图', 2, 'url', NULL, 0, 1, 1, '2022-10-11 12:18:45', '2022-10-11 12:18:45'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (45, 0, '', '店铺图1', 2, 'url', NULL, 0, 1, 1, '2022-10-11 17:20:15', '2022-11-08 11:11:33'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (46, 0, '', '店铺', 2, 'url', NULL, 0, 1, 2, '2022-10-11 17:24:27', '2022-10-11 17:24:27'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (47, 0, '', 'banner', 2, 'url', NULL, 0, 1, -1, '2022-10-11 17:26:11', '2022-10-11 17:26:11'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (48, 0, '', '店铺配置', 2, 'url', NULL, 0, 1, 3, '2022-10-13 17:03:50', '2022-10-13 17:03:50'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (49, 0, '', '数码', 2, 'url', NULL, 0, 1, -1, '2022-10-15 10:25:04', '2022-10-15 10:25:04'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (50, 0, '', '3C', 2, 'url', NULL, 0, 1, 3, '2022-10-15 10:34:47', '2022-10-15 10:34:47'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (51, 0, '', '微信视频号类目审核资质', 2, 'url', NULL, 0, 1, -1, '2022-10-29 16:05:50', '2022-10-29 16:05:50'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (52, 8, '/0/8/', 'ceshi', 6, 'CS', '48', 1, 1, -1, '2022-11-02 11:31:09', '2022-11-02 12:30:21'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (54, 0, '', '测试分类', 2, 'url', NULL, 0, 1, -1, '2022-11-02 15:22:17', '2022-11-02 15:22:17'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (57, 0, '', 'cs', 2, 'url', NULL, 0, 1, 7, '2022-11-02 16:12:45', '2022-11-02 16:12:45'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (59, 0, '', '添加分类', 2, 'url', NULL, 0, 1, 7, '2022-11-09 09:31:15', '2022-11-09 09:31:15'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (61, 0, '', '图标素材', 2, 'url', NULL, 0, 9, -1, '2022-11-11 11:20:37', '2022-11-11 11:20:37'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (62, 61, '61/', '金刚区', 2, 'url', NULL, 0, 1, -1, '2022-11-11 11:21:59', '2022-11-11 11:21:59'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (63, 61, '61/', '服务中心', 2, 'url', NULL, 0, 1, -1, '2022-11-11 11:22:25', '2022-11-11 11:22:25'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (64, 5, '/0/5/', '微信App配置', 6, '微信App配置', '54', 1, 1, -1, '2022-11-26 20:01:23', '2022-11-26 20:06:38'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (65, 0, '', '活动边框', 2, 'url', NULL, 0, 1, -1, '2023-01-11 15:24:57', '2023-01-11 15:24:57'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (66, 0, '', '氛围图', 2, 'url', NULL, 0, 1, -1, '2023-01-11 17:38:19', '2023-01-11 17:38:19'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (67, 61, '61/', '底部tab', 2, 'url', NULL, 0, 1, -1, '2023-02-10 10:05:33', '2023-02-10 10:05:33'); INSERT INTO `eb_category` (`id`, `pid`, `path`, `name`, `type`, `url`, `extra`, `status`, `sort`, `owner`, `create_time`, `update_time`) VALUES (68, 0, '', 'tabBar', 2, 'url', NULL, 0, 1, -1, '2023-02-13 10:22:54', '2023-02-13 10:22:54'); COMMIT; -- ---------------------------- -- Table structure for eb_city_region -- ---------------------------- DROP TABLE IF EXISTS `eb_city_region`; CREATE TABLE `eb_city_region` ( `region_id` int(11) NOT NULL DEFAULT '0' COMMENT '区域id', `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '父区域id', `region_name` varchar(100) NOT NULL DEFAULT '' COMMENT '区域名称', `region_type` tinyint(2) NOT NULL DEFAULT '0' COMMENT '区域类型,0-国家、1-省、2-市、3-区、4-街道', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`region_id`) USING BTREE, KEY `parent_id` (`parent_id`) USING BTREE, KEY `region_type` (`region_type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='城市区域表'; -- ---------------------------- -- Records of eb_city_region -- ---------------------------- BEGIN; INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110000, 1, '北京市', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110100, 110000, '北京市', 2, '2022-11-09 10:07:58', '2022-11-17 11:48:49'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101, 110100, '东城区', 3, '2022-11-09 10:32:30', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102, 110100, '西城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105, 110100, '朝阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106, 110100, '丰台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107, 110100, '石景山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108, 110100, '海淀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109, 110100, '门头沟区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111, 110100, '房山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112, 110100, '通州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113, 110100, '顺义区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114, 110100, '昌平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115, 110100, '大兴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116, 110100, '怀柔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117, 110100, '平谷区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118, 110100, '密云区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119, 110100, '延庆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120000, 1, '天津市', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120100, 120000, '天津市', 2, '2022-11-09 10:07:58', '2022-11-17 11:49:02'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120101, 120100, '和平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102, 120100, '河东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103, 120100, '河西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104, 120100, '南开区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105, 120100, '河北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106, 120100, '红桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110, 120100, '东丽区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111, 120100, '西青区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112, 120100, '津南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113, 120100, '北辰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114, 120100, '武清区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115, 120100, '宝坻区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116, 120100, '滨海新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117, 120100, '宁河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118, 120100, '静海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119, 120100, '蓟州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130000, 1, '河北省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130100, 130000, '石家庄市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130101, 130100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102, 130100, '长安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104, 130100, '桥西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105, 130100, '新华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130107, 130100, '井陉矿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108, 130100, '裕华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109, 130100, '藁城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110, 130100, '鹿泉区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111, 130100, '栾城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121, 130100, '井陉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123, 130100, '正定县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125, 130100, '行唐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126, 130100, '灵寿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130127, 130100, '高邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130128, 130100, '深泽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129, 130100, '赞皇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130, 130100, '无极县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131, 130100, '平山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132, 130100, '元氏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133, 130100, '赵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130171, 130100, '石家庄高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130172, 130100, '石家庄循环化工园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181, 130100, '辛集市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183, 130100, '晋州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184, 130100, '新乐市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130200, 130000, '唐山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130201, 130200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202, 130200, '路南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203, 130200, '路北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204, 130200, '古冶区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205, 130200, '开平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207, 130200, '丰南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208, 130200, '丰润区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209, 130200, '曹妃甸区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224, 130200, '滦南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225, 130200, '乐亭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227, 130200, '迁西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229, 130200, '玉田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130271, 130200, '河北唐山芦台经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130272, 130200, '唐山市汉沽管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130273, 130200, '唐山高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130274, 130200, '河北唐山海港经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281, 130200, '遵化市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283, 130200, '迁安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284, 130200, '滦州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130300, 130000, '秦皇岛市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130301, 130300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302, 130300, '海港区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303, 130300, '山海关区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130304, 130300, '北戴河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306, 130300, '抚宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321, 130300, '青龙满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322, 130300, '昌黎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324, 130300, '卢龙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130371, 130300, '秦皇岛市经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130372, 130300, '北戴河新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130400, 130000, '邯郸市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130401, 130400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402, 130400, '邯山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403, 130400, '丛台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404, 130400, '复兴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406, 130400, '峰峰矿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407, 130400, '肥乡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408, 130400, '永年区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423, 130400, '临漳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424, 130400, '成安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425, 130400, '大名县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426, 130400, '涉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427, 130400, '磁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430, 130400, '邱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431, 130400, '鸡泽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432, 130400, '广平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433, 130400, '馆陶县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434, 130400, '魏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435, 130400, '曲周县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130471, 130400, '邯郸经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473, 130400, '邯郸冀南新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481, 130400, '武安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130500, 130000, '邢台市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130501, 130500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502, 130500, '襄都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503, 130500, '信都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505, 130500, '任泽区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506, 130500, '南和区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522, 130500, '临城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523, 130500, '内丘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130524, 130500, '柏乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525, 130500, '隆尧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528, 130500, '宁晋县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529, 130500, '巨鹿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130530, 130500, '新河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531, 130500, '广宗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532, 130500, '平乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533, 130500, '威县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130534, 130500, '清河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535, 130500, '临西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130571, 130500, '河北邢台经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581, 130500, '南宫市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582, 130500, '沙河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130600, 130000, '保定市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130601, 130600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602, 130600, '竞秀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606, 130600, '莲池区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607, 130600, '满城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608, 130600, '清苑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609, 130600, '徐水区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623, 130600, '涞水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624, 130600, '阜平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626, 130600, '定兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627, 130600, '唐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628, 130600, '高阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629, 130600, '容城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630, 130600, '涞源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631, 130600, '望都县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632, 130600, '安新县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633, 130600, '易县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634, 130600, '曲阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635, 130600, '蠡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636, 130600, '顺平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637, 130600, '博野县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638, 130600, '雄县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130671, 130600, '保定高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130672, 130600, '保定白沟新城', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681, 130600, '涿州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682, 130600, '定州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683, 130600, '安国市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684, 130600, '高碑店市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130700, 130000, '张家口市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130701, 130700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702, 130700, '桥东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703, 130700, '桥西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705, 130700, '宣化区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130706, 130700, '下花园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708, 130700, '万全区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709, 130700, '崇礼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722, 130700, '张北县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723, 130700, '康保县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724, 130700, '沽源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725, 130700, '尚义县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726, 130700, '蔚县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727, 130700, '阳原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728, 130700, '怀安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730, 130700, '怀来县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731, 130700, '涿鹿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732, 130700, '赤城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130771, 130700, '张家口经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772, 130700, '张家口市察北管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130773, 130700, '张家口市塞北管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130800, 130000, '承德市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130801, 130800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802, 130800, '双桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803, 130800, '双滦区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130804, 130800, '鹰手营子矿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821, 130800, '承德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822, 130800, '兴隆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824, 130800, '滦平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825, 130800, '隆化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826, 130800, '丰宁满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827, 130800, '宽城满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828, 130800, '围场满族蒙古族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130871, 130800, '承德高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881, 130800, '平泉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130900, 130000, '沧州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130901, 130900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130902, 130900, '新华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903, 130900, '运河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921, 130900, '沧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922, 130900, '青县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923, 130900, '东光县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924, 130900, '海兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925, 130900, '盐山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926, 130900, '肃宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927, 130900, '南皮县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928, 130900, '吴桥县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929, 130900, '献县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130930, 130900, '孟村回族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130971, 130900, '河北沧州经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130972, 130900, '沧州高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130973, 130900, '沧州渤海新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981, 130900, '泊头市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982, 130900, '任丘市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983, 130900, '黄骅市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984, 130900, '河间市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131000, 130000, '廊坊市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131001, 131000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002, 131000, '安次区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003, 131000, '广阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022, 131000, '固安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023, 131000, '永清县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024, 131000, '香河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025, 131000, '大城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026, 131000, '文安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028, 131000, '大厂回族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131071, 131000, '廊坊经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081, 131000, '霸州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082, 131000, '三河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131100, 130000, '衡水市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131101, 131100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102, 131100, '桃城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103, 131100, '冀州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121, 131100, '枣强县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122, 131100, '武邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131123, 131100, '武强县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124, 131100, '饶阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125, 131100, '安平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126, 131100, '故城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127, 131100, '景县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128, 131100, '阜城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131171, 131100, '河北衡水高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131172, 131100, '衡水滨湖新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182, 131100, '深州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140000, 1, '山西省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140100, 140000, '太原市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140101, 140100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105, 140100, '小店区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106, 140100, '迎泽区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107, 140100, '杏花岭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108, 140100, '尖草坪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109, 140100, '万柏林区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140110, 140100, '晋源区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121, 140100, '清徐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122, 140100, '阳曲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123, 140100, '娄烦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140171, 140100, '山西转型综合改革示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181, 140100, '古交市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140200, 140000, '大同市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140201, 140200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212, 140200, '新荣区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213, 140200, '平城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214, 140200, '云冈区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215, 140200, '云州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221, 140200, '阳高县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222, 140200, '天镇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223, 140200, '广灵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224, 140200, '灵丘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225, 140200, '浑源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226, 140200, '左云县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140271, 140200, '山西大同经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140300, 140000, '阳泉市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140301, 140300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140302, 140300, '城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140303, 140300, '矿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311, 140300, '郊区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321, 140300, '平定县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322, 140300, '盂县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140400, 140000, '长治市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140401, 140400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403, 140400, '潞州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404, 140400, '上党区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405, 140400, '屯留区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406, 140400, '潞城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423, 140400, '襄垣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425, 140400, '平顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426, 140400, '黎城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427, 140400, '壶关县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428, 140400, '长子县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429, 140400, '武乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430, 140400, '沁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431, 140400, '沁源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140471, 140400, '山西长治高新技术产业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140500, 140000, '晋城市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140501, 140500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502, 140500, '城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521, 140500, '沁水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522, 140500, '阳城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524, 140500, '陵川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525, 140500, '泽州县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581, 140500, '高平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140600, 140000, '朔州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140601, 140600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602, 140600, '朔城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603, 140600, '平鲁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621, 140600, '山阴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622, 140600, '应县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623, 140600, '右玉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140671, 140600, '山西朔州经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681, 140600, '怀仁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140700, 140000, '晋中市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140701, 140700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702, 140700, '榆次区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703, 140700, '太谷区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721, 140700, '榆社县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722, 140700, '左权县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723, 140700, '和顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724, 140700, '昔阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725, 140700, '寿阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727, 140700, '祁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728, 140700, '平遥县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729, 140700, '灵石县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781, 140700, '介休市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140800, 140000, '运城市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140801, 140800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802, 140800, '盐湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821, 140800, '临猗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822, 140800, '万荣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823, 140800, '闻喜县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824, 140800, '稷山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825, 140800, '新绛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826, 140800, '绛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827, 140800, '垣曲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828, 140800, '夏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829, 140800, '平陆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830, 140800, '芮城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881, 140800, '永济市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882, 140800, '河津市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140900, 140000, '忻州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140901, 140900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902, 140900, '忻府区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921, 140900, '定襄县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922, 140900, '五台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923, 140900, '代县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924, 140900, '繁峙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925, 140900, '宁武县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926, 140900, '静乐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927, 140900, '神池县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928, 140900, '五寨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929, 140900, '岢岚县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930, 140900, '河曲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931, 140900, '保德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932, 140900, '偏关县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140971, 140900, '五台山风景名胜区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981, 140900, '原平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141000, 140000, '临汾市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141001, 141000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002, 141000, '尧都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021, 141000, '曲沃县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022, 141000, '翼城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023, 141000, '襄汾县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024, 141000, '洪洞县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141025, 141000, '古县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141026, 141000, '安泽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027, 141000, '浮山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028, 141000, '吉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029, 141000, '乡宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141030, 141000, '大宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031, 141000, '隰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141032, 141000, '永和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033, 141000, '蒲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034, 141000, '汾西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081, 141000, '侯马市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082, 141000, '霍州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141100, 140000, '吕梁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141101, 141100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102, 141100, '离石区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121, 141100, '文水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122, 141100, '交城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123, 141100, '兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124, 141100, '临县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125, 141100, '柳林县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126, 141100, '石楼县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127, 141100, '岚县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141128, 141100, '方山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141129, 141100, '中阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130, 141100, '交口县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181, 141100, '孝义市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182, 141100, '汾阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150000, 1, '内蒙古自治区', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150100, 150000, '呼和浩特市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150101, 150100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102, 150100, '新城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103, 150100, '回民区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104, 150100, '玉泉区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105, 150100, '赛罕区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121, 150100, '土默特左旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150122, 150100, '托克托县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123, 150100, '和林格尔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124, 150100, '清水河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125, 150100, '武川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150172, 150100, '呼和浩特经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150200, 150000, '包头市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150201, 150200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202, 150200, '东河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203, 150200, '昆都仑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204, 150200, '青山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205, 150200, '石拐区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150206, 150200, '白云鄂博矿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207, 150200, '九原区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221, 150200, '土默特右旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150222, 150200, '固阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223, 150200, '达尔罕茂明安联合旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150271, 150200, '包头稀土高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150300, 150000, '乌海市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150301, 150300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302, 150300, '海勃湾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150303, 150300, '海南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304, 150300, '乌达区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150400, 150000, '赤峰市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150401, 150400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402, 150400, '红山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403, 150400, '元宝山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404, 150400, '松山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421, 150400, '阿鲁科尔沁旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422, 150400, '巴林左旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423, 150400, '巴林右旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424, 150400, '林西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425, 150400, '克什克腾旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426, 150400, '翁牛特旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428, 150400, '喀喇沁旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429, 150400, '宁城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430, 150400, '敖汉旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150500, 150000, '通辽市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150501, 150500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502, 150500, '科尔沁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521, 150500, '科尔沁左翼中旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522, 150500, '科尔沁左翼后旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523, 150500, '开鲁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524, 150500, '库伦旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525, 150500, '奈曼旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526, 150500, '扎鲁特旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150571, 150500, '通辽经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150581, 150500, '霍林郭勒市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150600, 150000, '鄂尔多斯市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150601, 150600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602, 150600, '东胜区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150603, 150600, '康巴什区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621, 150600, '达拉特旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622, 150600, '准格尔旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150623, 150600, '鄂托克前旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624, 150600, '鄂托克旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625, 150600, '杭锦旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626, 150600, '乌审旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627, 150600, '伊金霍洛旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150700, 150000, '呼伦贝尔市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150701, 150700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702, 150700, '海拉尔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150703, 150700, '扎赉诺尔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721, 150700, '阿荣旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722, 150700, '莫力达瓦达斡尔族自治旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723, 150700, '鄂伦春自治旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724, 150700, '鄂温克族自治旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725, 150700, '陈巴尔虎旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726, 150700, '新巴尔虎左旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727, 150700, '新巴尔虎右旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781, 150700, '满洲里市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782, 150700, '牙克石市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783, 150700, '扎兰屯市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784, 150700, '额尔古纳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785, 150700, '根河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150800, 150000, '巴彦淖尔市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150801, 150800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802, 150800, '临河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821, 150800, '五原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822, 150800, '磴口县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823, 150800, '乌拉特前旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824, 150800, '乌拉特中旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150825, 150800, '乌拉特后旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826, 150800, '杭锦后旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150900, 150000, '乌兰察布市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150901, 150900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902, 150900, '集宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921, 150900, '卓资县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922, 150900, '化德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923, 150900, '商都县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924, 150900, '兴和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925, 150900, '凉城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926, 150900, '察哈尔右翼前旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927, 150900, '察哈尔右翼中旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928, 150900, '察哈尔右翼后旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929, 150900, '四子王旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981, 150900, '丰镇市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152200, 150000, '兴安盟', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201, 152200, '乌兰浩特市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202, 152200, '阿尔山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221, 152200, '科尔沁右翼前旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222, 152200, '科尔沁右翼中旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223, 152200, '扎赉特旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224, 152200, '突泉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152500, 150000, '锡林郭勒盟', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152501, 152500, '二连浩特市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502, 152500, '锡林浩特市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522, 152500, '阿巴嘎旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523, 152500, '苏尼特左旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524, 152500, '苏尼特右旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525, 152500, '东乌珠穆沁旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526, 152500, '西乌珠穆沁旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527, 152500, '太仆寺旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152528, 152500, '镶黄旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529, 152500, '正镶白旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530, 152500, '正蓝旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152531, 152500, '多伦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152571, 152500, '乌拉盖管委会', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152900, 150000, '阿拉善盟', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921, 152900, '阿拉善左旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922, 152900, '阿拉善右旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923, 152900, '额济纳旗', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152971, 152900, '内蒙古阿拉善高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210000, 1, '辽宁省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210100, 210000, '沈阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210101, 210100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102, 210100, '和平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103, 210100, '沈河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104, 210100, '大东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105, 210100, '皇姑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106, 210100, '铁西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111, 210100, '苏家屯区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112, 210100, '浑南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113, 210100, '沈北新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114, 210100, '于洪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115, 210100, '辽中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123, 210100, '康平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124, 210100, '法库县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181, 210100, '新民市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210200, 210000, '大连市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210201, 210200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210202, 210200, '中山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210203, 210200, '西岗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204, 210200, '沙河口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211, 210200, '甘井子区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212, 210200, '旅顺口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213, 210200, '金州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214, 210200, '普兰店区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210224, 210200, '长海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281, 210200, '瓦房店市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283, 210200, '庄河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210300, 210000, '鞍山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210301, 210300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302, 210300, '铁东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303, 210300, '铁西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304, 210300, '立山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210311, 210300, '千山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321, 210300, '台安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323, 210300, '岫岩满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381, 210300, '海城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210400, 210000, '抚顺市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210401, 210400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402, 210400, '新抚区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403, 210400, '东洲区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404, 210400, '望花区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411, 210400, '顺城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421, 210400, '抚顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422, 210400, '新宾满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423, 210400, '清原满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210500, 210000, '本溪市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210501, 210500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502, 210500, '平山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503, 210500, '溪湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504, 210500, '明山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210505, 210500, '南芬区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521, 210500, '本溪满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522, 210500, '桓仁满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210600, 210000, '丹东市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210601, 210600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210602, 210600, '元宝区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603, 210600, '振兴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604, 210600, '振安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624, 210600, '宽甸满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681, 210600, '东港市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682, 210600, '凤城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210700, 210000, '锦州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210701, 210700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210702, 210700, '古塔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703, 210700, '凌河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711, 210700, '太和区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726, 210700, '黑山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727, 210700, '义县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781, 210700, '凌海市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782, 210700, '北镇市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210800, 210000, '营口市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210801, 210800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210802, 210800, '站前区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803, 210800, '西市区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210804, 210800, '鲅鱼圈区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210811, 210800, '老边区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881, 210800, '盖州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882, 210800, '大石桥市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210900, 210000, '阜新市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210901, 210900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902, 210900, '海州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210903, 210900, '新邱区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210904, 210900, '太平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210905, 210900, '清河门区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210911, 210900, '细河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921, 210900, '阜新蒙古族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922, 210900, '彰武县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211000, 210000, '辽阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211001, 211000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211002, 211000, '白塔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211003, 211000, '文圣区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211004, 211000, '宏伟区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211005, 211000, '弓长岭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211011, 211000, '太子河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021, 211000, '辽阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081, 211000, '灯塔市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211100, 210000, '盘锦市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211101, 211100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102, 211100, '双台子区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103, 211100, '兴隆台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104, 211100, '大洼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122, 211100, '盘山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211200, 210000, '铁岭市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211201, 211200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202, 211200, '银州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211204, 211200, '清河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221, 211200, '铁岭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223, 211200, '西丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224, 211200, '昌图县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211281, 211200, '调兵山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282, 211200, '开原市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211300, 210000, '朝阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211301, 211300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302, 211300, '双塔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303, 211300, '龙城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321, 211300, '朝阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322, 211300, '建平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324, 211300, '喀喇沁左翼蒙古族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381, 211300, '北票市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382, 211300, '凌源市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211400, 210000, '葫芦岛市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211401, 211400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402, 211400, '连山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403, 211400, '龙港区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404, 211400, '南票区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421, 211400, '绥中县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422, 211400, '建昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481, 211400, '兴城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220000, 1, '吉林省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220100, 220000, '长春市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220101, 220100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102, 220100, '南关区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103, 220100, '宽城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104, 220100, '朝阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105, 220100, '二道区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106, 220100, '绿园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112, 220100, '双阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113, 220100, '九台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122, 220100, '农安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220171, 220100, '长春经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172, 220100, '长春净月高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220173, 220100, '长春高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220174, 220100, '长春汽车经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182, 220100, '榆树市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183, 220100, '德惠市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184, 220100, '公主岭市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220200, 220000, '吉林市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220201, 220200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202, 220200, '昌邑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203, 220200, '龙潭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204, 220200, '船营区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211, 220200, '丰满区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221, 220200, '永吉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220271, 220200, '吉林经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220272, 220200, '吉林高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220273, 220200, '吉林中国新加坡食品区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281, 220200, '蛟河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282, 220200, '桦甸市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283, 220200, '舒兰市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284, 220200, '磐石市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220300, 220000, '四平市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220301, 220300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302, 220300, '铁西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303, 220300, '铁东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322, 220300, '梨树县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323, 220300, '伊通满族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382, 220300, '双辽市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220400, 220000, '辽源市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220401, 220400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402, 220400, '龙山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403, 220400, '西安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421, 220400, '东丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422, 220400, '东辽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220500, 220000, '通化市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220501, 220500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502, 220500, '东昌区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220503, 220500, '二道江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521, 220500, '通化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523, 220500, '辉南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524, 220500, '柳河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581, 220500, '梅河口市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582, 220500, '集安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220600, 220000, '白山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220601, 220600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602, 220600, '浑江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605, 220600, '江源区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621, 220600, '抚松县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622, 220600, '靖宇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623, 220600, '长白朝鲜族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681, 220600, '临江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220700, 220000, '松原市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220701, 220700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702, 220700, '宁江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721, 220700, '前郭尔罗斯蒙古族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722, 220700, '长岭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723, 220700, '乾安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220771, 220700, '吉林松原经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781, 220700, '扶余市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220800, 220000, '白城市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220801, 220800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802, 220800, '洮北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821, 220800, '镇赉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822, 220800, '通榆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220871, 220800, '吉林白城经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881, 220800, '洮南市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882, 220800, '大安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222400, 220000, '延边朝鲜族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401, 222400, '延吉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402, 222400, '图们市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403, 222400, '敦化市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404, 222400, '珲春市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405, 222400, '龙井市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406, 222400, '和龙市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424, 222400, '汪清县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426, 222400, '安图县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230000, 1, '黑龙江省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230100, 230000, '哈尔滨市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230101, 230100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102, 230100, '道里区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103, 230100, '南岗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104, 230100, '道外区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108, 230100, '平房区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109, 230100, '松北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110, 230100, '香坊区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111, 230100, '呼兰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112, 230100, '阿城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113, 230100, '双城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123, 230100, '依兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124, 230100, '方正县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125, 230100, '宾县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126, 230100, '巴彦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127, 230100, '木兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128, 230100, '通河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129, 230100, '延寿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183, 230100, '尚志市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184, 230100, '五常市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230200, 230000, '齐齐哈尔市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230201, 230200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202, 230200, '龙沙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230203, 230200, '建华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204, 230200, '铁锋区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230205, 230200, '昂昂溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206, 230200, '富拉尔基区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230207, 230200, '碾子山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208, 230200, '梅里斯达斡尔族区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221, 230200, '龙江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223, 230200, '依安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224, 230200, '泰来县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225, 230200, '甘南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227, 230200, '富裕县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229, 230200, '克山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230, 230200, '克东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231, 230200, '拜泉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281, 230200, '讷河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230300, 230000, '鸡西市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230301, 230300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302, 230300, '鸡冠区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303, 230300, '恒山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230304, 230300, '滴道区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230305, 230300, '梨树区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306, 230300, '城子河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230307, 230300, '麻山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321, 230300, '鸡东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381, 230300, '虎林市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382, 230300, '密山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230400, 230000, '鹤岗市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230401, 230400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230402, 230400, '向阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230403, 230400, '工农区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230404, 230400, '南山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405, 230400, '兴安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406, 230400, '东山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230407, 230400, '兴山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421, 230400, '萝北县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422, 230400, '绥滨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230500, 230000, '双鸭山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230501, 230500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502, 230500, '尖山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503, 230500, '岭东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230505, 230500, '四方台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506, 230500, '宝山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521, 230500, '集贤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522, 230500, '友谊县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523, 230500, '宝清县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524, 230500, '饶河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230600, 230000, '大庆市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230601, 230600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602, 230600, '萨尔图区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603, 230600, '龙凤区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604, 230600, '让胡路区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605, 230600, '红岗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606, 230600, '大同区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621, 230600, '肇州县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622, 230600, '肇源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623, 230600, '林甸县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624, 230600, '杜尔伯特蒙古族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230671, 230600, '大庆高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230700, 230000, '伊春市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230701, 230700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717, 230700, '伊美区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230718, 230700, '乌翠区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230719, 230700, '友好区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722, 230700, '嘉荫县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230723, 230700, '汤旺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230724, 230700, '丰林县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230725, 230700, '大箐山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230726, 230700, '南岔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230751, 230700, '金林区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781, 230700, '铁力市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230800, 230000, '佳木斯市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230801, 230800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230803, 230800, '向阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230804, 230800, '前进区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230805, 230800, '东风区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811, 230800, '郊区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822, 230800, '桦南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826, 230800, '桦川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828, 230800, '汤原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881, 230800, '同江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882, 230800, '富锦市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883, 230800, '抚远市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230900, 230000, '七台河市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230901, 230900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902, 230900, '新兴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903, 230900, '桃山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904, 230900, '茄子河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921, 230900, '勃利县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231000, 230000, '牡丹江市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231001, 231000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002, 231000, '东安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003, 231000, '阳明区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004, 231000, '爱民区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005, 231000, '西安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025, 231000, '林口县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231071, 231000, '牡丹江经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231081, 231000, '绥芬河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083, 231000, '海林市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084, 231000, '宁安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085, 231000, '穆棱市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086, 231000, '东宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231100, 230000, '黑河市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231101, 231100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102, 231100, '爱辉区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123, 231100, '逊克县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124, 231100, '孙吴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181, 231100, '北安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182, 231100, '五大连池市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183, 231100, '嫩江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231200, 230000, '绥化市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231201, 231200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202, 231200, '北林区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221, 231200, '望奎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222, 231200, '兰西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223, 231200, '青冈县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224, 231200, '庆安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225, 231200, '明水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226, 231200, '绥棱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281, 231200, '安达市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282, 231200, '肇东市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283, 231200, '海伦市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232700, 230000, '大兴安岭地区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232701, 232700, '漠河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721, 232700, '呼玛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722, 232700, '塔河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761, 232700, '加格达奇区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232762, 232700, '松岭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763, 232700, '新林区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232764, 232700, '呼中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310000, 1, '上海市', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310100, 310000, '市辖区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101, 310100, '黄浦区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104, 310100, '徐汇区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105, 310100, '长宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106, 310100, '静安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107, 310100, '普陀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109, 310100, '虹口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110, 310100, '杨浦区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112, 310100, '闵行区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113, 310100, '宝山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114, 310100, '嘉定区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115, 310100, '浦东新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116, 310100, '金山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117, 310100, '松江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118, 310100, '青浦区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120, 310100, '奉贤区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151, 310100, '崇明区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320000, 1, '江苏省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320100, 320000, '南京市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320101, 320100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102, 320100, '玄武区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104, 320100, '秦淮区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105, 320100, '建邺区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106, 320100, '鼓楼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111, 320100, '浦口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113, 320100, '栖霞区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114, 320100, '雨花台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115, 320100, '江宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116, 320100, '六合区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117, 320100, '溧水区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118, 320100, '高淳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320200, 320000, '无锡市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320201, 320200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205, 320200, '锡山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206, 320200, '惠山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211, 320200, '滨湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213, 320200, '梁溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214, 320200, '新吴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281, 320200, '江阴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282, 320200, '宜兴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320300, 320000, '徐州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320301, 320300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302, 320300, '鼓楼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303, 320300, '云龙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305, 320300, '贾汪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311, 320300, '泉山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312, 320300, '铜山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321, 320300, '丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322, 320300, '沛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324, 320300, '睢宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320371, 320300, '徐州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381, 320300, '新沂市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382, 320300, '邳州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320400, 320000, '常州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320401, 320400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402, 320400, '天宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404, 320400, '钟楼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411, 320400, '新北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412, 320400, '武进区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413, 320400, '金坛区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481, 320400, '溧阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320500, 320000, '苏州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320501, 320500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505, 320500, '虎丘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506, 320500, '吴中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507, 320500, '相城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508, 320500, '姑苏区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509, 320500, '吴江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571, 320500, '苏州工业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581, 320500, '常熟市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582, 320500, '张家港市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583, 320500, '昆山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585, 320500, '太仓市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320600, 320000, '南通市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320601, 320600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612, 320600, '通州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613, 320600, '崇川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614, 320600, '海门区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623, 320600, '如东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671, 320600, '南通经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681, 320600, '启东市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682, 320600, '如皋市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685, 320600, '海安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320700, 320000, '连云港市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320701, 320700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703, 320700, '连云区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706, 320700, '海州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707, 320700, '赣榆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722, 320700, '东海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723, 320700, '灌云县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724, 320700, '灌南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320771, 320700, '连云港经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320772, 320700, '连云港高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320800, 320000, '淮安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320801, 320800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803, 320800, '淮安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804, 320800, '淮阴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812, 320800, '清江浦区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813, 320800, '洪泽区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826, 320800, '涟水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830, 320800, '盱眙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831, 320800, '金湖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871, 320800, '淮安经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320900, 320000, '盐城市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320901, 320900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902, 320900, '亭湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903, 320900, '盐都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904, 320900, '大丰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921, 320900, '响水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922, 320900, '滨海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923, 320900, '阜宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924, 320900, '射阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925, 320900, '建湖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320971, 320900, '盐城经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981, 320900, '东台市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321000, 320000, '扬州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321001, 321000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002, 321000, '广陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003, 321000, '邗江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012, 321000, '江都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023, 321000, '宝应县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321071, 321000, '扬州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081, 321000, '仪征市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084, 321000, '高邮市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321100, 320000, '镇江市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321101, 321100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102, 321100, '京口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111, 321100, '润州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112, 321100, '丹徒区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321171, 321100, '镇江新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181, 321100, '丹阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321182, 321100, '扬中市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183, 321100, '句容市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321200, 320000, '泰州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321201, 321200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202, 321200, '海陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203, 321200, '高港区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204, 321200, '姜堰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321271, 321200, '泰州医药高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281, 321200, '兴化市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282, 321200, '靖江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283, 321200, '泰兴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321300, 320000, '宿迁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321301, 321300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302, 321300, '宿城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311, 321300, '宿豫区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322, 321300, '沭阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323, 321300, '泗阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324, 321300, '泗洪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321371, 321300, '宿迁经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330000, 1, '浙江省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330100, 330000, '杭州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330101, 330100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102, 330100, '上城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105, 330100, '拱墅区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106, 330100, '西湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330108, 330100, '滨江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109, 330100, '萧山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110, 330100, '余杭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111, 330100, '富阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112, 330100, '临安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113, 330100, '临平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114, 330100, '钱塘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122, 330100, '桐庐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127, 330100, '淳安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182, 330100, '建德市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330200, 330000, '宁波市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330201, 330200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203, 330200, '海曙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205, 330200, '江北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206, 330200, '北仑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211, 330200, '镇海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212, 330200, '鄞州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213, 330200, '奉化区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225, 330200, '象山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226, 330200, '宁海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281, 330200, '余姚市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282, 330200, '慈溪市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330300, 330000, '温州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330301, 330300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302, 330300, '鹿城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330303, 330300, '龙湾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304, 330300, '瓯海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305, 330300, '洞头区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324, 330300, '永嘉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326, 330300, '平阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327, 330300, '苍南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328, 330300, '文成县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329, 330300, '泰顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330371, 330300, '温州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381, 330300, '瑞安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382, 330300, '乐清市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330383, 330300, '龙港市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330400, 330000, '嘉兴市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330401, 330400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402, 330400, '南湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411, 330400, '秀洲区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421, 330400, '嘉善县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424, 330400, '海盐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481, 330400, '海宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482, 330400, '平湖市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483, 330400, '桐乡市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330500, 330000, '湖州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330501, 330500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502, 330500, '吴兴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503, 330500, '南浔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521, 330500, '德清县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522, 330500, '长兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523, 330500, '安吉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330600, 330000, '绍兴市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330601, 330600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602, 330600, '越城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603, 330600, '柯桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604, 330600, '上虞区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624, 330600, '新昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681, 330600, '诸暨市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683, 330600, '嵊州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330700, 330000, '金华市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330701, 330700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702, 330700, '婺城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703, 330700, '金东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723, 330700, '武义县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726, 330700, '浦江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727, 330700, '磐安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781, 330700, '兰溪市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782, 330700, '义乌市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783, 330700, '东阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784, 330700, '永康市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330800, 330000, '衢州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330801, 330800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802, 330800, '柯城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803, 330800, '衢江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822, 330800, '常山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824, 330800, '开化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825, 330800, '龙游县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881, 330800, '江山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330900, 330000, '舟山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330901, 330900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902, 330900, '定海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903, 330900, '普陀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921, 330900, '岱山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922, 330900, '嵊泗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331000, 330000, '台州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331001, 331000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002, 331000, '椒江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003, 331000, '黄岩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004, 331000, '路桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022, 331000, '三门县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023, 331000, '天台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024, 331000, '仙居县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081, 331000, '温岭市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082, 331000, '临海市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083, 331000, '玉环市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331100, 330000, '丽水市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331101, 331100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102, 331100, '莲都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121, 331100, '青田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122, 331100, '缙云县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123, 331100, '遂昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124, 331100, '松阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125, 331100, '云和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126, 331100, '庆元县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127, 331100, '景宁畲族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181, 331100, '龙泉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340000, 1, '安徽省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340100, 340000, '合肥市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340101, 340100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102, 340100, '瑶海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103, 340100, '庐阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104, 340100, '蜀山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111, 340100, '包河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121, 340100, '长丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122, 340100, '肥东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123, 340100, '肥西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124, 340100, '庐江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340171, 340100, '合肥高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340172, 340100, '合肥经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340173, 340100, '合肥新站高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181, 340100, '巢湖市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340200, 340000, '芜湖市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340201, 340200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202, 340200, '镜湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207, 340200, '鸠江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209, 340200, '弋江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340210, 340200, '湾沚区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212, 340200, '繁昌区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223, 340200, '南陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340271, 340200, '芜湖经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340272, 340200, '安徽芜湖三山经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281, 340200, '无为市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340300, 340000, '蚌埠市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340301, 340300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302, 340300, '龙子湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303, 340300, '蚌山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304, 340300, '禹会区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311, 340300, '淮上区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321, 340300, '怀远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322, 340300, '五河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323, 340300, '固镇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340371, 340300, '蚌埠市高新技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340372, 340300, '蚌埠市经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340400, 340000, '淮南市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340401, 340400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340402, 340400, '大通区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403, 340400, '田家庵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404, 340400, '谢家集区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340405, 340400, '八公山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406, 340400, '潘集区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421, 340400, '凤台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422, 340400, '寿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340500, 340000, '马鞍山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340501, 340500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503, 340500, '花山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504, 340500, '雨山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340506, 340500, '博望区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521, 340500, '当涂县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522, 340500, '含山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523, 340500, '和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340600, 340000, '淮北市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340601, 340600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340602, 340600, '杜集区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603, 340600, '相山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604, 340600, '烈山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621, 340600, '濉溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340700, 340000, '铜陵市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340701, 340700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705, 340700, '铜官区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706, 340700, '义安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711, 340700, '郊区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722, 340700, '枞阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340800, 340000, '安庆市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340801, 340800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802, 340800, '迎江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803, 340800, '大观区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340811, 340800, '宜秀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822, 340800, '怀宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825, 340800, '太湖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826, 340800, '宿松县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827, 340800, '望江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828, 340800, '岳西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340871, 340800, '安徽安庆经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881, 340800, '桐城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882, 340800, '潜山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341000, 340000, '黄山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341001, 341000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002, 341000, '屯溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003, 341000, '黄山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004, 341000, '徽州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021, 341000, '歙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022, 341000, '休宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023, 341000, '黟县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024, 341000, '祁门县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341100, 340000, '滁州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341101, 341100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102, 341100, '琅琊区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103, 341100, '南谯区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122, 341100, '来安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124, 341100, '全椒县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125, 341100, '定远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126, 341100, '凤阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341171, 341100, '中新苏滁高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341172, 341100, '滁州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181, 341100, '天长市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182, 341100, '明光市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341200, 340000, '阜阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341201, 341200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202, 341200, '颍州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203, 341200, '颍东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341204, 341200, '颍泉区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221, 341200, '临泉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222, 341200, '太和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225, 341200, '阜南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226, 341200, '颍上县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341271, 341200, '阜阳合肥现代产业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341272, 341200, '阜阳经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282, 341200, '界首市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341300, 340000, '宿州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341301, 341300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302, 341300, '埇桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321, 341300, '砀山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322, 341300, '萧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323, 341300, '灵璧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324, 341300, '泗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341371, 341300, '宿州马鞍山现代产业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341372, 341300, '宿州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341500, 340000, '六安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341501, 341500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502, 341500, '金安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503, 341500, '裕安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341504, 341500, '叶集区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522, 341500, '霍邱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523, 341500, '舒城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524, 341500, '金寨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525, 341500, '霍山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341600, 340000, '亳州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341601, 341600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602, 341600, '谯城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621, 341600, '涡阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622, 341600, '蒙城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623, 341600, '利辛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341700, 340000, '池州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341701, 341700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702, 341700, '贵池区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721, 341700, '东至县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722, 341700, '石台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723, 341700, '青阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341800, 340000, '宣城市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341801, 341800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802, 341800, '宣州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821, 341800, '郎溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823, 341800, '泾县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824, 341800, '绩溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825, 341800, '旌德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341871, 341800, '宣城市经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881, 341800, '宁国市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882, 341800, '广德市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350000, 1, '福建省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350100, 350000, '福州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350101, 350100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102, 350100, '鼓楼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103, 350100, '台江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104, 350100, '仓山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350105, 350100, '马尾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111, 350100, '晋安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112, 350100, '长乐区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121, 350100, '闽侯县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122, 350100, '连江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123, 350100, '罗源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124, 350100, '闽清县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125, 350100, '永泰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128, 350100, '平潭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181, 350100, '福清市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350200, 350000, '厦门市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350201, 350200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203, 350200, '思明区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350205, 350200, '海沧区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206, 350200, '湖里区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211, 350200, '集美区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212, 350200, '同安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213, 350200, '翔安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350300, 350000, '莆田市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350301, 350300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302, 350300, '城厢区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303, 350300, '涵江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350304, 350300, '荔城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305, 350300, '秀屿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322, 350300, '仙游县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350400, 350000, '三明市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350401, 350400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404, 350400, '三元区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405, 350400, '沙县区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421, 350400, '明溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423, 350400, '清流县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424, 350400, '宁化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425, 350400, '大田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426, 350400, '尤溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428, 350400, '将乐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429, 350400, '泰宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430, 350400, '建宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481, 350400, '永安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350500, 350000, '泉州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350501, 350500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502, 350500, '鲤城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503, 350500, '丰泽区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350504, 350500, '洛江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505, 350500, '泉港区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521, 350500, '惠安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524, 350500, '安溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525, 350500, '永春县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526, 350500, '德化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350527, 350500, '金门县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581, 350500, '石狮市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582, 350500, '晋江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583, 350500, '南安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350600, 350000, '漳州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350601, 350600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602, 350600, '芗城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603, 350600, '龙文区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604, 350600, '龙海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605, 350600, '长泰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622, 350600, '云霄县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623, 350600, '漳浦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624, 350600, '诏安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626, 350600, '东山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627, 350600, '南靖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628, 350600, '平和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629, 350600, '华安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350700, 350000, '南平市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350701, 350700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702, 350700, '延平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703, 350700, '建阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721, 350700, '顺昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722, 350700, '浦城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723, 350700, '光泽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724, 350700, '松溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725, 350700, '政和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781, 350700, '邵武市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782, 350700, '武夷山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783, 350700, '建瓯市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350800, 350000, '龙岩市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350801, 350800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802, 350800, '新罗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803, 350800, '永定区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821, 350800, '长汀县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823, 350800, '上杭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824, 350800, '武平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825, 350800, '连城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881, 350800, '漳平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350900, 350000, '宁德市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350901, 350900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902, 350900, '蕉城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921, 350900, '霞浦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922, 350900, '古田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923, 350900, '屏南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924, 350900, '寿宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925, 350900, '周宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926, 350900, '柘荣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981, 350900, '福安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982, 350900, '福鼎市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360000, 1, '江西省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360100, 360000, '南昌市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360101, 360100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102, 360100, '东湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103, 360100, '西湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104, 360100, '青云谱区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111, 360100, '青山湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112, 360100, '新建区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360113, 360100, '红谷滩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121, 360100, '南昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123, 360100, '安义县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124, 360100, '进贤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360200, 360000, '景德镇市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360201, 360200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202, 360200, '昌江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203, 360200, '珠山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222, 360200, '浮梁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281, 360200, '乐平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360300, 360000, '萍乡市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360301, 360300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302, 360300, '安源区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313, 360300, '湘东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321, 360300, '莲花县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322, 360300, '上栗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323, 360300, '芦溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360400, 360000, '九江市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360401, 360400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402, 360400, '濂溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403, 360400, '浔阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404, 360400, '柴桑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423, 360400, '武宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424, 360400, '修水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425, 360400, '永修县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426, 360400, '德安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428, 360400, '都昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429, 360400, '湖口县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430, 360400, '彭泽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481, 360400, '瑞昌市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360482, 360400, '共青城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483, 360400, '庐山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360500, 360000, '新余市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360501, 360500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502, 360500, '渝水区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521, 360500, '分宜县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360600, 360000, '鹰潭市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360601, 360600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602, 360600, '月湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603, 360600, '余江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681, 360600, '贵溪市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360700, 360000, '赣州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360701, 360700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702, 360700, '章贡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703, 360700, '南康区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704, 360700, '赣县区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722, 360700, '信丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723, 360700, '大余县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724, 360700, '上犹县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725, 360700, '崇义县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726, 360700, '安远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728, 360700, '定南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729, 360700, '全南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730, 360700, '宁都县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731, 360700, '于都县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732, 360700, '兴国县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733, 360700, '会昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734, 360700, '寻乌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735, 360700, '石城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781, 360700, '瑞金市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783, 360700, '龙南市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360800, 360000, '吉安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360801, 360800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802, 360800, '吉州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803, 360800, '青原区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821, 360800, '吉安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822, 360800, '吉水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823, 360800, '峡江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824, 360800, '新干县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825, 360800, '永丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826, 360800, '泰和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827, 360800, '遂川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828, 360800, '万安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829, 360800, '安福县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830, 360800, '永新县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881, 360800, '井冈山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360900, 360000, '宜春市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360901, 360900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902, 360900, '袁州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921, 360900, '奉新县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922, 360900, '万载县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923, 360900, '上高县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924, 360900, '宜丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925, 360900, '靖安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926, 360900, '铜鼓县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981, 360900, '丰城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982, 360900, '樟树市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983, 360900, '高安市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361000, 360000, '抚州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361001, 361000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002, 361000, '临川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003, 361000, '东乡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021, 361000, '南城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022, 361000, '黎川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023, 361000, '南丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024, 361000, '崇仁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025, 361000, '乐安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026, 361000, '宜黄县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027, 361000, '金溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028, 361000, '资溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030, 361000, '广昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361100, 360000, '上饶市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361101, 361100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102, 361100, '信州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103, 361100, '广丰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104, 361100, '广信区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123, 361100, '玉山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124, 361100, '铅山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125, 361100, '横峰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126, 361100, '弋阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127, 361100, '余干县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128, 361100, '鄱阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129, 361100, '万年县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130, 361100, '婺源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181, 361100, '德兴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370000, 1, '山东省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370100, 370000, '济南市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370101, 370100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102, 370100, '历下区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103, 370100, '市中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104, 370100, '槐荫区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105, 370100, '天桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112, 370100, '历城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113, 370100, '长清区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114, 370100, '章丘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115, 370100, '济阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116, 370100, '莱芜区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117, 370100, '钢城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124, 370100, '平阴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126, 370100, '商河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370171, 370100, '济南高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370200, 370000, '青岛市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370201, 370200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202, 370200, '市南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203, 370200, '市北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211, 370200, '黄岛区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370212, 370200, '崂山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213, 370200, '李沧区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214, 370200, '城阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215, 370200, '即墨区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370271, 370200, '青岛高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281, 370200, '胶州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283, 370200, '平度市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285, 370200, '莱西市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370300, 370000, '淄博市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370301, 370300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302, 370300, '淄川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303, 370300, '张店区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304, 370300, '博山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305, 370300, '临淄区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306, 370300, '周村区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321, 370300, '桓台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322, 370300, '高青县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323, 370300, '沂源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370400, 370000, '枣庄市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370401, 370400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402, 370400, '市中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403, 370400, '薛城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404, 370400, '峄城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370405, 370400, '台儿庄区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406, 370400, '山亭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481, 370400, '滕州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370500, 370000, '东营市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370501, 370500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502, 370500, '东营区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503, 370500, '河口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505, 370500, '垦利区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522, 370500, '利津县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523, 370500, '广饶县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370571, 370500, '东营经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370572, 370500, '东营港经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370600, 370000, '烟台市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370601, 370600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602, 370600, '芝罘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611, 370600, '福山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612, 370600, '牟平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370613, 370600, '莱山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614, 370600, '蓬莱区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370671, 370600, '烟台高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370672, 370600, '烟台经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681, 370600, '龙口市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682, 370600, '莱阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683, 370600, '莱州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685, 370600, '招远市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686, 370600, '栖霞市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687, 370600, '海阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370700, 370000, '潍坊市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370701, 370700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702, 370700, '潍城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370703, 370700, '寒亭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704, 370700, '坊子区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705, 370700, '奎文区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724, 370700, '临朐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725, 370700, '昌乐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370772, 370700, '潍坊滨海经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781, 370700, '青州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782, 370700, '诸城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783, 370700, '寿光市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784, 370700, '安丘市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785, 370700, '高密市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786, 370700, '昌邑市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370800, 370000, '济宁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370801, 370800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811, 370800, '任城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812, 370800, '兖州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826, 370800, '微山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827, 370800, '鱼台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828, 370800, '金乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829, 370800, '嘉祥县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830, 370800, '汶上县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831, 370800, '泗水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832, 370800, '梁山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370871, 370800, '济宁高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881, 370800, '曲阜市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883, 370800, '邹城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370900, 370000, '泰安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370901, 370900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902, 370900, '泰山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911, 370900, '岱岳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921, 370900, '宁阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923, 370900, '东平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982, 370900, '新泰市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983, 370900, '肥城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371000, 370000, '威海市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371001, 371000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002, 371000, '环翠区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003, 371000, '文登区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371071, 371000, '威海火炬高技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371072, 371000, '威海经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371073, 371000, '威海临港经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082, 371000, '荣成市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083, 371000, '乳山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371100, 370000, '日照市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371101, 371100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102, 371100, '东港区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103, 371100, '岚山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121, 371100, '五莲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122, 371100, '莒县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371171, 371100, '日照经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371300, 370000, '临沂市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371301, 371300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302, 371300, '兰山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311, 371300, '罗庄区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312, 371300, '河东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321, 371300, '沂南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322, 371300, '郯城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323, 371300, '沂水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324, 371300, '兰陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325, 371300, '费县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326, 371300, '平邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327, 371300, '莒南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328, 371300, '蒙阴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329, 371300, '临沭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371371, 371300, '临沂高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371400, 370000, '德州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371401, 371400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402, 371400, '德城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403, 371400, '陵城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422, 371400, '宁津县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423, 371400, '庆云县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424, 371400, '临邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425, 371400, '齐河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426, 371400, '平原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427, 371400, '夏津县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428, 371400, '武城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371471, 371400, '德州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371472, 371400, '德州运河经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481, 371400, '乐陵市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482, 371400, '禹城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371500, 370000, '聊城市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371501, 371500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502, 371500, '东昌府区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503, 371500, '茌平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521, 371500, '阳谷县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522, 371500, '莘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524, 371500, '东阿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525, 371500, '冠县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526, 371500, '高唐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581, 371500, '临清市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371600, 370000, '滨州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371601, 371600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602, 371600, '滨城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603, 371600, '沾化区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621, 371600, '惠民县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622, 371600, '阳信县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623, 371600, '无棣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625, 371600, '博兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681, 371600, '邹平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371700, 370000, '菏泽市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371701, 371700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702, 371700, '牡丹区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703, 371700, '定陶区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721, 371700, '曹县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722, 371700, '单县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723, 371700, '成武县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724, 371700, '巨野县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725, 371700, '郓城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726, 371700, '鄄城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728, 371700, '东明县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371771, 371700, '菏泽经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371772, 371700, '菏泽高新技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410000, 1, '河南省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410100, 410000, '郑州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410101, 410100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102, 410100, '中原区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103, 410100, '二七区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104, 410100, '管城回族区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105, 410100, '金水区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410106, 410100, '上街区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108, 410100, '惠济区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122, 410100, '中牟县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410171, 410100, '郑州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410172, 410100, '郑州高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173, 410100, '郑州航空港经济综合实验区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181, 410100, '巩义市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182, 410100, '荥阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183, 410100, '新密市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184, 410100, '新郑市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185, 410100, '登封市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410200, 410000, '开封市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410201, 410200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202, 410200, '龙亭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203, 410200, '顺河回族区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204, 410200, '鼓楼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205, 410200, '禹王台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212, 410200, '祥符区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221, 410200, '杞县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222, 410200, '通许县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223, 410200, '尉氏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225, 410200, '兰考县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410300, 410000, '洛阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410301, 410300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302, 410300, '老城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303, 410300, '西工区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304, 410300, '瀍河回族区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305, 410300, '涧西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307, 410300, '偃师区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308, 410300, '孟津区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311, 410300, '洛龙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323, 410300, '新安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324, 410300, '栾川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325, 410300, '嵩县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326, 410300, '汝阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327, 410300, '宜阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328, 410300, '洛宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329, 410300, '伊川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410371, 410300, '洛阳高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410400, 410000, '平顶山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410401, 410400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402, 410400, '新华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403, 410400, '卫东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410404, 410400, '石龙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411, 410400, '湛河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421, 410400, '宝丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422, 410400, '叶县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423, 410400, '鲁山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425, 410400, '郏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410471, 410400, '平顶山高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410472, 410400, '平顶山市城乡一体化示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481, 410400, '舞钢市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482, 410400, '汝州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410500, 410000, '安阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410501, 410500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502, 410500, '文峰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503, 410500, '北关区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505, 410500, '殷都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506, 410500, '龙安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522, 410500, '安阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523, 410500, '汤阴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526, 410500, '滑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527, 410500, '内黄县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410571, 410500, '安阳高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581, 410500, '林州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410600, 410000, '鹤壁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410601, 410600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602, 410600, '鹤山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603, 410600, '山城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611, 410600, '淇滨区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621, 410600, '浚县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622, 410600, '淇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410671, 410600, '鹤壁经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410700, 410000, '新乡市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410701, 410700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702, 410700, '红旗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703, 410700, '卫滨区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410704, 410700, '凤泉区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711, 410700, '牧野区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721, 410700, '新乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724, 410700, '获嘉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725, 410700, '原阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726, 410700, '延津县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727, 410700, '封丘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410771, 410700, '新乡高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410772, 410700, '新乡经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410773, 410700, '新乡市平原城乡一体化示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781, 410700, '卫辉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782, 410700, '辉县市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783, 410700, '长垣市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410800, 410000, '焦作市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410801, 410800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802, 410800, '解放区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803, 410800, '中站区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804, 410800, '马村区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811, 410800, '山阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821, 410800, '修武县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822, 410800, '博爱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823, 410800, '武陟县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825, 410800, '温县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410871, 410800, '焦作城乡一体化示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882, 410800, '沁阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883, 410800, '孟州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410900, 410000, '濮阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410901, 410900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902, 410900, '华龙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922, 410900, '清丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923, 410900, '南乐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926, 410900, '范县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927, 410900, '台前县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928, 410900, '濮阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410971, 410900, '河南濮阳工业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972, 410900, '濮阳经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411000, 410000, '许昌市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411001, 411000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002, 411000, '魏都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003, 411000, '建安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024, 411000, '鄢陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025, 411000, '襄城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411071, 411000, '许昌经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081, 411000, '禹州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082, 411000, '长葛市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411100, 410000, '漯河市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411101, 411100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102, 411100, '源汇区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103, 411100, '郾城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104, 411100, '召陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121, 411100, '舞阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122, 411100, '临颍县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411171, 411100, '漯河经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411200, 410000, '三门峡市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411201, 411200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202, 411200, '湖滨区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203, 411200, '陕州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221, 411200, '渑池县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224, 411200, '卢氏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411271, 411200, '河南三门峡经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281, 411200, '义马市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282, 411200, '灵宝市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411300, 410000, '南阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411301, 411300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302, 411300, '宛城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303, 411300, '卧龙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321, 411300, '南召县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322, 411300, '方城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323, 411300, '西峡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324, 411300, '镇平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325, 411300, '内乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326, 411300, '淅川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327, 411300, '社旗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328, 411300, '唐河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329, 411300, '新野县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330, 411300, '桐柏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411371, 411300, '南阳高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411372, 411300, '南阳市城乡一体化示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381, 411300, '邓州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411400, 410000, '商丘市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411401, 411400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402, 411400, '梁园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403, 411400, '睢阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421, 411400, '民权县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422, 411400, '睢县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423, 411400, '宁陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424, 411400, '柘城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425, 411400, '虞城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426, 411400, '夏邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411471, 411400, '豫东综合物流产业聚集区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411472, 411400, '河南商丘经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481, 411400, '永城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411500, 410000, '信阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411501, 411500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502, 411500, '浉河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503, 411500, '平桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521, 411500, '罗山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522, 411500, '光山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523, 411500, '新县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524, 411500, '商城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525, 411500, '固始县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526, 411500, '潢川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527, 411500, '淮滨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528, 411500, '息县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411571, 411500, '信阳高新技术产业开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411600, 410000, '周口市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411601, 411600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602, 411600, '川汇区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603, 411600, '淮阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621, 411600, '扶沟县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622, 411600, '西华县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623, 411600, '商水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624, 411600, '沈丘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625, 411600, '郸城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627, 411600, '太康县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628, 411600, '鹿邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411671, 411600, '河南周口经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681, 411600, '项城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411700, 410000, '驻马店市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411701, 411700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702, 411700, '驿城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721, 411700, '西平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722, 411700, '上蔡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723, 411700, '平舆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724, 411700, '正阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725, 411700, '确山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726, 411700, '泌阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727, 411700, '汝南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728, 411700, '遂平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729, 411700, '新蔡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411771, 411700, '河南驻马店经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419000, 410000, '省直辖县级行政区划', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001, 419000, '济源市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420000, 1, '湖北省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420100, 420000, '武汉市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420101, 420100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102, 420100, '江岸区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103, 420100, '江汉区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104, 420100, '硚口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105, 420100, '汉阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106, 420100, '武昌区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107, 420100, '青山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111, 420100, '洪山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112, 420100, '东西湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420113, 420100, '汉南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114, 420100, '蔡甸区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115, 420100, '江夏区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116, 420100, '黄陂区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117, 420100, '新洲区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420200, 420000, '黄石市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420201, 420200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420202, 420200, '黄石港区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203, 420200, '西塞山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420204, 420200, '下陆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420205, 420200, '铁山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222, 420200, '阳新县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281, 420200, '大冶市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420300, 420000, '十堰市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420301, 420300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302, 420300, '茅箭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303, 420300, '张湾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304, 420300, '郧阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322, 420300, '郧西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323, 420300, '竹山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324, 420300, '竹溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325, 420300, '房县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381, 420300, '丹江口市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420500, 420000, '宜昌市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420501, 420500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502, 420500, '西陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420503, 420500, '伍家岗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420504, 420500, '点军区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420505, 420500, '猇亭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506, 420500, '夷陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525, 420500, '远安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526, 420500, '兴山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527, 420500, '秭归县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528, 420500, '长阳土家族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529, 420500, '五峰土家族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581, 420500, '宜都市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582, 420500, '当阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583, 420500, '枝江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420600, 420000, '襄阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420601, 420600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602, 420600, '襄城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606, 420600, '樊城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607, 420600, '襄州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624, 420600, '南漳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625, 420600, '谷城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626, 420600, '保康县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682, 420600, '老河口市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683, 420600, '枣阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684, 420600, '宜城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420700, 420000, '鄂州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420701, 420700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420702, 420700, '梁子湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703, 420700, '华容区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704, 420700, '鄂城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420800, 420000, '荆门市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420801, 420800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802, 420800, '东宝区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420804, 420800, '掇刀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822, 420800, '沙洋县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881, 420800, '钟祥市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882, 420800, '京山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420900, 420000, '孝感市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420901, 420900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902, 420900, '孝南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921, 420900, '孝昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922, 420900, '大悟县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923, 420900, '云梦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981, 420900, '应城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982, 420900, '安陆市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984, 420900, '汉川市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421000, 420000, '荆州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421001, 421000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002, 421000, '沙市区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003, 421000, '荆州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022, 421000, '公安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024, 421000, '江陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421071, 421000, '荆州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081, 421000, '石首市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083, 421000, '洪湖市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087, 421000, '松滋市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088, 421000, '监利市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421100, 420000, '黄冈市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421101, 421100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102, 421100, '黄州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121, 421100, '团风县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122, 421100, '红安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123, 421100, '罗田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124, 421100, '英山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125, 421100, '浠水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126, 421100, '蕲春县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127, 421100, '黄梅县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171, 421100, '龙感湖管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181, 421100, '麻城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182, 421100, '武穴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421200, 420000, '咸宁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421201, 421200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202, 421200, '咸安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221, 421200, '嘉鱼县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222, 421200, '通城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223, 421200, '崇阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224, 421200, '通山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281, 421200, '赤壁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421300, 420000, '随州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421301, 421300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303, 421300, '曾都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321, 421300, '随县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381, 421300, '广水市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422800, 420000, '恩施土家族苗族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801, 422800, '恩施市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802, 422800, '利川市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822, 422800, '建始县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823, 422800, '巴东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825, 422800, '宣恩县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826, 422800, '咸丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827, 422800, '来凤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828, 422800, '鹤峰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429000, 420000, '省直辖县级行政区划', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004, 429000, '仙桃市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005, 429000, '潜江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006, 429000, '天门市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021, 429000, '神农架林区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430000, 1, '湖南省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430100, 430000, '长沙市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430101, 430100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102, 430100, '芙蓉区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103, 430100, '天心区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104, 430100, '岳麓区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105, 430100, '开福区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111, 430100, '雨花区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112, 430100, '望城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121, 430100, '长沙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181, 430100, '浏阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182, 430100, '宁乡市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430200, 430000, '株洲市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430201, 430200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430202, 430200, '荷塘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203, 430200, '芦淞区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430204, 430200, '石峰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211, 430200, '天元区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212, 430200, '渌口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223, 430200, '攸县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224, 430200, '茶陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225, 430200, '炎陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430271, 430200, '云龙示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281, 430200, '醴陵市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430300, 430000, '湘潭市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430301, 430300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302, 430300, '雨湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304, 430300, '岳塘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321, 430300, '湘潭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430371, 430300, '湖南湘潭高新技术产业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430372, 430300, '湘潭昭山示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430373, 430300, '湘潭九华示范区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381, 430300, '湘乡市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430382, 430300, '韶山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430400, 430000, '衡阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430401, 430400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405, 430400, '珠晖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406, 430400, '雁峰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407, 430400, '石鼓区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430408, 430400, '蒸湘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430412, 430400, '南岳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421, 430400, '衡阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422, 430400, '衡南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423, 430400, '衡山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424, 430400, '衡东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426, 430400, '祁东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430471, 430400, '衡阳综合保税区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430472, 430400, '湖南衡阳高新技术产业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430473, 430400, '湖南衡阳松木经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481, 430400, '耒阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482, 430400, '常宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430500, 430000, '邵阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430501, 430500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502, 430500, '双清区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503, 430500, '大祥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430511, 430500, '北塔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522, 430500, '新邵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523, 430500, '邵阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524, 430500, '隆回县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525, 430500, '洞口县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527, 430500, '绥宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528, 430500, '新宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529, 430500, '城步苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581, 430500, '武冈市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582, 430500, '邵东市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430600, 430000, '岳阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430601, 430600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602, 430600, '岳阳楼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430603, 430600, '云溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430611, 430600, '君山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621, 430600, '岳阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623, 430600, '华容县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624, 430600, '湘阴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626, 430600, '平江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430671, 430600, '岳阳市屈原管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681, 430600, '汨罗市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682, 430600, '临湘市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430700, 430000, '常德市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430701, 430700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702, 430700, '武陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703, 430700, '鼎城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721, 430700, '安乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722, 430700, '汉寿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723, 430700, '澧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724, 430700, '临澧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725, 430700, '桃源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726, 430700, '石门县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430771, 430700, '常德市西洞庭管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781, 430700, '津市市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430800, 430000, '张家界市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430801, 430800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802, 430800, '永定区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430811, 430800, '武陵源区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821, 430800, '慈利县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822, 430800, '桑植县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430900, 430000, '益阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430901, 430900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902, 430900, '资阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903, 430900, '赫山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921, 430900, '南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922, 430900, '桃江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923, 430900, '安化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430971, 430900, '益阳市大通湖管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430972, 430900, '湖南益阳高新技术产业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981, 430900, '沅江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431000, 430000, '郴州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431001, 431000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002, 431000, '北湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003, 431000, '苏仙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021, 431000, '桂阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022, 431000, '宜章县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023, 431000, '永兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024, 431000, '嘉禾县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025, 431000, '临武县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026, 431000, '汝城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027, 431000, '桂东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028, 431000, '安仁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081, 431000, '资兴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431100, 430000, '永州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431101, 431100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102, 431100, '零陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103, 431100, '冷水滩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122, 431100, '东安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123, 431100, '双牌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124, 431100, '道县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125, 431100, '江永县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126, 431100, '宁远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127, 431100, '蓝山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128, 431100, '新田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129, 431100, '江华瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431171, 431100, '永州经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431173, 431100, '永州市回龙圩管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181, 431100, '祁阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431200, 430000, '怀化市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431201, 431200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202, 431200, '鹤城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221, 431200, '中方县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222, 431200, '沅陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223, 431200, '辰溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224, 431200, '溆浦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225, 431200, '会同县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226, 431200, '麻阳苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227, 431200, '新晃侗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228, 431200, '芷江侗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229, 431200, '靖州苗族侗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230, 431200, '通道侗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431271, 431200, '怀化市洪江管理区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281, 431200, '洪江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431300, 430000, '娄底市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431301, 431300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302, 431300, '娄星区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321, 431300, '双峰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322, 431300, '新化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381, 431300, '冷水江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382, 431300, '涟源市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433100, 430000, '湘西土家族苗族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101, 433100, '吉首市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122, 433100, '泸溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123, 433100, '凤凰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124, 433100, '花垣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125, 433100, '保靖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126, 433100, '古丈县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127, 433100, '永顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130, 433100, '龙山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440000, 1, '广东省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440100, 440000, '广州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440101, 440100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103, 440100, '荔湾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104, 440100, '越秀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105, 440100, '海珠区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106, 440100, '天河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111, 440100, '白云区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112, 440100, '黄埔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113, 440100, '番禺区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114, 440100, '花都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115, 440100, '南沙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117, 440100, '从化区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118, 440100, '增城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440200, 440000, '韶关市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440201, 440200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203, 440200, '武江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204, 440200, '浈江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205, 440200, '曲江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222, 440200, '始兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224, 440200, '仁化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229, 440200, '翁源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232, 440200, '乳源瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233, 440200, '新丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281, 440200, '乐昌市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282, 440200, '南雄市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440300, 440000, '深圳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440301, 440300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303, 440300, '罗湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304, 440300, '福田区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305, 440300, '南山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306, 440300, '宝安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307, 440300, '龙岗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440308, 440300, '盐田区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440309, 440300, '龙华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310, 440300, '坪山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440311, 440300, '光明区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440400, 440000, '珠海市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440401, 440400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402, 440400, '香洲区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440403, 440400, '斗门区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440404, 440400, '金湾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440500, 440000, '汕头市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440501, 440500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507, 440500, '龙湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511, 440500, '金平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512, 440500, '濠江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513, 440500, '潮阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514, 440500, '潮南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515, 440500, '澄海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440523, 440500, '南澳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440600, 440000, '佛山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440601, 440600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440604, 440600, '禅城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605, 440600, '南海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606, 440600, '顺德区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607, 440600, '三水区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608, 440600, '高明区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440700, 440000, '江门市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440701, 440700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440703, 440700, '蓬江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440704, 440700, '江海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705, 440700, '新会区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781, 440700, '台山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783, 440700, '开平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784, 440700, '鹤山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785, 440700, '恩平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440800, 440000, '湛江市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440801, 440800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802, 440800, '赤坎区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803, 440800, '霞山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804, 440800, '坡头区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811, 440800, '麻章区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823, 440800, '遂溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825, 440800, '徐闻县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881, 440800, '廉江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882, 440800, '雷州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883, 440800, '吴川市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440900, 440000, '茂名市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440901, 440900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902, 440900, '茂南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904, 440900, '电白区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981, 440900, '高州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982, 440900, '化州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983, 440900, '信宜市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441200, 440000, '肇庆市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441201, 441200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441202, 441200, '端州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203, 441200, '鼎湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204, 441200, '高要区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223, 441200, '广宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224, 441200, '怀集县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225, 441200, '封开县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226, 441200, '德庆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284, 441200, '四会市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441300, 440000, '惠州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441301, 441300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302, 441300, '惠城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303, 441300, '惠阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322, 441300, '博罗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323, 441300, '惠东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324, 441300, '龙门县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441400, 440000, '梅州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441401, 441400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402, 441400, '梅江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403, 441400, '梅县区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422, 441400, '大埔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423, 441400, '丰顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424, 441400, '五华县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426, 441400, '平远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427, 441400, '蕉岭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481, 441400, '兴宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441500, 440000, '汕尾市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441501, 441500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502, 441500, '城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521, 441500, '海丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523, 441500, '陆河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581, 441500, '陆丰市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441600, 440000, '河源市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441601, 441600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602, 441600, '源城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621, 441600, '紫金县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622, 441600, '龙川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623, 441600, '连平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624, 441600, '和平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625, 441600, '东源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441700, 440000, '阳江市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441701, 441700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702, 441700, '江城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704, 441700, '阳东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721, 441700, '阳西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781, 441700, '阳春市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441800, 440000, '清远市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441801, 441800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802, 441800, '清城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803, 441800, '清新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821, 441800, '佛冈县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823, 441800, '阳山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825, 441800, '连山壮族瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826, 441800, '连南瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881, 441800, '英德市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882, 441800, '连州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900, 440000, '东莞市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000, 440000, '中山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445100, 440000, '潮州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445101, 445100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102, 445100, '湘桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103, 445100, '潮安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122, 445100, '饶平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445200, 440000, '揭阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445201, 445200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202, 445200, '榕城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203, 445200, '揭东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222, 445200, '揭西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224, 445200, '惠来县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281, 445200, '普宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445300, 440000, '云浮市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445301, 445300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302, 445300, '云城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303, 445300, '云安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321, 445300, '新兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322, 445300, '郁南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381, 445300, '罗定市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450000, 1, '广西壮族自治区', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450100, 450000, '南宁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450101, 450100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450102, 450100, '兴宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103, 450100, '青秀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105, 450100, '江南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107, 450100, '西乡塘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108, 450100, '良庆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450109, 450100, '邕宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110, 450100, '武鸣区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123, 450100, '隆安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124, 450100, '马山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125, 450100, '上林县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126, 450100, '宾阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181, 450100, '横州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450200, 450000, '柳州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450201, 450200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202, 450200, '城中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203, 450200, '鱼峰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204, 450200, '柳南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205, 450200, '柳北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206, 450200, '柳江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222, 450200, '柳城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223, 450200, '鹿寨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224, 450200, '融安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225, 450200, '融水苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226, 450200, '三江侗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450300, 450000, '桂林市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450301, 450300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450302, 450300, '秀峰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450303, 450300, '叠彩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450304, 450300, '象山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450305, 450300, '七星区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450311, 450300, '雁山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312, 450300, '临桂区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321, 450300, '阳朔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323, 450300, '灵川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324, 450300, '全州县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325, 450300, '兴安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326, 450300, '永福县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327, 450300, '灌阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328, 450300, '龙胜各族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329, 450300, '资源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330, 450300, '平乐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332, 450300, '恭城瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381, 450300, '荔浦市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450400, 450000, '梧州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450401, 450400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403, 450400, '万秀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450405, 450400, '长洲区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450406, 450400, '龙圩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421, 450400, '苍梧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422, 450400, '藤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423, 450400, '蒙山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481, 450400, '岑溪市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450500, 450000, '北海市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450501, 450500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502, 450500, '海城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450503, 450500, '银海区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450512, 450500, '铁山港区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521, 450500, '合浦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450600, 450000, '防城港市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450601, 450600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450602, 450600, '港口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603, 450600, '防城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621, 450600, '上思县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450681, 450600, '东兴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450700, 450000, '钦州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450701, 450700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702, 450700, '钦南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703, 450700, '钦北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721, 450700, '灵山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722, 450700, '浦北县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450800, 450000, '贵港市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450801, 450800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802, 450800, '港北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803, 450800, '港南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804, 450800, '覃塘区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821, 450800, '平南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881, 450800, '桂平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450900, 450000, '玉林市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450901, 450900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902, 450900, '玉州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450903, 450900, '福绵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921, 450900, '容县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922, 450900, '陆川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923, 450900, '博白县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924, 450900, '兴业县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981, 450900, '北流市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451000, 450000, '百色市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451001, 451000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002, 451000, '右江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003, 451000, '田阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022, 451000, '田东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024, 451000, '德保县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026, 451000, '那坡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027, 451000, '凌云县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028, 451000, '乐业县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029, 451000, '田林县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030, 451000, '西林县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031, 451000, '隆林各族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081, 451000, '靖西市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082, 451000, '平果市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451100, 450000, '贺州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451101, 451100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102, 451100, '八步区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103, 451100, '平桂区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121, 451100, '昭平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122, 451100, '钟山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123, 451100, '富川瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451200, 450000, '河池市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451201, 451200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202, 451200, '金城江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203, 451200, '宜州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221, 451200, '南丹县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222, 451200, '天峨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223, 451200, '凤山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224, 451200, '东兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225, 451200, '罗城仫佬族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226, 451200, '环江毛南族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227, 451200, '巴马瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228, 451200, '都安瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229, 451200, '大化瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451300, 450000, '来宾市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451301, 451300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302, 451300, '兴宾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321, 451300, '忻城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322, 451300, '象州县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323, 451300, '武宣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324, 451300, '金秀瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451381, 451300, '合山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451400, 450000, '崇左市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451401, 451400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402, 451400, '江州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421, 451400, '扶绥县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422, 451400, '宁明县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423, 451400, '龙州县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424, 451400, '大新县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425, 451400, '天等县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451481, 451400, '凭祥市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460000, 1, '海南省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460100, 460000, '海口市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460101, 460100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105, 460100, '秀英区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106, 460100, '龙华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107, 460100, '琼山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108, 460100, '美兰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460200, 460000, '三亚市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460201, 460200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460202, 460200, '海棠区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460203, 460200, '吉阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460204, 460200, '天涯区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460205, 460200, '崖州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460300, 460000, '三沙市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460321, 460300, '西沙群岛', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460322, 460300, '南沙群岛', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460323, 460300, '中沙群岛的岛礁及其海域', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400, 460000, '儋州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469000, 460000, '省直辖县级行政区划', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001, 469000, '五指山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002, 469000, '琼海市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005, 469000, '文昌市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006, 469000, '万宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007, 469000, '东方市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021, 469000, '定安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022, 469000, '屯昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023, 469000, '澄迈县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024, 469000, '临高县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025, 469000, '白沙黎族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026, 469000, '昌江黎族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027, 469000, '乐东黎族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028, 469000, '陵水黎族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029, 469000, '保亭黎族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030, 469000, '琼中黎族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500000, 1, '重庆市', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500100, 500000, '市辖区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101, 500100, '万州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102, 500100, '涪陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103, 500100, '渝中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104, 500100, '大渡口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105, 500100, '江北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106, 500100, '沙坪坝区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107, 500100, '九龙坡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108, 500100, '南岸区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109, 500100, '北碚区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110, 500100, '綦江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111, 500100, '大足区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112, 500100, '渝北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113, 500100, '巴南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114, 500100, '黔江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115, 500100, '长寿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116, 500100, '江津区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117, 500100, '合川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118, 500100, '永川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119, 500100, '南川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120, 500100, '璧山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151, 500100, '铜梁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152, 500100, '潼南区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153, 500100, '荣昌区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154, 500100, '开州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155, 500100, '梁平区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156, 500100, '武隆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500200, 500000, '县', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229, 500200, '城口县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230, 500200, '丰都县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231, 500200, '垫江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233, 500200, '忠县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235, 500200, '云阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236, 500200, '奉节县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237, 500200, '巫山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238, 500200, '巫溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240, 500200, '石柱土家族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241, 500200, '秀山土家族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242, 500200, '酉阳土家族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243, 500200, '彭水苗族土家族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510000, 1, '四川省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510100, 510000, '成都市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510101, 510100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104, 510100, '锦江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105, 510100, '青羊区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106, 510100, '金牛区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107, 510100, '武侯区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108, 510100, '成华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112, 510100, '龙泉驿区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113, 510100, '青白江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114, 510100, '新都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115, 510100, '温江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116, 510100, '双流区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117, 510100, '郫都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118, 510100, '新津区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121, 510100, '金堂县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129, 510100, '大邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131, 510100, '蒲江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181, 510100, '都江堰市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182, 510100, '彭州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183, 510100, '邛崃市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184, 510100, '崇州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185, 510100, '简阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510300, 510000, '自贡市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510301, 510300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302, 510300, '自流井区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303, 510300, '贡井区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304, 510300, '大安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311, 510300, '沿滩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321, 510300, '荣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322, 510300, '富顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510400, 510000, '攀枝花市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510401, 510400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510402, 510400, '东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510403, 510400, '西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411, 510400, '仁和区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421, 510400, '米易县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422, 510400, '盐边县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510500, 510000, '泸州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510501, 510500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502, 510500, '江阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503, 510500, '纳溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504, 510500, '龙马潭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521, 510500, '泸县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522, 510500, '合江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524, 510500, '叙永县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525, 510500, '古蔺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510600, 510000, '德阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510601, 510600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603, 510600, '旌阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604, 510600, '罗江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623, 510600, '中江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681, 510600, '广汉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682, 510600, '什邡市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683, 510600, '绵竹市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510700, 510000, '绵阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510701, 510700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703, 510700, '涪城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704, 510700, '游仙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705, 510700, '安州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722, 510700, '三台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723, 510700, '盐亭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725, 510700, '梓潼县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726, 510700, '北川羌族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727, 510700, '平武县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781, 510700, '江油市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510800, 510000, '广元市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510801, 510800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802, 510800, '利州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811, 510800, '昭化区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812, 510800, '朝天区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821, 510800, '旺苍县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822, 510800, '青川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823, 510800, '剑阁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824, 510800, '苍溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510900, 510000, '遂宁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510901, 510900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903, 510900, '船山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904, 510900, '安居区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921, 510900, '蓬溪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923, 510900, '大英县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981, 510900, '射洪市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511000, 510000, '内江市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511001, 511000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002, 511000, '市中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011, 511000, '东兴区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024, 511000, '威远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025, 511000, '资中县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511071, 511000, '内江经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083, 511000, '隆昌市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511100, 510000, '乐山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511101, 511100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102, 511100, '市中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111, 511100, '沙湾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112, 511100, '五通桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511113, 511100, '金口河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123, 511100, '犍为县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124, 511100, '井研县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126, 511100, '夹江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129, 511100, '沐川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132, 511100, '峨边彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133, 511100, '马边彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181, 511100, '峨眉山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511300, 510000, '南充市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511301, 511300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302, 511300, '顺庆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303, 511300, '高坪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304, 511300, '嘉陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321, 511300, '南部县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322, 511300, '营山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323, 511300, '蓬安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324, 511300, '仪陇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325, 511300, '西充县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381, 511300, '阆中市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511400, 510000, '眉山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511401, 511400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402, 511400, '东坡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403, 511400, '彭山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421, 511400, '仁寿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423, 511400, '洪雅县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511424, 511400, '丹棱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425, 511400, '青神县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511500, 510000, '宜宾市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511501, 511500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502, 511500, '翠屏区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503, 511500, '南溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504, 511500, '叙州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523, 511500, '江安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524, 511500, '长宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525, 511500, '高县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526, 511500, '珙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527, 511500, '筠连县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528, 511500, '兴文县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529, 511500, '屏山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511600, 510000, '广安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511601, 511600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602, 511600, '广安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603, 511600, '前锋区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621, 511600, '岳池县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622, 511600, '武胜县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623, 511600, '邻水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681, 511600, '华蓥市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511700, 510000, '达州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511701, 511700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702, 511700, '通川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703, 511700, '达川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722, 511700, '宣汉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723, 511700, '开江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724, 511700, '大竹县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725, 511700, '渠县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511771, 511700, '达州经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781, 511700, '万源市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511800, 510000, '雅安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511801, 511800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802, 511800, '雨城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803, 511800, '名山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822, 511800, '荥经县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823, 511800, '汉源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824, 511800, '石棉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825, 511800, '天全县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826, 511800, '芦山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827, 511800, '宝兴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511900, 510000, '巴中市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511901, 511900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902, 511900, '巴州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903, 511900, '恩阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921, 511900, '通江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922, 511900, '南江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923, 511900, '平昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511971, 511900, '巴中经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512000, 510000, '资阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512001, 512000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002, 512000, '雁江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021, 512000, '安岳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022, 512000, '乐至县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513200, 510000, '阿坝藏族羌族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201, 513200, '马尔康市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221, 513200, '汶川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222, 513200, '理县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223, 513200, '茂县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224, 513200, '松潘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225, 513200, '九寨沟县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226, 513200, '金川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227, 513200, '小金县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228, 513200, '黑水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230, 513200, '壤塘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231, 513200, '阿坝县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232, 513200, '若尔盖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233, 513200, '红原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513300, 510000, '甘孜藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301, 513300, '康定市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322, 513300, '泸定县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323, 513300, '丹巴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324, 513300, '九龙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325, 513300, '雅江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326, 513300, '道孚县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327, 513300, '炉霍县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328, 513300, '甘孜县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329, 513300, '新龙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330, 513300, '德格县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331, 513300, '白玉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332, 513300, '石渠县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333, 513300, '色达县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334, 513300, '理塘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335, 513300, '巴塘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336, 513300, '乡城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337, 513300, '稻城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338, 513300, '得荣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513400, 510000, '凉山彝族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401, 513400, '西昌市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402, 513400, '会理市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422, 513400, '木里藏族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423, 513400, '盐源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424, 513400, '德昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426, 513400, '会东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427, 513400, '宁南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428, 513400, '普格县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429, 513400, '布拖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430, 513400, '金阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431, 513400, '昭觉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432, 513400, '喜德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433, 513400, '冕宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434, 513400, '越西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435, 513400, '甘洛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436, 513400, '美姑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437, 513400, '雷波县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520000, 1, '贵州省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520100, 520000, '贵阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520101, 520100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102, 520100, '南明区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103, 520100, '云岩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111, 520100, '花溪区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112, 520100, '乌当区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113, 520100, '白云区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115, 520100, '观山湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121, 520100, '开阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122, 520100, '息烽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123, 520100, '修文县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181, 520100, '清镇市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520200, 520000, '六盘水市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201, 520200, '钟山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203, 520200, '六枝特区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204, 520200, '水城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281, 520200, '盘州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520300, 520000, '遵义市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520301, 520300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302, 520300, '红花岗区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303, 520300, '汇川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304, 520300, '播州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322, 520300, '桐梓县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323, 520300, '绥阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324, 520300, '正安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325, 520300, '道真仡佬族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326, 520300, '务川仡佬族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327, 520300, '凤冈县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328, 520300, '湄潭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329, 520300, '余庆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330, 520300, '习水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381, 520300, '赤水市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382, 520300, '仁怀市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520400, 520000, '安顺市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520401, 520400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402, 520400, '西秀区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403, 520400, '平坝区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422, 520400, '普定县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423, 520400, '镇宁布依族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424, 520400, '关岭布依族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425, 520400, '紫云苗族布依族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520500, 520000, '毕节市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520501, 520500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502, 520500, '七星关区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521, 520500, '大方县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523, 520500, '金沙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524, 520500, '织金县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525, 520500, '纳雍县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526, 520500, '威宁彝族回族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527, 520500, '赫章县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581, 520500, '黔西市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520600, 520000, '铜仁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520601, 520600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602, 520600, '碧江区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603, 520600, '万山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621, 520600, '江口县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622, 520600, '玉屏侗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623, 520600, '石阡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624, 520600, '思南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625, 520600, '印江土家族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626, 520600, '德江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627, 520600, '沿河土家族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628, 520600, '松桃苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522300, 520000, '黔西南布依族苗族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301, 522300, '兴义市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302, 522300, '兴仁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323, 522300, '普安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324, 522300, '晴隆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325, 522300, '贞丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326, 522300, '望谟县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327, 522300, '册亨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328, 522300, '安龙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522600, 520000, '黔东南苗族侗族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601, 522600, '凯里市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622, 522600, '黄平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623, 522600, '施秉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624, 522600, '三穗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625, 522600, '镇远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626, 522600, '岑巩县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627, 522600, '天柱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628, 522600, '锦屏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629, 522600, '剑河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630, 522600, '台江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631, 522600, '黎平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632, 522600, '榕江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633, 522600, '从江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634, 522600, '雷山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635, 522600, '麻江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636, 522600, '丹寨县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522700, 520000, '黔南布依族苗族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701, 522700, '都匀市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702, 522700, '福泉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722, 522700, '荔波县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723, 522700, '贵定县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725, 522700, '瓮安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726, 522700, '独山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727, 522700, '平塘县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728, 522700, '罗甸县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729, 522700, '长顺县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522730, 522700, '龙里县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731, 522700, '惠水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732, 522700, '三都水族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530000, 1, '云南省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530100, 530000, '昆明市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530101, 530100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102, 530100, '五华区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103, 530100, '盘龙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111, 530100, '官渡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112, 530100, '西山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113, 530100, '东川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114, 530100, '呈贡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115, 530100, '晋宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124, 530100, '富民县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125, 530100, '宜良县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126, 530100, '石林彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127, 530100, '嵩明县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128, 530100, '禄劝彝族苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129, 530100, '寻甸回族彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181, 530100, '安宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530300, 530000, '曲靖市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530301, 530300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302, 530300, '麒麟区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303, 530300, '沾益区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304, 530300, '马龙区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322, 530300, '陆良县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323, 530300, '师宗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324, 530300, '罗平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325, 530300, '富源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326, 530300, '会泽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381, 530300, '宣威市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530400, 530000, '玉溪市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530401, 530400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402, 530400, '红塔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403, 530400, '江川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423, 530400, '通海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530424, 530400, '华宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425, 530400, '易门县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426, 530400, '峨山彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427, 530400, '新平彝族傣族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428, 530400, '元江哈尼族彝族傣族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530481, 530400, '澄江市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530500, 530000, '保山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530501, 530500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502, 530500, '隆阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521, 530500, '施甸县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523, 530500, '龙陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524, 530500, '昌宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581, 530500, '腾冲市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530600, 530000, '昭通市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530601, 530600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602, 530600, '昭阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621, 530600, '鲁甸县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622, 530600, '巧家县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623, 530600, '盐津县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624, 530600, '大关县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625, 530600, '永善县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530626, 530600, '绥江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627, 530600, '镇雄县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628, 530600, '彝良县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629, 530600, '威信县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530681, 530600, '水富市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530700, 530000, '丽江市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530701, 530700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702, 530700, '古城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721, 530700, '玉龙纳西族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722, 530700, '永胜县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723, 530700, '华坪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724, 530700, '宁蒗彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530800, 530000, '普洱市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530801, 530800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802, 530800, '思茅区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821, 530800, '宁洱哈尼族彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822, 530800, '墨江哈尼族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823, 530800, '景东彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824, 530800, '景谷傣族彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825, 530800, '镇沅彝族哈尼族拉祜族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826, 530800, '江城哈尼族彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530827, 530800, '孟连傣族拉祜族佤族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828, 530800, '澜沧拉祜族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829, 530800, '西盟佤族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530900, 530000, '临沧市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530901, 530900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902, 530900, '临翔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921, 530900, '凤庆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922, 530900, '云县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923, 530900, '永德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924, 530900, '镇康县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530925, 530900, '双江拉祜族佤族布朗族傣族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926, 530900, '耿马傣族佤族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927, 530900, '沧源佤族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532300, 530000, '楚雄彝族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301, 532300, '楚雄市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302, 532300, '禄丰市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322, 532300, '双柏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323, 532300, '牟定县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324, 532300, '南华县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325, 532300, '姚安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326, 532300, '大姚县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327, 532300, '永仁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328, 532300, '元谋县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329, 532300, '武定县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532500, 530000, '红河哈尼族彝族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501, 532500, '个旧市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502, 532500, '开远市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503, 532500, '蒙自市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504, 532500, '弥勒市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523, 532500, '屏边苗族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524, 532500, '建水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525, 532500, '石屏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527, 532500, '泸西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528, 532500, '元阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529, 532500, '红河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530, 532500, '金平苗族瑶族傣族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531, 532500, '绿春县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532532, 532500, '河口瑶族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532600, 530000, '文山壮族苗族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601, 532600, '文山市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622, 532600, '砚山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623, 532600, '西畴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624, 532600, '麻栗坡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625, 532600, '马关县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626, 532600, '丘北县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627, 532600, '广南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628, 532600, '富宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532800, 530000, '西双版纳傣族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801, 532800, '景洪市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822, 532800, '勐海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823, 532800, '勐腊县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532900, 530000, '大理白族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901, 532900, '大理市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922, 532900, '漾濞彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923, 532900, '祥云县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924, 532900, '宾川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925, 532900, '弥渡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926, 532900, '南涧彝族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927, 532900, '巍山彝族回族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928, 532900, '永平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929, 532900, '云龙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930, 532900, '洱源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931, 532900, '剑川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932, 532900, '鹤庆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533100, 530000, '德宏傣族景颇族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102, 533100, '瑞丽市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103, 533100, '芒市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122, 533100, '梁河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123, 533100, '盈江县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124, 533100, '陇川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533300, 530000, '怒江傈僳族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301, 533300, '泸水市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323, 533300, '福贡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533324, 533300, '贡山独龙族怒族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325, 533300, '兰坪白族普米族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533400, 530000, '迪庆藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401, 533400, '香格里拉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422, 533400, '德钦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423, 533400, '维西傈僳族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540000, 1, '西藏自治区', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540100, 540000, '拉萨市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540101, 540100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102, 540100, '城关区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103, 540100, '堆龙德庆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540104, 540100, '达孜区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121, 540100, '林周县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122, 540100, '当雄县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123, 540100, '尼木县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540124, 540100, '曲水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127, 540100, '墨竹工卡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540171, 540100, '格尔木藏青工业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540172, 540100, '拉萨经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540173, 540100, '西藏文化旅游创意园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540174, 540100, '达孜工业园区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540200, 540000, '日喀则市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202, 540200, '桑珠孜区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221, 540200, '南木林县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222, 540200, '江孜县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223, 540200, '定日县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224, 540200, '萨迦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225, 540200, '拉孜县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226, 540200, '昂仁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227, 540200, '谢通门县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228, 540200, '白朗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229, 540200, '仁布县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230, 540200, '康马县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231, 540200, '定结县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232, 540200, '仲巴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233, 540200, '亚东县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540234, 540200, '吉隆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235, 540200, '聂拉木县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236, 540200, '萨嘎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540237, 540200, '岗巴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540300, 540000, '昌都市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302, 540300, '卡若区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321, 540300, '江达县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322, 540300, '贡觉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323, 540300, '类乌齐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324, 540300, '丁青县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325, 540300, '察雅县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326, 540300, '八宿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327, 540300, '左贡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328, 540300, '芒康县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329, 540300, '洛隆县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330, 540300, '边坝县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540400, 540000, '林芝市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402, 540400, '巴宜区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421, 540400, '工布江达县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422, 540400, '米林县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423, 540400, '墨脱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424, 540400, '波密县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540425, 540400, '察隅县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540426, 540400, '朗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540500, 540000, '山南市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540501, 540500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502, 540500, '乃东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540521, 540500, '扎囊县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522, 540500, '贡嘎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540523, 540500, '桑日县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540524, 540500, '琼结县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540525, 540500, '曲松县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540526, 540500, '措美县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527, 540500, '洛扎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528, 540500, '加查县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529, 540500, '隆子县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530, 540500, '错那县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531, 540500, '浪卡子县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540600, 540000, '那曲市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602, 540600, '色尼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621, 540600, '嘉黎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622, 540600, '比如县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623, 540600, '聂荣县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624, 540600, '安多县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625, 540600, '申扎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626, 540600, '索县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627, 540600, '班戈县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628, 540600, '巴青县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629, 540600, '尼玛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630, 540600, '双湖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542500, 540000, '阿里地区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542521, 542500, '普兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522, 542500, '札达县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542523, 542500, '噶尔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542524, 542500, '日土县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542525, 542500, '革吉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526, 542500, '改则县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542527, 542500, '措勤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610000, 1, '陕西省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610100, 610000, '西安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610101, 610100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102, 610100, '新城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103, 610100, '碑林区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104, 610100, '莲湖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111, 610100, '灞桥区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112, 610100, '未央区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113, 610100, '雁塔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114, 610100, '阎良区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115, 610100, '临潼区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116, 610100, '长安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117, 610100, '高陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118, 610100, '鄠邑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122, 610100, '蓝田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124, 610100, '周至县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610200, 610000, '铜川市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610201, 610200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202, 610200, '王益区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203, 610200, '印台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204, 610200, '耀州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222, 610200, '宜君县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610300, 610000, '宝鸡市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610301, 610300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302, 610300, '渭滨区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303, 610300, '金台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304, 610300, '陈仓区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305, 610300, '凤翔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323, 610300, '岐山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324, 610300, '扶风县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326, 610300, '眉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327, 610300, '陇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328, 610300, '千阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329, 610300, '麟游县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330, 610300, '凤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331, 610300, '太白县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610400, 610000, '咸阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610401, 610400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402, 610400, '秦都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610403, 610400, '杨陵区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404, 610400, '渭城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422, 610400, '三原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423, 610400, '泾阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424, 610400, '乾县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425, 610400, '礼泉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426, 610400, '永寿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428, 610400, '长武县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429, 610400, '旬邑县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430, 610400, '淳化县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431, 610400, '武功县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481, 610400, '兴平市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482, 610400, '彬州市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610500, 610000, '渭南市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610501, 610500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502, 610500, '临渭区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503, 610500, '华州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610522, 610500, '潼关县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523, 610500, '大荔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524, 610500, '合阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525, 610500, '澄城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526, 610500, '蒲城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527, 610500, '白水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528, 610500, '富平县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581, 610500, '韩城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582, 610500, '华阴市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610600, 610000, '延安市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610601, 610600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602, 610600, '宝塔区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603, 610600, '安塞区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621, 610600, '延长县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622, 610600, '延川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625, 610600, '志丹县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626, 610600, '吴起县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610627, 610600, '甘泉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628, 610600, '富县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629, 610600, '洛川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630, 610600, '宜川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631, 610600, '黄龙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610632, 610600, '黄陵县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681, 610600, '子长市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610700, 610000, '汉中市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610701, 610700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702, 610700, '汉台区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703, 610700, '南郑区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722, 610700, '城固县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723, 610700, '洋县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724, 610700, '西乡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725, 610700, '勉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726, 610700, '宁强县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727, 610700, '略阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728, 610700, '镇巴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729, 610700, '留坝县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730, 610700, '佛坪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610800, 610000, '榆林市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610801, 610800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802, 610800, '榆阳区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803, 610800, '横山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822, 610800, '府谷县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824, 610800, '靖边县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825, 610800, '定边县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826, 610800, '绥德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827, 610800, '米脂县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828, 610800, '佳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610829, 610800, '吴堡县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830, 610800, '清涧县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831, 610800, '子洲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881, 610800, '神木市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610900, 610000, '安康市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610901, 610900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902, 610900, '汉滨区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921, 610900, '汉阴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922, 610900, '石泉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923, 610900, '宁陕县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924, 610900, '紫阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925, 610900, '岚皋县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926, 610900, '平利县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927, 610900, '镇坪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929, 610900, '白河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981, 610900, '旬阳市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611000, 610000, '商洛市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611001, 611000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002, 611000, '商州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021, 611000, '洛南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022, 611000, '丹凤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023, 611000, '商南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024, 611000, '山阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025, 611000, '镇安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026, 611000, '柞水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620000, 1, '甘肃省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620100, 620000, '兰州市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620101, 620100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102, 620100, '城关区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103, 620100, '七里河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104, 620100, '西固区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105, 620100, '安宁区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111, 620100, '红古区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121, 620100, '永登县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620122, 620100, '皋兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123, 620100, '榆中县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620171, 620100, '兰州新区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620200, 620000, '嘉峪关市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620201, 620200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620300, 620000, '金昌市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620301, 620300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302, 620300, '金川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321, 620300, '永昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620400, 620000, '白银市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620401, 620400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402, 620400, '白银区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403, 620400, '平川区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421, 620400, '靖远县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422, 620400, '会宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423, 620400, '景泰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620500, 620000, '天水市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620501, 620500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502, 620500, '秦州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503, 620500, '麦积区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521, 620500, '清水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522, 620500, '秦安县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523, 620500, '甘谷县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524, 620500, '武山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525, 620500, '张家川回族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620600, 620000, '武威市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620601, 620600, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602, 620600, '凉州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621, 620600, '民勤县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622, 620600, '古浪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623, 620600, '天祝藏族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620700, 620000, '张掖市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620701, 620700, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702, 620700, '甘州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721, 620700, '肃南裕固族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722, 620700, '民乐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723, 620700, '临泽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724, 620700, '高台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725, 620700, '山丹县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620800, 620000, '平凉市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620801, 620800, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802, 620800, '崆峒区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821, 620800, '泾川县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822, 620800, '灵台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823, 620800, '崇信县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825, 620800, '庄浪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826, 620800, '静宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881, 620800, '华亭市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620900, 620000, '酒泉市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620901, 620900, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902, 620900, '肃州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921, 620900, '金塔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922, 620900, '瓜州县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620923, 620900, '肃北蒙古族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620924, 620900, '阿克塞哈萨克族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981, 620900, '玉门市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982, 620900, '敦煌市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621000, 620000, '庆阳市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621001, 621000, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002, 621000, '西峰区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021, 621000, '庆城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022, 621000, '环县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023, 621000, '华池县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024, 621000, '合水县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025, 621000, '正宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026, 621000, '宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027, 621000, '镇原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621100, 620000, '定西市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621101, 621100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102, 621100, '安定区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121, 621100, '通渭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122, 621100, '陇西县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123, 621100, '渭源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124, 621100, '临洮县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125, 621100, '漳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126, 621100, '岷县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621200, 620000, '陇南市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621201, 621200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202, 621200, '武都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221, 621200, '成县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222, 621200, '文县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223, 621200, '宕昌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224, 621200, '康县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225, 621200, '西和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226, 621200, '礼县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227, 621200, '徽县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228, 621200, '两当县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622900, 620000, '临夏回族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901, 622900, '临夏市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921, 622900, '临夏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922, 622900, '康乐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923, 622900, '永靖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924, 622900, '广河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925, 622900, '和政县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926, 622900, '东乡族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927, 622900, '积石山保安族东乡族撒拉族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623000, 620000, '甘南藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001, 623000, '合作市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021, 623000, '临潭县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022, 623000, '卓尼县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023, 623000, '舟曲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024, 623000, '迭部县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025, 623000, '玛曲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026, 623000, '碌曲县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027, 623000, '夏河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630000, 1, '青海省', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630100, 630000, '西宁市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630101, 630100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102, 630100, '城东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103, 630100, '城中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104, 630100, '城西区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105, 630100, '城北区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106, 630100, '湟中区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121, 630100, '大通回族土族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123, 630100, '湟源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630200, 630000, '海东市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202, 630200, '乐都区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203, 630200, '平安区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222, 630200, '民和回族土族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223, 630200, '互助土族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224, 630200, '化隆回族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225, 630200, '循化撒拉族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632200, 630000, '海北藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221, 632200, '门源回族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222, 632200, '祁连县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632223, 632200, '海晏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632224, 632200, '刚察县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632300, 630000, '黄南藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301, 632300, '同仁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322, 632300, '尖扎县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323, 632300, '泽库县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632324, 632300, '河南蒙古族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632500, 630000, '海南藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521, 632500, '共和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632522, 632500, '同德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523, 632500, '贵德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524, 632500, '兴海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632525, 632500, '贵南县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632600, 630000, '果洛藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621, 632600, '玛沁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622, 632600, '班玛县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623, 632600, '甘德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624, 632600, '达日县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632625, 632600, '久治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632626, 632600, '玛多县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632700, 630000, '玉树藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701, 632700, '玉树市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722, 632700, '杂多县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723, 632700, '称多县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632724, 632700, '治多县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725, 632700, '囊谦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632726, 632700, '曲麻莱县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632800, 630000, '海西蒙古族藏族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801, 632800, '格尔木市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802, 632800, '德令哈市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632803, 632800, '茫崖市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632821, 632800, '乌兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822, 632800, '都兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823, 632800, '天峻县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632857, 632800, '大柴旦行政委员会', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640000, 1, '宁夏回族自治区', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640100, 640000, '银川市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640101, 640100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104, 640100, '兴庆区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105, 640100, '西夏区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106, 640100, '金凤区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121, 640100, '永宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122, 640100, '贺兰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181, 640100, '灵武市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640200, 640000, '石嘴山市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640201, 640200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202, 640200, '大武口区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205, 640200, '惠农区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221, 640200, '平罗县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640300, 640000, '吴忠市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640301, 640300, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302, 640300, '利通区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303, 640300, '红寺堡区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323, 640300, '盐池县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324, 640300, '同心县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381, 640300, '青铜峡市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640400, 640000, '固原市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640401, 640400, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402, 640400, '原州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422, 640400, '西吉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423, 640400, '隆德县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424, 640400, '泾源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425, 640400, '彭阳县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640500, 640000, '中卫市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640501, 640500, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502, 640500, '沙坡头区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521, 640500, '中宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522, 640500, '海原县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650000, 1, '新疆维吾尔自治区', 1, '2022-11-09 10:07:58', '2022-11-09 10:07:58'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650100, 650000, '乌鲁木齐市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650101, 650100, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102, 650100, '天山区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103, 650100, '沙依巴克区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104, 650100, '新市区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105, 650100, '水磨沟区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106, 650100, '头屯河区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107, 650100, '达坂城区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109, 650100, '米东区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121, 650100, '乌鲁木齐县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650200, 650000, '克拉玛依市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650201, 650200, '市辖区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650202, 650200, '独山子区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203, 650200, '克拉玛依区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650204, 650200, '白碱滩区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650205, 650200, '乌尔禾区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650400, 650000, '吐鲁番市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402, 650400, '高昌区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421, 650400, '鄯善县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422, 650400, '托克逊县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650500, 650000, '哈密市', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502, 650500, '伊州区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521, 650500, '巴里坤哈萨克自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522, 650500, '伊吾县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652300, 650000, '昌吉回族自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301, 652300, '昌吉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302, 652300, '阜康市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323, 652300, '呼图壁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324, 652300, '玛纳斯县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325, 652300, '奇台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327, 652300, '吉木萨尔县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328, 652300, '木垒哈萨克自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652700, 650000, '博尔塔拉蒙古自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701, 652700, '博乐市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652702, 652700, '阿拉山口市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722, 652700, '精河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723, 652700, '温泉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652800, 650000, '巴音郭楞蒙古自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801, 652800, '库尔勒市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822, 652800, '轮台县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823, 652800, '尉犁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824, 652800, '若羌县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825, 652800, '且末县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826, 652800, '焉耆回族自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827, 652800, '和静县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828, 652800, '和硕县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829, 652800, '博湖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652871, 652800, '库尔勒经济技术开发区', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652900, 650000, '阿克苏地区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901, 652900, '阿克苏市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902, 652900, '库车市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922, 652900, '温宿县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924, 652900, '沙雅县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925, 652900, '新和县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926, 652900, '拜城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927, 652900, '乌什县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928, 652900, '阿瓦提县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652929, 652900, '柯坪县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653000, 650000, '克孜勒苏柯尔克孜自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001, 653000, '阿图什市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022, 653000, '阿克陶县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653023, 653000, '阿合奇县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024, 653000, '乌恰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653100, 650000, '喀什地区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101, 653100, '喀什市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121, 653100, '疏附县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122, 653100, '疏勒县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123, 653100, '英吉沙县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124, 653100, '泽普县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125, 653100, '莎车县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126, 653100, '叶城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127, 653100, '麦盖提县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128, 653100, '岳普湖县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129, 653100, '伽师县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130, 653100, '巴楚县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131, 653100, '塔什库尔干塔吉克自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653200, 650000, '和田地区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201, 653200, '和田市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221, 653200, '和田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222, 653200, '墨玉县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223, 653200, '皮山县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224, 653200, '洛浦县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225, 653200, '策勒县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226, 653200, '于田县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227, 653200, '民丰县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654000, 650000, '伊犁哈萨克自治州', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002, 654000, '伊宁市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003, 654000, '奎屯市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004, 654000, '霍尔果斯市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021, 654000, '伊宁县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022, 654000, '察布查尔锡伯自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023, 654000, '霍城县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024, 654000, '巩留县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025, 654000, '新源县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026, 654000, '昭苏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027, 654000, '特克斯县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028, 654000, '尼勒克县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654200, 650000, '塔城地区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201, 654200, '塔城市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202, 654200, '乌苏市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203, 654200, '沙湾市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221, 654200, '额敏县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224, 654200, '托里县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225, 654200, '裕民县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226, 654200, '和布克赛尔蒙古自治县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654300, 650000, '阿勒泰地区', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301, 654300, '阿勒泰市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321, 654300, '布尔津县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322, 654300, '富蕴县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323, 654300, '福海县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324, 654300, '哈巴河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325, 654300, '青河县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326, 654300, '吉木乃县', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659000, 650000, '自治区直辖县级行政区划', 2, '2022-11-09 10:07:58', '2022-11-09 10:19:44'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001, 659000, '石河子市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002, 659000, '阿拉尔市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003, 659000, '图木舒克市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004, 659000, '五家渠市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659005, 659000, '北屯市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006, 659000, '铁门关市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659007, 659000, '双河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659008, 659000, '可克达拉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009, 659000, '昆玉市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659010, 659000, '胡杨河市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659011, 659000, '新星市', 3, '2022-11-09 10:32:31', '2022-11-09 11:06:18'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101001, 110101, '东华门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101002, 110101, '景山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101003, 110101, '交道口街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101004, 110101, '安定门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101005, 110101, '北新桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101006, 110101, '东四街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101007, 110101, '朝阳门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101008, 110101, '建国门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101009, 110101, '东直门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101010, 110101, '和平里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101011, 110101, '前门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101012, 110101, '崇文门外街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101013, 110101, '东花市街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101014, 110101, '龙潭街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101015, 110101, '体育馆路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101016, 110101, '天坛街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110101017, 110101, '永定门外街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102001, 110102, '西长安街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102003, 110102, '新街口街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102007, 110102, '月坛街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102009, 110102, '展览路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102010, 110102, '德胜街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102011, 110102, '金融街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102012, 110102, '什刹海街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102013, 110102, '大栅栏街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102014, 110102, '天桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102015, 110102, '椿树街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102016, 110102, '陶然亭街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102017, 110102, '广安门内街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102018, 110102, '牛街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102019, 110102, '白纸坊街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110102020, 110102, '广安门外街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105001, 110105, '建外街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105002, 110105, '朝外街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105003, 110105, '呼家楼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105004, 110105, '三里屯街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105005, 110105, '左家庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105006, 110105, '香河园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105007, 110105, '和平街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105008, 110105, '安贞街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105009, 110105, '亚运村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105010, 110105, '小关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105011, 110105, '酒仙桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105012, 110105, '麦子店街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105013, 110105, '团结湖街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105014, 110105, '六里屯街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105015, 110105, '八里庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105016, 110105, '双井街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105017, 110105, '劲松街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105018, 110105, '潘家园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105019, 110105, '垡头街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105021, 110105, '南磨房地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105022, 110105, '高碑店地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105023, 110105, '将台地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105024, 110105, '太阳宫地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105025, 110105, '大屯街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105026, 110105, '望京街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105027, 110105, '小红门地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105028, 110105, '十八里店地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105029, 110105, '平房地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105030, 110105, '东风地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105031, 110105, '奥运村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105032, 110105, '来广营地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105033, 110105, '常营地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105034, 110105, '三间房地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105035, 110105, '管庄地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105036, 110105, '金盏地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105037, 110105, '孙河地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105038, 110105, '崔各庄地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105039, 110105, '东坝地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105040, 110105, '黑庄户地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105041, 110105, '豆各庄地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105042, 110105, '王四营地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105043, 110105, '东湖街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110105400, 110105, '首都机场街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106001, 110106, '右安门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106002, 110106, '太平桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106003, 110106, '西罗园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106004, 110106, '大红门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106005, 110106, '南苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106006, 110106, '东高地街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106007, 110106, '东铁匠营街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106008, 110106, '六里桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106009, 110106, '丰台街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106010, 110106, '新村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106011, 110106, '长辛店街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106012, 110106, '云岗街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106013, 110106, '方庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106014, 110106, '宛平街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106015, 110106, '马家堡街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106016, 110106, '和义街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106017, 110106, '卢沟桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106018, 110106, '花乡街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106020, 110106, '成寿寺街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106021, 110106, '石榴庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106022, 110106, '玉泉营街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106023, 110106, '看丹街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106024, 110106, '五里店街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106025, 110106, '青塔街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106100, 110106, '北宫镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110106101, 110106, '王佐镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107001, 110107, '八宝山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107002, 110107, '老山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107003, 110107, '八角街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107004, 110107, '古城街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107005, 110107, '苹果园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107006, 110107, '金顶街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107009, 110107, '广宁街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107010, 110107, '五里坨街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110107011, 110107, '鲁谷街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108001, 110108, '万寿路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108002, 110108, '永定路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108003, 110108, '羊坊店街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108004, 110108, '甘家口街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108005, 110108, '八里庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108006, 110108, '紫竹院街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108007, 110108, '北下关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108008, 110108, '北太平庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108010, 110108, '学院路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108011, 110108, '中关村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108012, 110108, '海淀街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108013, 110108, '青龙桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108014, 110108, '清华园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108015, 110108, '燕园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108016, 110108, '香山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108017, 110108, '清河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108018, 110108, '花园路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108019, 110108, '西三旗街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108020, 110108, '马连洼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108021, 110108, '田村路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108022, 110108, '上地街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108023, 110108, '万柳地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108024, 110108, '东升地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108025, 110108, '曙光街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108026, 110108, '温泉地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108027, 110108, '四季青地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108028, 110108, '西北旺地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108029, 110108, '苏家坨地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110108030, 110108, '上庄地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109001, 110109, '大峪街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109002, 110109, '城子街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109003, 110109, '东辛房街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109004, 110109, '大台街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109005, 110109, '王平地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109006, 110109, '永定地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109007, 110109, '龙泉地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109101, 110109, '潭柘寺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109104, 110109, '军庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109105, 110109, '雁翅镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109106, 110109, '斋堂镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109107, 110109, '清水镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110109108, 110109, '妙峰山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111001, 110111, '城关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111002, 110111, '新镇街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111004, 110111, '向阳街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111005, 110111, '东风街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111006, 110111, '迎风街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111007, 110111, '星城街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111008, 110111, '良乡地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111009, 110111, '周口店地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111010, 110111, '琉璃河地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111011, 110111, '拱辰街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111012, 110111, '西潞街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111101, 110111, '阎村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111103, 110111, '窦店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111104, 110111, '石楼镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111105, 110111, '长阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111107, 110111, '河北镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111108, 110111, '长沟镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111109, 110111, '大石窝镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111110, 110111, '张坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111111, 110111, '十渡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111112, 110111, '青龙湖镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111115, 110111, '韩村河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111208, 110111, '霞云岭乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111209, 110111, '南窖乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111210, 110111, '佛子庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111211, 110111, '大安山乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111212, 110111, '史家营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110111213, 110111, '蒲洼乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112001, 110112, '中仓街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112002, 110112, '新华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112003, 110112, '北苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112004, 110112, '玉桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112007, 110112, '潞源街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112008, 110112, '通运街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112009, 110112, '文景街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112010, 110112, '九棵树街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112011, 110112, '临河里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112012, 110112, '杨庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112013, 110112, '潞邑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112104, 110112, '宋庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112105, 110112, '张家湾镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112106, 110112, '漷县镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112109, 110112, '马驹桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112110, 110112, '西集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112114, 110112, '台湖镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112117, 110112, '永乐店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112119, 110112, '潞城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112120, 110112, '永顺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112121, 110112, '梨园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110112209, 110112, '于家务回族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113001, 110113, '胜利街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113002, 110113, '光明街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113003, 110113, '仁和地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113004, 110113, '后沙峪地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113005, 110113, '天竺地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113006, 110113, '杨镇地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113007, 110113, '牛栏山地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113008, 110113, '南法信地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113009, 110113, '马坡地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113010, 110113, '石园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113011, 110113, '空港街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113012, 110113, '双丰街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113013, 110113, '旺泉街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113101, 110113, '高丽营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113104, 110113, '李桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113105, 110113, '李遂镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113106, 110113, '南彩镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113108, 110113, '北务镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113109, 110113, '大孙各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113110, 110113, '张镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113111, 110113, '龙湾屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113112, 110113, '木林镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113113, 110113, '北小营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113115, 110113, '北石槽镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110113116, 110113, '赵全营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114001, 110114, '城北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114002, 110114, '南口地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114003, 110114, '马池口地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114004, 110114, '沙河地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114005, 110114, '城南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114007, 110114, '东小口地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114008, 110114, '天通苑北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114009, 110114, '天通苑南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114010, 110114, '霍营街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114011, 110114, '回龙观街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114012, 110114, '龙泽园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114013, 110114, '史各庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114104, 110114, '阳坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114110, 110114, '小汤山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114111, 110114, '南邵镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114112, 110114, '崔村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114113, 110114, '百善镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114115, 110114, '北七家镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114116, 110114, '兴寿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114118, 110114, '流村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114119, 110114, '十三陵镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110114120, 110114, '延寿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115001, 110115, '兴丰街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115002, 110115, '林校路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115003, 110115, '清源街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115004, 110115, '亦庄地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115005, 110115, '黄村地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115006, 110115, '旧宫地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115007, 110115, '西红门地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115008, 110115, '瀛海地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115009, 110115, '观音寺街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115010, 110115, '天宫院街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115011, 110115, '高米店街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115012, 110115, '荣华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115013, 110115, '博兴街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115103, 110115, '青云店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115104, 110115, '采育镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115105, 110115, '安定镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115106, 110115, '礼贤镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115107, 110115, '榆垡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115108, 110115, '庞各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115109, 110115, '北臧村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115110, 110115, '魏善庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115111, 110115, '长子营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115403, 110115, '北京经济技术开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115404, 110115, '中关村国家自主创新示范区大兴生物医药产业基地', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115405, 110115, '国家新媒体产业基地', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110115406, 110115, '大兴国际机场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116001, 110116, '泉河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116002, 110116, '龙山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116003, 110116, '怀柔地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116004, 110116, '雁栖地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116005, 110116, '庙城地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116102, 110116, '北房镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116103, 110116, '杨宋镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116105, 110116, '桥梓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116106, 110116, '怀北镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116107, 110116, '汤河口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116108, 110116, '渤海镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116109, 110116, '九渡河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116110, 110116, '琉璃庙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116111, 110116, '宝山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116211, 110116, '长哨营满族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116213, 110116, '喇叭沟门满族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110116400, 110116, '北京雁栖经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117001, 110117, '滨河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117002, 110117, '兴谷街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117003, 110117, '渔阳地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117004, 110117, '峪口地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117005, 110117, '马坊地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117006, 110117, '金海湖地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117101, 110117, '东高村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117102, 110117, '山东庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117104, 110117, '南独乐河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117105, 110117, '大华山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117106, 110117, '夏各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117108, 110117, '马昌营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117110, 110117, '王辛庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117111, 110117, '大兴庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117112, 110117, '刘家店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117114, 110117, '镇罗营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117213, 110117, '黄松峪乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110117214, 110117, '熊儿寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118001, 110118, '鼓楼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118002, 110118, '果园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118003, 110118, '檀营地区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118100, 110118, '密云镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118101, 110118, '溪翁庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118102, 110118, '西田各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118103, 110118, '十里堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118104, 110118, '河南寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118105, 110118, '巨各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118106, 110118, '穆家峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118107, 110118, '太师屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118108, 110118, '高岭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118109, 110118, '不老屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118110, 110118, '冯家峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118111, 110118, '古北口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118112, 110118, '大城子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118113, 110118, '东邵渠镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118114, 110118, '北庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118115, 110118, '新城子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118116, 110118, '石城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110118400, 110118, '中关村科技园区密云园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119001, 110119, '百泉街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119002, 110119, '香水园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119003, 110119, '儒林街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119100, 110119, '延庆镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119101, 110119, '康庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119102, 110119, '八达岭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119103, 110119, '永宁镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119104, 110119, '旧县镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119105, 110119, '张山营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119106, 110119, '四海镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119107, 110119, '千家店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119108, 110119, '沈家营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119109, 110119, '大榆树镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119110, 110119, '井庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119200, 110119, '大庄科乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119201, 110119, '刘斌堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119202, 110119, '香营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (110119203, 110119, '珍珠泉乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120101001, 120101, '劝业场街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120101002, 120101, '小白楼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120101003, 120101, '五大道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120101004, 120101, '新兴街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120101005, 120101, '南营门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120101006, 120101, '南市街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102001, 120102, '大王庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102002, 120102, '大直沽街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102003, 120102, '中山门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102004, 120102, '富民路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102005, 120102, '二号桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102006, 120102, '春华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102007, 120102, '唐家口街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102008, 120102, '向阳楼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102009, 120102, '常州道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102010, 120102, '上杭路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102011, 120102, '东新街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102012, 120102, '鲁山道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120102013, 120102, '天津铁厂街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103001, 120103, '大营门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103002, 120103, '下瓦房街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103003, 120103, '桃园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103004, 120103, '挂甲寺街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103005, 120103, '马场街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103006, 120103, '越秀路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103007, 120103, '友谊路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103008, 120103, '天塔街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103009, 120103, '尖山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103010, 120103, '陈塘庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103011, 120103, '柳林街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103012, 120103, '东海街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103013, 120103, '梅江街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120103014, 120103, '太湖路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104001, 120104, '长虹街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104002, 120104, '鼓楼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104003, 120104, '兴南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104004, 120104, '广开街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104005, 120104, '万兴街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104006, 120104, '学府街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104007, 120104, '向阳路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104008, 120104, '嘉陵道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104009, 120104, '王顶堤街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104010, 120104, '水上公园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104011, 120104, '体育中心街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120104012, 120104, '华苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105001, 120105, '光复道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105002, 120105, '望海楼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105003, 120105, '鸿顺里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105004, 120105, '新开河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105005, 120105, '铁东路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105006, 120105, '建昌道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105007, 120105, '宁园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105008, 120105, '王串场街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105009, 120105, '江都路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120105010, 120105, '月牙河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106001, 120106, '西于庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106003, 120106, '咸阳北路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106004, 120106, '丁字沽街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106005, 120106, '西沽街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106006, 120106, '三条石街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106008, 120106, '邵公庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106009, 120106, '芥园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106010, 120106, '铃铛阁街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120106012, 120106, '和苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110001, 120110, '张贵庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110002, 120110, '丰年村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110003, 120110, '万新街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110004, 120110, '无瑕街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110005, 120110, '新立街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110006, 120110, '华明街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110007, 120110, '金钟街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110008, 120110, '军粮城街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110009, 120110, '金桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110010, 120110, '华新街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110011, 120110, '东丽湖街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110400, 120110, '天津经济技术开发区西区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110401, 120110, '天津航空物流区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110402, 120110, '天津空港经济区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110403, 120110, '东丽区经济技术开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110405, 120110, '综合保税区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110406, 120110, '航空新城', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120110407, 120110, '服务滨海新区建设管理委员会', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111001, 120111, '西营门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111002, 120111, '李七庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111003, 120111, '赤龙南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111005, 120111, '津门湖街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111100, 120111, '中北镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111101, 120111, '杨柳青镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111102, 120111, '辛口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111103, 120111, '张家窝镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111104, 120111, '精武镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111105, 120111, '大寺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111106, 120111, '王稳庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111400, 120111, '天津经济技术开发区微电子小区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111401, 120111, '新技术产业园区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120111450, 120111, '西青区开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112001, 120112, '双新街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112002, 120112, '双林街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112003, 120112, '海棠街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112100, 120112, '咸水沽镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112101, 120112, '葛沽镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112102, 120112, '小站镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112103, 120112, '双港镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112104, 120112, '辛庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112106, 120112, '双桥河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112107, 120112, '八里台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112108, 120112, '北闸口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112403, 120112, '长青办事处', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112404, 120112, '津南开发区东区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112405, 120112, '津南开发区西区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120112501, 120112, '津南国家农业园区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113001, 120113, '果园新村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113002, 120113, '集贤里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113003, 120113, '普东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113004, 120113, '瑞景街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113005, 120113, '佳荣里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113006, 120113, '青源街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113007, 120113, '广源街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113008, 120113, '双环邨街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113100, 120113, '天穆镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113101, 120113, '北仓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113102, 120113, '双街镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113103, 120113, '双口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113104, 120113, '青光镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113106, 120113, '宜兴埠镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113107, 120113, '小淀镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113108, 120113, '大张庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113111, 120113, '西堤头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113400, 120113, '科技园区北区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113401, 120113, '科技园区南区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113402, 120113, '天津医药医疗器械工业园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113403, 120113, '天津陆路港物流装备产业园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113404, 120113, '天津风电产业园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113500, 120113, '红旗农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120113501, 120113, '曙光农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114001, 120114, '杨村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114002, 120114, '下朱庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114003, 120114, '东蒲洼街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114004, 120114, '黄庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114005, 120114, '徐官屯街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114006, 120114, '运河西街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114101, 120114, '梅厂镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114102, 120114, '大碱厂镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114103, 120114, '崔黄口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114104, 120114, '大良镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114105, 120114, '下伍旗镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114106, 120114, '南蔡村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114107, 120114, '大孟庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114108, 120114, '泗村店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114109, 120114, '河西务镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114110, 120114, '城关镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114111, 120114, '东马圈镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114112, 120114, '黄花店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114113, 120114, '石各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114114, 120114, '王庆坨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114115, 120114, '汊沽港镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114116, 120114, '河北屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114117, 120114, '上马台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114118, 120114, '大王古庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114119, 120114, '陈咀镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114120, 120114, '豆张庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114121, 120114, '曹子里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114122, 120114, '大黄堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114123, 120114, '高村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114124, 120114, '白古屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114400, 120114, '天津经济技术开发区逸仙科学工业园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114401, 120114, '武清经济技术开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114403, 120114, '天津京滨工业园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114404, 120114, '天津京津电子商务产业园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114405, 120114, '天津武清汽车产业园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114406, 120114, '天津京津科技谷', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120114407, 120114, '京津高村科技创新园', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115001, 120115, '海滨街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115002, 120115, '宝平街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115003, 120115, '钰华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115006, 120115, '周良街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115007, 120115, '潮阳街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115008, 120115, '朝霞街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115101, 120115, '大口屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115103, 120115, '王卜庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115104, 120115, '方家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115105, 120115, '林亭口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115106, 120115, '八门城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115107, 120115, '大钟庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115108, 120115, '新安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115111, 120115, '霍各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115113, 120115, '新开口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115115, 120115, '大唐庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115119, 120115, '牛道口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115120, 120115, '史各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115121, 120115, '郝各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115123, 120115, '牛家牌镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115124, 120115, '尔王庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115125, 120115, '黄庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115126, 120115, '口东镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115127, 120115, '大白庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115456, 120115, '宝坻经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120115457, 120115, '京津中关村科技城', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116001, 120116, '塘沽街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116005, 120116, '杭州道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116006, 120116, '新河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116007, 120116, '大沽街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116008, 120116, '新北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116009, 120116, '北塘街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116011, 120116, '胡家园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116012, 120116, '新港街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116013, 120116, '新村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116014, 120116, '天津经济技术开发区东区泰达街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116031, 120116, '汉沽街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116032, 120116, '寨上街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116033, 120116, '茶淀街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116051, 120116, '大港街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116053, 120116, '古林街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116054, 120116, '海滨街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116100, 120116, '新城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116135, 120116, '杨家泊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116156, 120116, '太平镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116157, 120116, '小王庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116158, 120116, '中塘镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116400, 120116, '天津经济技术开发区(其他片区)', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116401, 120116, '天津港保税区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116402, 120116, '天津滨海新区高新技术产业开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116403, 120116, '东疆保税港区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120116406, 120116, '中新天津生态城', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117001, 120117, '芦台街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117002, 120117, '桥北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117102, 120117, '宁河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117103, 120117, '苗庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117104, 120117, '丰台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117105, 120117, '岳龙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117106, 120117, '板桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117107, 120117, '潘庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117109, 120117, '造甲城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117110, 120117, '七里海镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117111, 120117, '大北涧沽镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117112, 120117, '东棘坨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117113, 120117, '北淮淀镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117114, 120117, '俵口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117115, 120117, '廉庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117400, 120117, '宁河区贸易开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117401, 120117, '宁河区经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117402, 120117, '天津未来科技城天津经济技术开发区片区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117403, 120117, '天津未来科技城滨海高新区片区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117451, 120117, '天津未来科技城宁河片区现代产业区组团', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117452, 120117, '天津未来科技城宁河片区潘庄工业区组团', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120117453, 120117, '天津未来科技城宁河片区北淮淀组团', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118001, 120118, '华康街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118002, 120118, '朝阳街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118100, 120118, '静海镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118101, 120118, '唐官屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118102, 120118, '独流镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118103, 120118, '王口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118104, 120118, '台头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118105, 120118, '子牙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118106, 120118, '陈官屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118107, 120118, '中旺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118108, 120118, '大邱庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118109, 120118, '蔡公庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118110, 120118, '梁头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118111, 120118, '团泊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118112, 120118, '双塘镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118113, 120118, '大丰堆镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118114, 120118, '沿庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118115, 120118, '西翟庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118200, 120118, '良王庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118201, 120118, '杨成庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118400, 120118, '天津静海经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118402, 120118, '天津子牙循环经济产业区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120118403, 120118, '团泊新城', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119001, 120119, '文昌街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119100, 120119, '渔阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119101, 120119, '洇溜镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119102, 120119, '官庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119103, 120119, '马伸桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119104, 120119, '下营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119105, 120119, '邦均镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119106, 120119, '别山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119108, 120119, '尤古庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119109, 120119, '上仓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119111, 120119, '下仓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119112, 120119, '罗庄子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119113, 120119, '白涧镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119115, 120119, '侯家营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119116, 120119, '桑梓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119117, 120119, '东施古镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119118, 120119, '下窝头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119119, 120119, '杨津庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119120, 120119, '出头岭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119121, 120119, '西龙虎峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119122, 120119, '穿芳峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119123, 120119, '东二营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119124, 120119, '许家台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119125, 120119, '礼明庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119126, 120119, '东赵各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119127, 120119, '州河湾镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119203, 120119, '孙各庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (120119401, 120119, '天津市蓟州区京津州河科技产业园管理委员会', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102001, 130102, '建北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102002, 130102, '青园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102003, 130102, '广安街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102004, 130102, '育才街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102005, 130102, '跃进街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102007, 130102, '河东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102010, 130102, '长丰街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102011, 130102, '谈固街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102012, 130102, '中山东路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102013, 130102, '阜康街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102014, 130102, '建安街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102015, 130102, '胜利北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102100, 130102, '西兆通镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102101, 130102, '南村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102102, 130102, '高营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130102103, 130102, '桃园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104001, 130104, '东里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104002, 130104, '中山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104004, 130104, '南长街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104005, 130104, '维明街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104007, 130104, '友谊街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104008, 130104, '红旗街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104009, 130104, '新石街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104010, 130104, '苑东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104011, 130104, '西里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104012, 130104, '振头街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104013, 130104, '留营街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104014, 130104, '长兴街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104015, 130104, '彭后街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104016, 130104, '东风街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104017, 130104, '东华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104018, 130104, '休门街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130104019, 130104, '汇通街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105001, 130105, '革新街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105003, 130105, '新华路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105004, 130105, '宁安街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105005, 130105, '东焦街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105006, 130105, '西苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105007, 130105, '合作路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105008, 130105, '联盟街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105009, 130105, '石岗街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105011, 130105, '天苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105012, 130105, '北苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105013, 130105, '赵陵铺路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105014, 130105, '西三庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105015, 130105, '大郭街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105016, 130105, '杜北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130105017, 130105, '赵佗路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130107001, 130107, '矿市街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130107002, 130107, '四微街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130107100, 130107, '贾庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130107101, 130107, '凤山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130107200, 130107, '横涧乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108001, 130108, '裕兴街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108002, 130108, '裕强街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108003, 130108, '东苑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108004, 130108, '建通街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108005, 130108, '槐底街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108006, 130108, '裕华路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108007, 130108, '裕东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108008, 130108, '裕翔街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108009, 130108, '建华南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130108101, 130108, '方村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109100, 130109, '廉州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109101, 130109, '兴安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109102, 130109, '贾市庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109103, 130109, '南营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109104, 130109, '梅花镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109105, 130109, '岗上镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109107, 130109, '南董镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109108, 130109, '张家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109109, 130109, '南孟镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109110, 130109, '增村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109111, 130109, '常安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109112, 130109, '西关镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109200, 130109, '九门回族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130109500, 130109, '石家庄经济技术开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110100, 130110, '获鹿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110101, 130110, '铜冶镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110102, 130110, '寺家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110103, 130110, '上庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110104, 130110, '李村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110105, 130110, '宜安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110106, 130110, '黄壁庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110107, 130110, '大河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110108, 130110, '山尹村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110200, 130110, '石井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110201, 130110, '白鹿泉乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110202, 130110, '上寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130110500, 130110, '河北鹿泉经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111100, 130111, '栾城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111103, 130111, '冶河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111104, 130111, '窦妪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111105, 130111, '楼底镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111200, 130111, '南高乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111201, 130111, '柳林屯乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130111202, 130111, '西营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121100, 130121, '微水镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121101, 130121, '上安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121102, 130121, '天长镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121103, 130121, '秀林镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121104, 130121, '南峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121105, 130121, '威州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121106, 130121, '小作镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121107, 130121, '南障城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121108, 130121, '苍岩山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121109, 130121, '测鱼镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121200, 130121, '吴家窑乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121201, 130121, '北正乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121202, 130121, '于家乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121203, 130121, '孙庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121204, 130121, '南陉乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121205, 130121, '辛庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130121206, 130121, '南王庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123001, 130123, '诸福屯街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123002, 130123, '三里屯街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123100, 130123, '正定镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123102, 130123, '新城铺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123103, 130123, '新安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123104, 130123, '南岗镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123105, 130123, '曲阳桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123200, 130123, '南牛乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123201, 130123, '南楼乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130123202, 130123, '西平乐乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125100, 130125, '龙州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125101, 130125, '南桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125102, 130125, '上碑镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125103, 130125, '口头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125200, 130125, '独羊岗乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125201, 130125, '安香乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125202, 130125, '只里乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125203, 130125, '市同乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125204, 130125, '翟营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125205, 130125, '城寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125206, 130125, '上方乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125207, 130125, '玉亭乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125208, 130125, '北河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125209, 130125, '上闫庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125210, 130125, '九口子乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130125400, 130125, '开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126100, 130126, '灵寿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126101, 130126, '青同镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126102, 130126, '塔上镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126103, 130126, '陈庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126104, 130126, '慈峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126105, 130126, '岔头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126200, 130126, '三圣院乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126201, 130126, '北洼乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126202, 130126, '牛城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126203, 130126, '狗台乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126204, 130126, '南寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126205, 130126, '南燕川乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126206, 130126, '北谭庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126207, 130126, '寨头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130126208, 130126, '南营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130127100, 130127, '高邑镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130127101, 130127, '大营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130127102, 130127, '富村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130127103, 130127, '万城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130127104, 130127, '中韩镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130128100, 130128, '深泽镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130128101, 130128, '铁杆镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130128102, 130128, '赵八镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130128103, 130128, '大桥头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130128200, 130128, '白庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130128201, 130128, '留村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129100, 130129, '赞皇镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129101, 130129, '院头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129102, 130129, '南邢郭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129103, 130129, '嶂石岩镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129200, 130129, '西龙门乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129202, 130129, '南清河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129203, 130129, '西阳泽乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129204, 130129, '土门乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129205, 130129, '黄北坪乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129207, 130129, '许亭乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130129208, 130129, '张楞乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130100, 130130, '无极镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130101, 130130, '七汲镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130102, 130130, '张段固镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130103, 130130, '北苏镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130104, 130130, '郭庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130105, 130130, '大陈镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130200, 130130, '高头回族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130201, 130130, '郝庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130202, 130130, '东侯坊乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130203, 130130, '里城道乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130130204, 130130, '南流乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131100, 130131, '平山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131101, 130131, '东回舍镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131102, 130131, '温塘镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131103, 130131, '南甸镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131104, 130131, '岗南镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131105, 130131, '古月镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131106, 130131, '下槐镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131107, 130131, '孟家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131108, 130131, '小觉镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131109, 130131, '蛟潭庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131110, 130131, '西柏坡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131111, 130131, '下口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131200, 130131, '西大吾乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131201, 130131, '上三汲乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131202, 130131, '两河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131203, 130131, '东王坡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131204, 130131, '苏家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131205, 130131, '宅北乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131207, 130131, '北冶乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131209, 130131, '上观音堂乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131210, 130131, '杨家桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131211, 130131, '营里乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130131212, 130131, '合河口乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132001, 130132, '城区街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132100, 130132, '槐阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132101, 130132, '殷村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132102, 130132, '南佐镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132103, 130132, '宋曹镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132104, 130132, '南因镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132105, 130132, '姬村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132106, 130132, '北褚镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132107, 130132, '马村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132201, 130132, '东张乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132202, 130132, '赵同乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132204, 130132, '苏村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132205, 130132, '苏阳乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132206, 130132, '北正乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132207, 130132, '前仙乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130132208, 130132, '黑水河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133100, 130133, '赵州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133101, 130133, '范庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133102, 130133, '北王里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133103, 130133, '新寨店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133104, 130133, '韩村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133105, 130133, '南柏舍镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133106, 130133, '沙河店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133107, 130133, '王西章镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133200, 130133, '前大章乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133201, 130133, '谢庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130133202, 130133, '高村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130171010, 130171, '长江街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130171011, 130171, '太行街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130171100, 130171, '宋营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130171101, 130171, '郄马镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130172100, 130172, '丘头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181100, 130181, '辛集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181101, 130181, '旧城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181102, 130181, '张古庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181103, 130181, '位伯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181104, 130181, '新垒头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181105, 130181, '新城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181106, 130181, '南智邱镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181107, 130181, '王口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181200, 130181, '天宫营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181201, 130181, '前营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181202, 130181, '马庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181203, 130181, '和睦井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181204, 130181, '田家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181205, 130181, '中里厢乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181206, 130181, '小辛庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130181500, 130181, '辛集经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183100, 130183, '晋州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183101, 130183, '总十庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183102, 130183, '营里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183103, 130183, '桃园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183104, 130183, '东卓宿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183105, 130183, '马于镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183106, 130183, '小樵镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183107, 130183, '槐树镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183108, 130183, '东里庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130183201, 130183, '周家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184001, 130184, '长寿街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184101, 130184, '化皮镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184102, 130184, '承安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184103, 130184, '正莫镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184104, 130184, '南大岳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184105, 130184, '杜固镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184106, 130184, '邯邰镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184107, 130184, '东王镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184108, 130184, '马头铺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184200, 130184, '协神乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184201, 130184, '木村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130184202, 130184, '彭家庄回族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202001, 130202, '学院南路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202002, 130202, '友谊街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202003, 130202, '广场街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202004, 130202, '永红桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202005, 130202, '小山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202006, 130202, '文化北后街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202007, 130202, '钱家营矿区街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202008, 130202, '惠民道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202009, 130202, '梁家屯路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202102, 130202, '稻地镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130202200, 130202, '女织寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203001, 130203, '乔屯街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203002, 130203, '文化路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203003, 130203, '钓鱼台街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203004, 130203, '东新村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203005, 130203, '缸窑街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203006, 130203, '机场路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203007, 130203, '河北路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203008, 130203, '龙东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203009, 130203, '大里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203010, 130203, '光明街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203011, 130203, '翔云道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203100, 130203, '韩城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130203101, 130203, '果园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204001, 130204, '林西街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204002, 130204, '唐家庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204003, 130204, '古冶街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204004, 130204, '赵各庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204007, 130204, '京华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204100, 130204, '范各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204101, 130204, '卑家店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204201, 130204, '王辇庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204202, 130204, '习家套乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130204203, 130204, '大庄坨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205001, 130205, '马家沟街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205002, 130205, '开平街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205003, 130205, '税务庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205005, 130205, '陡电街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205006, 130205, '荆各庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205100, 130205, '开平镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205101, 130205, '栗园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205102, 130205, '郑庄子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205103, 130205, '双桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205104, 130205, '洼里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130205105, 130205, '越河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207103, 130207, '小集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207104, 130207, '黄各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207105, 130207, '西葛镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207106, 130207, '大新庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207107, 130207, '钱营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207108, 130207, '唐坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207109, 130207, '王兰庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207110, 130207, '柳树瞿阝镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207111, 130207, '黑沿子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207113, 130207, '胥各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207114, 130207, '大齐各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207115, 130207, '岔河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207201, 130207, '南孙庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207202, 130207, '东田庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130207203, 130207, '尖字沽乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208001, 130208, '太平路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208002, 130208, '燕山路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208003, 130208, '浭阳街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208100, 130208, '丰润镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208102, 130208, '任各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208103, 130208, '左家坞镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208104, 130208, '泉河头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208105, 130208, '王官营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208106, 130208, '火石营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208109, 130208, '新军屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208110, 130208, '小张各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208111, 130208, '丰登坞镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208112, 130208, '李钊庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208113, 130208, '白官屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208114, 130208, '石各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208115, 130208, '沙流河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208116, 130208, '七树庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208117, 130208, '杨官林镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208118, 130208, '银城铺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208119, 130208, '常庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208202, 130208, '姜家营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208205, 130208, '欢喜庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130208208, 130208, '刘家营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209100, 130209, '唐海镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209112, 130209, '滨海镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209113, 130209, '柳赞镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209401, 130209, '一农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209403, 130209, '三农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209404, 130209, '四农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209405, 130209, '五农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209406, 130209, '六农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209407, 130209, '七农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209408, 130209, '八农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209409, 130209, '九农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209410, 130209, '十农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209411, 130209, '十一农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209412, 130209, '八里滩养殖场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209413, 130209, '十里海养殖场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209450, 130209, '南堡经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209451, 130209, '曹妃甸工业区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130209452, 130209, '曹妃甸新城', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224001, 130224, '友谊路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224100, 130224, '倴城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224101, 130224, '宋道口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224102, 130224, '长凝镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224103, 130224, '胡各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224104, 130224, '坨里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224105, 130224, '姚王庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224106, 130224, '司各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224107, 130224, '安各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224108, 130224, '扒齿港镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224109, 130224, '程庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224110, 130224, '青坨营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224111, 130224, '柏各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224114, 130224, '南堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224115, 130224, '方各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224116, 130224, '东黄坨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130224117, 130224, '马城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225001, 130225, '乐安街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225100, 130225, '乐亭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225101, 130225, '汤家河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225102, 130225, '胡家坨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225104, 130225, '闫各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225105, 130225, '马头营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225106, 130225, '新寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225107, 130225, '汀流河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225108, 130225, '姜各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225109, 130225, '毛庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225110, 130225, '中堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225111, 130225, '大相各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225201, 130225, '庞各庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225203, 130225, '古河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225453, 130225, '河北乐亭经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130225454, 130225, '乐亭县城区工业聚集区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227001, 130227, '栗乡街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227100, 130227, '兴城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227101, 130227, '金厂峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227102, 130227, '洒河桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227103, 130227, '太平寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227104, 130227, '罗家屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227105, 130227, '东荒峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227106, 130227, '新集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227107, 130227, '三屯营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227108, 130227, '滦阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227109, 130227, '汉儿庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227110, 130227, '新庄子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227111, 130227, '东莲花院镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227200, 130227, '白庙子乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227201, 130227, '上营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227203, 130227, '渔户寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227204, 130227, '旧城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227205, 130227, '尹庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130227450, 130227, '栗乡工业产业聚集区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229001, 130229, '无终街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229100, 130229, '玉田镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229101, 130229, '亮甲店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229102, 130229, '鸦鸿桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229103, 130229, '窝洛沽镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229104, 130229, '石臼窝镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229105, 130229, '虹桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229106, 130229, '散水头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229107, 130229, '林南仓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229108, 130229, '林西镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229109, 130229, '杨家板桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229110, 130229, '彩亭桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229111, 130229, '孤树镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229112, 130229, '大安镇镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229113, 130229, '唐自头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229114, 130229, '郭家屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229115, 130229, '杨家套镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229116, 130229, '陈家铺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229201, 130229, '林头屯乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229203, 130229, '潮洛窝乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229205, 130229, '郭家桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229400, 130229, '河北玉田经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130229401, 130229, '河北唐山国家农业科技园区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130271100, 130271, '海北镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130271450, 130271, '新华路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130272101, 130272, '汉丰镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130272451, 130272, '兴农街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130272452, 130272, '振兴街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130273001, 130273, '街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130273101, 130273, '老庄子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130273401, 130273, '庆北办事处', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130273402, 130273, '三女河办事处', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130274103, 130274, '王滩镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130274451, 130274, '社区管理服务中心', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130274452, 130274, '唐山湾国际旅游岛', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130274455, 130274, '大清河', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281001, 130281, '华明路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281002, 130281, '文化路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281100, 130281, '遵化镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281101, 130281, '堡子店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281102, 130281, '马兰峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281103, 130281, '平安城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281104, 130281, '东新庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281105, 130281, '新店子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281106, 130281, '党峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281107, 130281, '地北头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281108, 130281, '东旧寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281109, 130281, '铁厂镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281110, 130281, '苏家洼镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281111, 130281, '建明镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281112, 130281, '石门镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281113, 130281, '崔家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281200, 130281, '西留村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281202, 130281, '兴旺寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281203, 130281, '西下营满族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281204, 130281, '汤泉满族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281205, 130281, '东陵满族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281206, 130281, '刘备寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281207, 130281, '团瓢庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281208, 130281, '娘娘庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281209, 130281, '西三里乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281210, 130281, '侯家寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130281211, 130281, '小厂乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283001, 130283, '永顺街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283002, 130283, '兴安街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283003, 130283, '滨河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283004, 130283, '杨店子街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283101, 130283, '夏官营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283102, 130283, '杨各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283103, 130283, '建昌营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283104, 130283, '赵店子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283105, 130283, '野鸡坨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283106, 130283, '大崔庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283108, 130283, '蔡园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283109, 130283, '马兰庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283110, 130283, '沙河驿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283111, 130283, '木厂口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283112, 130283, '上射雁庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283113, 130283, '太平庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283114, 130283, '扣庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283115, 130283, '大五里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283116, 130283, '五重安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283117, 130283, '彭店子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130283118, 130283, '阎家店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284001, 130284, '滦河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284002, 130284, '古城街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284003, 130284, '滦城路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284004, 130284, '响嘡街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284102, 130284, '东安各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284103, 130284, '雷庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284104, 130284, '茨榆坨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284105, 130284, '榛子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284106, 130284, '杨柳庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284107, 130284, '油榨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284108, 130284, '古马镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284109, 130284, '小马庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284110, 130284, '九百户镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130284111, 130284, '王店子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302001, 130302, '文化路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302002, 130302, '海滨路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302003, 130302, '北环路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302004, 130302, '建设大街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302005, 130302, '河东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302006, 130302, '西港路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302007, 130302, '燕山大街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302008, 130302, '港城大街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302009, 130302, '东环路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302010, 130302, '白塔岭街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302100, 130302, '东港镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302101, 130302, '海港镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302102, 130302, '西港镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302103, 130302, '海阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302104, 130302, '北港镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302105, 130302, '杜庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302106, 130302, '石门寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302107, 130302, '驻操营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302403, 130302, '临港物流园区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130302404, 130302, '海港经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303001, 130303, '南关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303002, 130303, '古城街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303003, 130303, '西关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303004, 130303, '路南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303100, 130303, '第一关镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303101, 130303, '石河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130303102, 130303, '孟姜镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130304001, 130304, '西山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130304002, 130304, '东山街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130304100, 130304, '海滨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130304101, 130304, '戴河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130304103, 130304, '牛头崖镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306001, 130306, '骊城街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306100, 130306, '抚宁镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306101, 130306, '留守营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306102, 130306, '榆关镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306105, 130306, '台营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306106, 130306, '大新寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306109, 130306, '坟坨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130306200, 130306, '茶棚乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321001, 130321, '都阳路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321100, 130321, '青龙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321101, 130321, '祖山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321102, 130321, '木头凳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321103, 130321, '双山子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321104, 130321, '马圈子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321105, 130321, '肖营子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321106, 130321, '大巫岚镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321107, 130321, '土门子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321108, 130321, '八道河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321109, 130321, '隔河头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321110, 130321, '娄杖子镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321200, 130321, '凤凰山乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321201, 130321, '龙王庙乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321202, 130321, '三星口乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321203, 130321, '干沟乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321206, 130321, '大石岭乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321208, 130321, '官场乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321209, 130321, '茨榆山乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321210, 130321, '平方子乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321211, 130321, '安子岭乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321212, 130321, '朱杖子乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321213, 130321, '草碾乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321217, 130321, '三拨子乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130321218, 130321, '凉水河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322100, 130322, '昌黎镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322101, 130322, '靖安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322102, 130322, '安山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322103, 130322, '龙家店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322104, 130322, '泥井镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322105, 130322, '大蒲河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322106, 130322, '新集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322107, 130322, '刘台庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322108, 130322, '茹荷镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322109, 130322, '朱各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322110, 130322, '荒佃庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322201, 130322, '团林乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322202, 130322, '葛条港乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322203, 130322, '马坨店乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322206, 130322, '两山乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130322207, 130322, '十里铺乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324100, 130324, '卢龙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324101, 130324, '潘庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324102, 130324, '燕河营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324103, 130324, '双望镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324104, 130324, '刘田各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324105, 130324, '石门镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324106, 130324, '木井镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324107, 130324, '陈官屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324108, 130324, '蛤泊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324200, 130324, '下寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324201, 130324, '刘家营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130324203, 130324, '印庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130371005, 130371, '船厂路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130371011, 130371, '珠江道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130371012, 130371, '黄河道街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130371013, 130371, '腾飞路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130371200, 130371, '渤海乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130372001, 130372, '南戴河街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130372400, 130372, '大蒲河管理处', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130372401, 130372, '团林管理处', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130372402, 130372, '留守营管理处', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402001, 130402, '火磨街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402002, 130402, '陵园路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402003, 130402, '光明路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402004, 130402, '滏东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402005, 130402, '罗城头街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402006, 130402, '渚河路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402007, 130402, '浴新南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402008, 130402, '农林路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402009, 130402, '贸东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402010, 130402, '贸西街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402011, 130402, '盛和路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402101, 130402, '北张庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402102, 130402, '河沙镇镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402200, 130402, '马庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402201, 130402, '南堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130402202, 130402, '代召乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403001, 130403, '丛台西街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403002, 130403, '联纺西街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403003, 130403, '联纺东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403004, 130403, '光明桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403005, 130403, '丛台东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403006, 130403, '四季青街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403007, 130403, '和平街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403008, 130403, '中华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403009, 130403, '人民路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403010, 130403, '柳林桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403101, 130403, '黄粱梦镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403200, 130403, '苏曹乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403205, 130403, '三陵乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403206, 130403, '南吕固乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130403207, 130403, '兼庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404001, 130404, '胜利桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404002, 130404, '百家村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404003, 130404, '铁路大院街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404004, 130404, '化林路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404005, 130404, '庞村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404006, 130404, '二六七二街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404007, 130404, '石化街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404100, 130404, '户村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404200, 130404, '彭家寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130404201, 130404, '康庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406001, 130406, '滏阳东路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406100, 130406, '临水镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406101, 130406, '峰峰镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406102, 130406, '新坡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406103, 130406, '大社镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406104, 130406, '和村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406105, 130406, '义井镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406106, 130406, '彭城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406107, 130406, '界城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406108, 130406, '大峪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130406200, 130406, '西固义乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407100, 130407, '肥乡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407101, 130407, '天台山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407102, 130407, '辛安镇镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407103, 130407, '大寺上镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407104, 130407, '东漳堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407105, 130407, '毛演堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407106, 130407, '西吕营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407203, 130407, '元固乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130407206, 130407, '旧店乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408100, 130408, '临洺关镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408101, 130408, '大北汪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408102, 130408, '张西堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408103, 130408, '广府镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408105, 130408, '永合会镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408106, 130408, '刘营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408107, 130408, '西苏镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408108, 130408, '讲武镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408109, 130408, '东杨庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408201, 130408, '界河店乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408203, 130408, '刘汉乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408204, 130408, '正西乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408206, 130408, '曲陌乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408207, 130408, '辛庄堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408208, 130408, '小龙马乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408211, 130408, '西河庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130408213, 130408, '西阳城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423100, 130423, '临漳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423101, 130423, '南东坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423102, 130423, '孙陶集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423103, 130423, '柳园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423104, 130423, '称勾集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423105, 130423, '邺城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423106, 130423, '章里集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423200, 130423, '狄邱乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423201, 130423, '张村集乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423202, 130423, '西羊羔乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423204, 130423, '杜村集乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423206, 130423, '习文乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423207, 130423, '砖寨营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130423208, 130423, '柏鹤集乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424100, 130424, '成安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424101, 130424, '商城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424102, 130424, '漳河店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424103, 130424, '李家疃镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424104, 130424, '北乡义镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424105, 130424, '道东堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424200, 130424, '辛义乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424201, 130424, '柏寺营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130424204, 130424, '长巷乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425100, 130425, '大名镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425101, 130425, '杨桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425102, 130425, '万堤镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425103, 130425, '龙王庙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425104, 130425, '束馆镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425105, 130425, '金滩镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425106, 130425, '沙圪塔镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425107, 130425, '大街镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425108, 130425, '铺上镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425109, 130425, '孙甘店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425201, 130425, '王村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425203, 130425, '黄金堤乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425205, 130425, '旧治乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425206, 130425, '西未庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425208, 130425, '西付集乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425209, 130425, '埝头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425210, 130425, '北峰乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425211, 130425, '张铁集乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425212, 130425, '红庙乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130425213, 130425, '营镇回族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426001, 130426, '平安街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426101, 130426, '河南店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426102, 130426, '索堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426103, 130426, '西戌镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426104, 130426, '井店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426105, 130426, '更乐镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426106, 130426, '固新镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426107, 130426, '西达镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426108, 130426, '偏城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426200, 130426, '神头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426201, 130426, '辽城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426202, 130426, '偏店乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426203, 130426, '龙虎乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426204, 130426, '木井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426205, 130426, '关防乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426206, 130426, '合漳乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426207, 130426, '鹿头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130426400, 130426, '涉城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427100, 130427, '磁州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427103, 130427, '讲武城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427104, 130427, '岳城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427105, 130427, '观台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427107, 130427, '白土镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427108, 130427, '黄沙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427200, 130427, '路村营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427204, 130427, '时村营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427207, 130427, '陶泉乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427208, 130427, '都党乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130427209, 130427, '北贾壁乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430100, 130430, '新马头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430101, 130430, '邱城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430102, 130430, '梁二庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430103, 130430, '香城固镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430104, 130430, '古城营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430201, 130430, '南辛店乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130430204, 130430, '陈村回族乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431100, 130431, '鸡泽镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431101, 130431, '小寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431102, 130431, '双塔镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431103, 130431, '曹庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431104, 130431, '浮图店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431105, 130431, '吴官营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130431202, 130431, '风正乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432100, 130432, '广平镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432101, 130432, '平固店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432102, 130432, '胜营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432103, 130432, '南阳堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432104, 130432, '十里铺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432105, 130432, '南韩镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130432106, 130432, '东张孟镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433100, 130433, '馆陶镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433101, 130433, '房寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433102, 130433, '柴堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433103, 130433, '魏僧寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433200, 130433, '寿山寺乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433201, 130433, '王桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433202, 130433, '南徐村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130433203, 130433, '路桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434100, 130434, '魏城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434101, 130434, '德政镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434102, 130434, '北皋镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434103, 130434, '双井镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434104, 130434, '牙里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434105, 130434, '车往镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434106, 130434, '回隆镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434107, 130434, '张二庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434108, 130434, '东代固镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434109, 130434, '院堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434110, 130434, '棘针寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434111, 130434, '南双庙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434112, 130434, '边马镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434113, 130434, '泊口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434114, 130434, '仕望集镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434202, 130434, '沙口集乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434203, 130434, '野胡拐乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434205, 130434, '前大磨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434208, 130434, '大辛庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434209, 130434, '大马村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130434212, 130434, '北台头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435100, 130435, '曲周镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435101, 130435, '安寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435102, 130435, '侯村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435103, 130435, '河南疃镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435104, 130435, '第四疃镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435105, 130435, '白寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435200, 130435, '槐桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435201, 130435, '南里岳乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435203, 130435, '大河道乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130435204, 130435, '依庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130471001, 130471, '开发区街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130471100, 130471, '尚璧镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130471101, 130471, '南沿村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130471200, 130471, '小西堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130471201, 130471, '姚寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473001, 130473, '城南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473100, 130473, '高臾镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473101, 130473, '西光禄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473102, 130473, '林坛镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473103, 130473, '马头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473200, 130473, '辛庄营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473201, 130473, '花官营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473202, 130473, '台城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130473203, 130473, '南城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481100, 130481, '武安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481101, 130481, '康二城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481102, 130481, '午汲镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481103, 130481, '磁山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481104, 130481, '伯延镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481105, 130481, '淑村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481106, 130481, '大同镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481107, 130481, '邑城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481108, 130481, '矿山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481109, 130481, '贺进镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481110, 130481, '阳邑镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481111, 130481, '徘徊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481112, 130481, '冶陶镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481200, 130481, '上团城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481201, 130481, '北安庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481202, 130481, '北安乐乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481203, 130481, '西土山乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481204, 130481, '西寺庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481205, 130481, '活水乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481206, 130481, '石洞乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481207, 130481, '管陶乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481208, 130481, '马家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130481400, 130481, '河北武安工业园区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502001, 130502, '南长街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502002, 130502, '北大街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502003, 130502, '西大街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502004, 130502, '西门里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502005, 130502, '泉东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502006, 130502, '豫让桥街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502100, 130502, '东郭村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502101, 130502, '祝村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502103, 130502, '晏家屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130502200, 130502, '大梁庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503001, 130503, '钢铁路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503002, 130503, '中兴路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503003, 130503, '达活泉街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503004, 130503, '张宽街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503005, 130503, '章村街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503006, 130503, '中华大街街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503007, 130503, '团结路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503008, 130503, '泉西街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503100, 130503, '南大郭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503101, 130503, '李村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503102, 130503, '南石门镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503103, 130503, '羊范镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503104, 130503, '皇寺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503105, 130503, '会宁镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503106, 130503, '西黄村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503107, 130503, '路罗镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503108, 130503, '将军墓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503109, 130503, '浆水镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503110, 130503, '宋家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503202, 130503, '太子井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503203, 130503, '龙泉寺乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503204, 130503, '北小庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503205, 130503, '城计头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503206, 130503, '白岸乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130503207, 130503, '冀家村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505100, 130505, '任城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505101, 130505, '邢家湾镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505102, 130505, '辛店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505103, 130505, '天口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505200, 130505, '西固城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505201, 130505, '永福庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505202, 130505, '大屯乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130505203, 130505, '骆庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506100, 130506, '和阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506101, 130506, '贾宋镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506102, 130506, '郝桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506103, 130506, '三思镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506104, 130506, '河郭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506200, 130506, '东三召乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506201, 130506, '阎里乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130506203, 130506, '史召乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522100, 130522, '临城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522101, 130522, '东镇镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522102, 130522, '西竖镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522103, 130522, '郝庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522104, 130522, '黑城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522201, 130522, '鸭鸽营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522203, 130522, '石城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130522205, 130522, '赵庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523100, 130523, '内丘镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523101, 130523, '大孟村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523102, 130523, '金店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523103, 130523, '官庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523104, 130523, '柳林镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523200, 130523, '五郭店乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523203, 130523, '南赛乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523204, 130523, '獐獏乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130523205, 130523, '侯家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130524100, 130524, '柏乡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130524101, 130524, '固城店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130524102, 130524, '西汪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130524103, 130524, '龙华镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130524200, 130524, '王家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130524203, 130524, '内步乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525100, 130525, '隆尧镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525101, 130525, '魏家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525102, 130525, '尹村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525103, 130525, '山口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525104, 130525, '莲子镇镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525105, 130525, '固城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525106, 130525, '东良镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525200, 130525, '北楼乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525202, 130525, '双碑乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525203, 130525, '牛家桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525204, 130525, '千户营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525205, 130525, '大张家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130525400, 130525, '柳行农场', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528001, 130528, '宁北街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528100, 130528, '凤凰镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528101, 130528, '河渠镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528102, 130528, '北河庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528103, 130528, '耿庄桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528104, 130528, '东汪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528105, 130528, '贾家口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528106, 130528, '四芝兰镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528107, 130528, '大陆村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528108, 130528, '苏家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528109, 130528, '换马店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528110, 130528, '唐邱镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528111, 130528, '大曹庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528112, 130528, '侯口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528202, 130528, '纪昌庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528205, 130528, '北鱼乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528208, 130528, '徐家河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130528401, 130528, '大曹庄管理区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529100, 130529, '巨鹿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529101, 130529, '王虎寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529102, 130529, '西郭城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529103, 130529, '官亭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529104, 130529, '阎疃镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529105, 130529, '小吕寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529106, 130529, '苏家营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529107, 130529, '观寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529200, 130529, '堤村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130529201, 130529, '张王疃乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130530100, 130530, '新河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130530101, 130530, '寻寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130530200, 130530, '白神首乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130530201, 130530, '荆家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130530202, 130530, '西流乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130530203, 130530, '仁让里乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531100, 130531, '广宗镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531101, 130531, '冯家寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531102, 130531, '北塘疃镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531103, 130531, '核桃园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531200, 130531, '葫芦乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531201, 130531, '大平台乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531202, 130531, '件只乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130531204, 130531, '东召乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532001, 130532, '中华路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532101, 130532, '平乡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532102, 130532, '河古庙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532200, 130532, '节固乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532201, 130532, '油召乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532202, 130532, '田付村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130532203, 130532, '寻召乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533100, 130533, '洺州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533101, 130533, '梨园屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533102, 130533, '章台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533103, 130533, '侯贯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533104, 130533, '七级镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533105, 130533, '贺营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533106, 130533, '方家营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533107, 130533, '常庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533108, 130533, '第什营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533109, 130533, '贺钊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533110, 130533, '赵村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533111, 130533, '固献镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533202, 130533, '枣园乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533206, 130533, '张家营乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533207, 130533, '常屯乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130533209, 130533, '高公庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130534100, 130534, '葛仙庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130534101, 130534, '连庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130534102, 130534, '油坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130534103, 130534, '谢炉镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130534104, 130534, '王官庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130534105, 130534, '坝营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535100, 130535, '临西镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535101, 130535, '河西镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535102, 130535, '下堡寺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535103, 130535, '尖塚镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535104, 130535, '老官寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535105, 130535, '吕寨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535106, 130535, '大刘庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535200, 130535, '东枣园乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535203, 130535, '摇鞍镇乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130535400, 130535, '轴承工业园区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130571100, 130571, '东汪镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130571101, 130571, '王快镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130571103, 130571, '沙河城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130571104, 130571, '留村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130571400, 130571, '市高新技术开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581001, 130581, '凤岗街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581002, 130581, '南杜街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581003, 130581, '北胡街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581004, 130581, '西丁街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581100, 130581, '苏村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581101, 130581, '大高村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581102, 130581, '垂杨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581103, 130581, '明化镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581104, 130581, '段芦头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581105, 130581, '紫冢镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581200, 130581, '大村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581201, 130581, '南便村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581202, 130581, '大屯乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581203, 130581, '王道寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130581204, 130581, '薛吴村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582001, 130582, '褡裢街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582002, 130582, '桥东街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582003, 130582, '桥西街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582004, 130582, '赞善街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582005, 130582, '周庄街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582101, 130582, '新城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582102, 130582, '白塔镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582103, 130582, '十里亭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582104, 130582, '綦村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582201, 130582, '册井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582202, 130582, '刘石岗乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582203, 130582, '柴关乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130582204, 130582, '蝉房乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602001, 130602, '先锋街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602002, 130602, '新市场街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602003, 130602, '东风路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602004, 130602, '建南街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602005, 130602, '韩村北路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602100, 130602, '大激店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602200, 130602, '颉庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602201, 130602, '富昌乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602202, 130602, '韩村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130602203, 130602, '南奇乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606001, 130606, '和平里街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606002, 130606, '五四路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606003, 130606, '西关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606004, 130606, '中华路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606005, 130606, '东关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606006, 130606, '联盟街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606007, 130606, '红星街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606008, 130606, '裕华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606009, 130606, '永华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606010, 130606, '南关街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606100, 130606, '百楼镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606200, 130606, '韩庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606201, 130606, '东金庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606203, 130606, '杨庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606204, 130606, '南大园乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606205, 130606, '焦庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130606206, 130606, '五尧乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607001, 130607, '惠阳街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607100, 130607, '满城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607101, 130607, '大册营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607102, 130607, '神星镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607103, 130607, '南韩村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607104, 130607, '方顺桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607105, 130607, '于家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607203, 130607, '要庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607204, 130607, '白龙乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607205, 130607, '石井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607206, 130607, '坨南乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607207, 130607, '刘家台乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130607400, 130607, '河北满城经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608100, 130608, '清苑镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608101, 130608, '冉庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608102, 130608, '阳城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608103, 130608, '魏村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608104, 130608, '温仁镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608105, 130608, '张登镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608106, 130608, '大庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608107, 130608, '臧村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608108, 130608, '望亭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608109, 130608, '东闾镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608200, 130608, '白团乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608201, 130608, '北店乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608202, 130608, '石桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608203, 130608, '李庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608204, 130608, '北王力乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608206, 130608, '何桥乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608207, 130608, '孙村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608208, 130608, '阎庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130608400, 130608, '河北清苑经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609100, 130609, '安肃镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609101, 130609, '崔庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609102, 130609, '大因镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609103, 130609, '遂城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609104, 130609, '高林村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609105, 130609, '大王店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609106, 130609, '漕河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609107, 130609, '东史端镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609108, 130609, '留村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609109, 130609, '正村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609203, 130609, '户木乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609204, 130609, '瀑河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609205, 130609, '东釜山乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130609206, 130609, '义联庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623100, 130623, '涞水镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623101, 130623, '永阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623102, 130623, '义安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623103, 130623, '石亭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623104, 130623, '赵各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623105, 130623, '九龙镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623106, 130623, '三坡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623107, 130623, '一渡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623108, 130623, '明义镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623109, 130623, '王村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623110, 130623, '娄村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623111, 130623, '东文山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623205, 130623, '其中口乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623206, 130623, '龙门乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623207, 130623, '胡家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130623401, 130623, '涞水县城区社区管理办公室', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624100, 130624, '阜平镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624101, 130624, '龙泉关镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624102, 130624, '平阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624103, 130624, '城南庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624104, 130624, '天生桥镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624105, 130624, '王林口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624106, 130624, '砂窝镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624107, 130624, '北果园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624202, 130624, '台峪乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624203, 130624, '大台乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624204, 130624, '史家寨乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624206, 130624, '吴王口乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624207, 130624, '夏庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130624400, 130624, '河北阜平经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626100, 130626, '定兴镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626101, 130626, '固城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626102, 130626, '贤寓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626103, 130626, '北河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626104, 130626, '天宫寺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626105, 130626, '小朱庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626106, 130626, '姚村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626107, 130626, '杨村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626200, 130626, '东落堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626201, 130626, '高里乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626202, 130626, '张家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626204, 130626, '肖村乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626205, 130626, '柳卓乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626207, 130626, '北田乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626208, 130626, '北南蔡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130626209, 130626, '李郁庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627100, 130627, '仁厚镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627101, 130627, '王京镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627102, 130627, '高昌镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627103, 130627, '北罗镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627104, 130627, '白合镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627105, 130627, '军城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627106, 130627, '川里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627107, 130627, '长古城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627108, 130627, '罗庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627109, 130627, '北店头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627201, 130627, '都亭乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627202, 130627, '南店头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627205, 130627, '雹水乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627206, 130627, '大洋乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627207, 130627, '迷城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627208, 130627, '齐家佐乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627209, 130627, '羊角乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627210, 130627, '石门乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627211, 130627, '黄石口乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130627212, 130627, '倒马关乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628001, 130628, '高阳县锦华街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628101, 130628, '庞口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628102, 130628, '西演镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628103, 130628, '邢家南镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628104, 130628, '晋庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628105, 130628, '小王果庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628106, 130628, '蒲口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628107, 130628, '庞家佐镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130628400, 130628, '高阳县经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629100, 130629, '容城镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629101, 130629, '小里镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629102, 130629, '南张镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629103, 130629, '大河镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629104, 130629, '晾马台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629200, 130629, '八于乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629201, 130629, '贾光乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130629203, 130629, '平王乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630100, 130630, '涞源镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630101, 130630, '银坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630102, 130630, '走马驿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630103, 130630, '水堡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630104, 130630, '王安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630105, 130630, '杨家庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630106, 130630, '白石山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630107, 130630, '南屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630108, 130630, '泉坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630109, 130630, '北石佛镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630201, 130630, '南马庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630203, 130630, '金家井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630204, 130630, '留家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630205, 130630, '上庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630206, 130630, '东团堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630207, 130630, '塔崖驿乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130630208, 130630, '乌龙沟乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631100, 130631, '望都镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631101, 130631, '固店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631102, 130631, '贾村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631103, 130631, '中韩庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631104, 130631, '寺庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631105, 130631, '赵庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631106, 130631, '高岭镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631202, 130631, '黑堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130631400, 130631, '望都经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632100, 130632, '安新镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632101, 130632, '大王镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632102, 130632, '三台镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632103, 130632, '端村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632104, 130632, '赵北口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632105, 130632, '同口镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632106, 130632, '刘李庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632107, 130632, '安州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632108, 130632, '老河头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632200, 130632, '圈头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632201, 130632, '寨里乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632202, 130632, '芦庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130632203, 130632, '龙化乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633100, 130633, '易州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633101, 130633, '梁格庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633102, 130633, '西陵镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633103, 130633, '裴山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633104, 130633, '塘湖镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633105, 130633, '狼牙山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633106, 130633, '良岗镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633107, 130633, '紫荆关镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633108, 130633, '高村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633200, 130633, '桥头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633201, 130633, '白马乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633202, 130633, '流井乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633204, 130633, '高陌乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633205, 130633, '大龙华乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633206, 130633, '安格庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633207, 130633, '凌云册乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633208, 130633, '西山北乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633209, 130633, '尉都乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633210, 130633, '独乐乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633211, 130633, '七峪乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633212, 130633, '富岗乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633213, 130633, '坡仓乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633214, 130633, '牛岗乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633215, 130633, '桥家河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633216, 130633, '甘河净乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633217, 130633, '蔡家峪乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633218, 130633, '南城司乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130633400, 130633, '恋乡太行水镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634100, 130634, '恒州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634101, 130634, '灵山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634102, 130634, '燕赵镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634103, 130634, '羊平镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634104, 130634, '文德镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634105, 130634, '晓林镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634106, 130634, '邸村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634107, 130634, '齐村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634108, 130634, '孝墓镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634109, 130634, '产德镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634200, 130634, '路庄子乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634201, 130634, '下河乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634202, 130634, '庄窠乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634205, 130634, '东旺乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634210, 130634, '党城乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634211, 130634, '郎家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634212, 130634, '范家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130634213, 130634, '北台乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635100, 130635, '蠡吾镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635101, 130635, '留史镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635102, 130635, '大百尺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635103, 130635, '辛兴镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635104, 130635, '北郭丹镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635105, 130635, '万安镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635106, 130635, '桑园镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635107, 130635, '南庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635108, 130635, '大曲堤镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635109, 130635, '鲍墟镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635110, 130635, '小陈镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635201, 130635, '林堡乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130635202, 130635, '北埝头乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636100, 130636, '蒲阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636101, 130636, '高于铺镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636102, 130636, '腰山镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636103, 130636, '蒲上镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636104, 130636, '神南镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636105, 130636, '安阳镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636201, 130636, '白云乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636202, 130636, '河口乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636204, 130636, '台鱼乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130636205, 130636, '大悲乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637100, 130637, '博野镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637101, 130637, '小店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637102, 130637, '程委镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637103, 130637, '东墟镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637104, 130637, '北杨镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637105, 130637, '城东镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130637106, 130637, '南小王镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638100, 130638, '雄州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638101, 130638, '昝岗镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638102, 130638, '大营镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638103, 130638, '龙湾镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638104, 130638, '朱各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638105, 130638, '米家务镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638106, 130638, '鄚州镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638107, 130638, '苟各庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638200, 130638, '北沙口乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638203, 130638, '双堂乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638204, 130638, '张岗乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130638205, 130638, '七间房乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130671202, 130671, '贤台乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130671205, 130671, '大马坊乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130671400, 130671, '保定国家高新区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130672103, 130672, '白沟镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681001, 130681, '双塔街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681002, 130681, '桃园街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681003, 130681, '清凉寺街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681100, 130681, '松林店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681101, 130681, '码头镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681102, 130681, '东城坊镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681103, 130681, '高官庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681104, 130681, '东仙坡镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681105, 130681, '百尺竿镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681106, 130681, '义和庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681107, 130681, '刁窝镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681108, 130681, '林家屯镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681109, 130681, '豆庄镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681204, 130681, '孙家庄乡', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681400, 130681, '高新技术产业开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681401, 130681, '京南经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130681402, 130681, '松林店经济开发区', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682001, 130682, '南城区街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682002, 130682, '北城区街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682003, 130682, '西城区街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682004, 130682, '长安路街道', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682100, 130682, '留早镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682101, 130682, '清风店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682102, 130682, '庞村镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682103, 130682, '砖路镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682104, 130682, '明月店镇', 4, '2022-11-09 10:39:24', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682105, 130682, '叮咛店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682106, 130682, '东亭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682107, 130682, '大辛庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682108, 130682, '东旺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682109, 130682, '高蓬镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682110, 130682, '邢邑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682111, 130682, '李亲顾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682112, 130682, '子位镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682113, 130682, '开元镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682115, 130682, '周村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682116, 130682, '息冢镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682203, 130682, '东留春乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682204, 130682, '号头庄回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682205, 130682, '杨家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682206, 130682, '大鹿庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130682208, 130682, '西城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683001, 130683, '药都街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683002, 130683, '祁州路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683101, 130683, '伍仁桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683102, 130683, '石佛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683103, 130683, '郑章镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683104, 130683, '大五女镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683105, 130683, '西佛落镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683106, 130683, '西城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683200, 130683, '明官店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683201, 130683, '南娄底乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683204, 130683, '北段村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130683400, 130683, '现代中药工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684001, 130684, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684002, 130684, '军城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684003, 130684, '东盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684004, 130684, '北城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684005, 130684, '兴华路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684100, 130684, '方官镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684101, 130684, '新城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684102, 130684, '泗庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684104, 130684, '辛立庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684105, 130684, '东马营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684106, 130684, '辛桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684107, 130684, '肖官营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684108, 130684, '张六庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130684109, 130684, '梁家营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702001, 130702, '红旗楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702002, 130702, '胜利北路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702003, 130702, '五一路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702004, 130702, '花园街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702005, 130702, '工业路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702101, 130702, '姚家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702102, 130702, '大仓盖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130702202, 130702, '东望山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703001, 130703, '新华街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703002, 130703, '大境门街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703003, 130703, '明德北街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703004, 130703, '明德南街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703005, 130703, '堡子里街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703006, 130703, '南营坊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703007, 130703, '工人新村街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130703100, 130703, '东窑子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705001, 130705, '天泰寺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705002, 130705, '皇城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705003, 130705, '南关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705004, 130705, '南大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705005, 130705, '大北街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705006, 130705, '工业街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705007, 130705, '建国街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705100, 130705, '庞家堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705101, 130705, '深井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705102, 130705, '崞村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705104, 130705, '洋河南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705106, 130705, '贾家营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705107, 130705, '顾家营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705108, 130705, '赵川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705109, 130705, '江家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705200, 130705, '河子西乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705201, 130705, '春光乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705202, 130705, '侯家庙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705204, 130705, '李家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705205, 130705, '王家湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130705206, 130705, '塔儿村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130706001, 130706, '城镇街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130706002, 130706, '煤矿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130706200, 130706, '花园乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130706201, 130706, '辛庄子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130706202, 130706, '定方水乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130706203, 130706, '段家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708100, 130708, '孔家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708101, 130708, '万全镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708102, 130708, '洗马林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708103, 130708, '郭磊庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708200, 130708, '膳房堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708201, 130708, '北新屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708202, 130708, '宣平堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708203, 130708, '高庙堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708204, 130708, '旧堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708205, 130708, '安家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708206, 130708, '北沙城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708400, 130708, '孔家庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130708401, 130708, '宣平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709001, 130709, '西湾子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709100, 130709, '西湾子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709101, 130709, '高家营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709200, 130709, '四台嘴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709201, 130709, '红旗营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709202, 130709, '石窑子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709203, 130709, '驿马图乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709204, 130709, '石嘴子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709205, 130709, '狮子沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709206, 130709, '清三营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130709207, 130709, '白旗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722100, 130722, '张北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722101, 130722, '公会镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722102, 130722, '二台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722103, 130722, '大囫囵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722104, 130722, '小二台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722106, 130722, '油篓沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722107, 130722, '大河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722200, 130722, '台路沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722202, 130722, '馒头营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722203, 130722, '二泉井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722204, 130722, '单晶河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722206, 130722, '海流图乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722207, 130722, '两面井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722208, 130722, '大西湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722209, 130722, '郝家营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722210, 130722, '白庙滩乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722212, 130722, '战海乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130722213, 130722, '三号乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723100, 130723, '康保镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723101, 130723, '张纪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723102, 130723, '土城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723103, 130723, '邓油坊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723104, 130723, '李家地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723105, 130723, '照阳河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723106, 130723, '屯垦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723200, 130723, '闫油坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723201, 130723, '丹清河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723202, 130723, '哈咇嘎乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723203, 130723, '二号卜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723204, 130723, '芦家营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723205, 130723, '忠义乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723206, 130723, '处长地乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723207, 130723, '满德堂乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723500, 130723, '康保牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130723501, 130723, '屯垦林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724100, 130724, '平定堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724101, 130724, '小厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724102, 130724, '黄盖淖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724103, 130724, '九连城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724200, 130724, '高山堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724201, 130724, '小河子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724202, 130724, '二道渠乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724203, 130724, '大二号回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724204, 130724, '闪电河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724205, 130724, '长梁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724206, 130724, '丰源店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724207, 130724, '西辛营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724208, 130724, '莲花滩乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130724209, 130724, '白土窑乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725100, 130725, '南壕堑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725101, 130725, '大青沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725102, 130725, '八道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725103, 130725, '红土梁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725104, 130725, '小蒜沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725105, 130725, '三工地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725106, 130725, '满井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725200, 130725, '大营盘乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725201, 130725, '大苏计乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725202, 130725, '石井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725205, 130725, '七甲乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725206, 130725, '套里庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725207, 130725, '甲石河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130725208, 130725, '下马圈乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726100, 130726, '蔚州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726101, 130726, '代王城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726102, 130726, '西合营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726103, 130726, '吉家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726104, 130726, '白乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726105, 130726, '暖泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726106, 130726, '南留庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726107, 130726, '北水泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726108, 130726, '桃花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726109, 130726, '阳眷镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726110, 130726, '宋家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726200, 130726, '下宫村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726202, 130726, '南杨庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726203, 130726, '柏树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726204, 130726, '常宁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726205, 130726, '涌泉庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726206, 130726, '杨庄窠乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726207, 130726, '南岭庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726208, 130726, '陈家洼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726209, 130726, '黄梅乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726210, 130726, '白草村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130726211, 130726, '草沟堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727100, 130727, '西城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727101, 130727, '东城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727102, 130727, '化稍营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727103, 130727, '揣骨疃镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727104, 130727, '东井集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727200, 130727, '要家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727201, 130727, '东坊城堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727202, 130727, '井儿沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727203, 130727, '三马坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727204, 130727, '高墙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727205, 130727, '大田洼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727206, 130727, '辛堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727207, 130727, '马圈堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130727208, 130727, '浮图讲乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728100, 130728, '柴沟堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728101, 130728, '左卫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728102, 130728, '头百户镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728103, 130728, '怀安城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728200, 130728, '渡口堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728201, 130728, '第六屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728202, 130728, '西湾堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728203, 130728, '西沙城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728204, 130728, '太平庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728205, 130728, '王虎屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130728206, 130728, '第三堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730100, 130730, '沙城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730101, 130730, '北辛堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730102, 130730, '新保安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730103, 130730, '东花园镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730104, 130730, '官厅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730105, 130730, '桑园镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730106, 130730, '存瑞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730107, 130730, '土木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730108, 130730, '大黄庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730109, 130730, '西八里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730110, 130730, '小南辛堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730200, 130730, '狼山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730203, 130730, '鸡鸣驿乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730205, 130730, '东八里乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730207, 130730, '瑞云观乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730208, 130730, '孙庄子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130730210, 130730, '王家楼回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731100, 130731, '涿鹿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731101, 130731, '张家堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731102, 130731, '武家沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731103, 130731, '五堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731104, 130731, '保岱镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731105, 130731, '矾山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731106, 130731, '大堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731107, 130731, '河东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731108, 130731, '东小庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731109, 130731, '辉耀镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731110, 130731, '大河南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731111, 130731, '温泉屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731112, 130731, '蟒石口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731201, 130731, '栾庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731204, 130731, '黑山寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731205, 130731, '卧佛寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130731206, 130731, '谢家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732100, 130732, '赤城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732101, 130732, '田家窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732102, 130732, '龙关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732103, 130732, '雕鹗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732104, 130732, '独石口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732105, 130732, '白草镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732106, 130732, '龙门所镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732107, 130732, '后城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732108, 130732, '东卯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732200, 130732, '炮梁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732201, 130732, '大海陀乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732202, 130732, '镇宁堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732203, 130732, '马营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732204, 130732, '云州乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732205, 130732, '三道川乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732206, 130732, '东万口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732207, 130732, '茨营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130732208, 130732, '样田乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130771001, 130771, '南站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130771002, 130771, '马路东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130771100, 130771, '老鸦庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130771101, 130771, '沈家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130771102, 130771, '姚家房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130771103, 130771, '沙岭子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772105, 130772, '沙沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772215, 130772, '宇宙营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772401, 130772, '黄山管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772402, 130772, '石门管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772403, 130772, '乌兰管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772404, 130772, '金沙管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130772405, 130772, '白塔管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130773501, 130773, '榆树沟管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130773502, 130773, '沙梁子管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130773503, 130773, '小城子管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130773504, 130773, '东大门管理处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802001, 130802, '西大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802002, 130802, '头道牌楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802003, 130802, '潘家沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802004, 130802, '中华路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802005, 130802, '新华路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802006, 130802, '石洞子沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802007, 130802, '桥东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802100, 130802, '水泉沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802101, 130802, '狮子沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802102, 130802, '牛圈子沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802103, 130802, '大石庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130802105, 130802, '双峰寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803001, 130803, '元宝山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803002, 130803, '钢城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803003, 130803, '秀水街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803100, 130803, '双塔山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803101, 130803, '滦河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803102, 130803, '大庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803103, 130803, '偏桥子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803104, 130803, '西地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130803105, 130803, '陈栅子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130804001, 130804, '铁北路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130804100, 130804, '鹰手营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130804101, 130804, '北马圈子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130804102, 130804, '寿王坟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130804103, 130804, '汪家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821100, 130821, '下板城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821102, 130821, '甲山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821103, 130821, '六沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821104, 130821, '三沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821105, 130821, '头沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821106, 130821, '高寺台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821107, 130821, '鞍匠镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821108, 130821, '三家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821109, 130821, '磴上镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821110, 130821, '上谷镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821111, 130821, '新杖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821112, 130821, '石灰窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821200, 130821, '东小白旗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821202, 130821, '刘杖子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821204, 130821, '孟家院乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821205, 130821, '大营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821206, 130821, '八家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821208, 130821, '满杖子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821210, 130821, '五道河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821211, 130821, '岔沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821212, 130821, '岗子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821214, 130821, '两家满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130821216, 130821, '仓子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822100, 130822, '兴隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822101, 130822, '半壁山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822102, 130822, '挂兰峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822103, 130822, '青松岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822104, 130822, '六道河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822105, 130822, '平安堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822106, 130822, '北营房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822107, 130822, '孤山子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822108, 130822, '蓝旗营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822109, 130822, '雾灵山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822110, 130822, '李家营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822111, 130822, '大杖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822112, 130822, '三道河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822113, 130822, '蘑菇峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822114, 130822, '大水泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822200, 130822, '南天门满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822202, 130822, '八卦岭满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822203, 130822, '陡子峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822204, 130822, '上石洞乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130822211, 130822, '安子岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824001, 130824, '中兴路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824100, 130824, '滦平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824101, 130824, '长山峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824102, 130824, '红旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824103, 130824, '金沟屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824104, 130824, '虎什哈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824105, 130824, '巴克什营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824106, 130824, '张百湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824107, 130824, '付营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824108, 130824, '大屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824109, 130824, '火斗山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824110, 130824, '两间房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824111, 130824, '小营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824200, 130824, '平坊满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824201, 130824, '安纯沟门满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824206, 130824, '西沟满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824207, 130824, '邓厂满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824208, 130824, '五道营子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824209, 130824, '马营子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130824210, 130824, '付家店满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825001, 130825, '安州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825100, 130825, '苔山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825101, 130825, '韩麻营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825102, 130825, '中关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825103, 130825, '七家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825104, 130825, '汤头沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825105, 130825, '张三营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825106, 130825, '唐三营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825107, 130825, '蓝旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825108, 130825, '步古沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825109, 130825, '郭家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825110, 130825, '茅荆坝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825200, 130825, '荒地乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825201, 130825, '章吉营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825203, 130825, '尹家营满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825204, 130825, '庙子沟蒙古族满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825205, 130825, '偏坡营满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825206, 130825, '山湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825207, 130825, '八达营蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825208, 130825, '太平庄满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825209, 130825, '旧屯满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825210, 130825, '西阿超满族蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825212, 130825, '碱房乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825213, 130825, '韩家店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130825214, 130825, '湾沟门乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826001, 130826, '新丰路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826100, 130826, '大阁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826101, 130826, '大滩镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826102, 130826, '鱼儿山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826103, 130826, '土城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826104, 130826, '黄旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826105, 130826, '凤山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826106, 130826, '波罗诺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826107, 130826, '黑山咀镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826108, 130826, '天桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826109, 130826, '胡麻营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826110, 130826, '将军营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826200, 130826, '万胜永乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826201, 130826, '四岔口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826202, 130826, '苏家店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826203, 130826, '外沟门乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826204, 130826, '草原乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826205, 130826, '窟窿山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826206, 130826, '小坝子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826207, 130826, '五道营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826209, 130826, '选将营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826210, 130826, '西官营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826211, 130826, '王营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826212, 130826, '北头营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826214, 130826, '石人沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826215, 130826, '汤河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130826216, 130826, '杨木栅子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827100, 130827, '宽城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827101, 130827, '龙须门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827102, 130827, '峪耳崖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827103, 130827, '板城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827104, 130827, '汤道河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827105, 130827, '桲罗台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827106, 130827, '碾子峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827107, 130827, '亮甲台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827108, 130827, '化皮溜子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827109, 130827, '松岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827201, 130827, '塌山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827203, 130827, '孟子岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827204, 130827, '独石沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827207, 130827, '铧尖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827208, 130827, '东黄花川乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827210, 130827, '苇子沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827211, 130827, '大字沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130827212, 130827, '大石柱子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828100, 130828, '围场镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828101, 130828, '四合永镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828102, 130828, '克勒沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828103, 130828, '棋盘山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828104, 130828, '半截塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828105, 130828, '朝阳地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828106, 130828, '朝阳湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828107, 130828, '腰站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828108, 130828, '龙头山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828109, 130828, '新拨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828110, 130828, '御道口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828111, 130828, '城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828200, 130828, '道坝子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828203, 130828, '黄土坎乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828204, 130828, '四道沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828205, 130828, '兰旗卡伦乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828206, 130828, '银窝沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828207, 130828, '新地乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828208, 130828, '广发永乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828209, 130828, '育太和乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828210, 130828, '郭家湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828211, 130828, '杨家湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828212, 130828, '大唤起乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828213, 130828, '哈里哈乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828215, 130828, '张家湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828216, 130828, '宝元栈乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828217, 130828, '山湾子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828218, 130828, '三义永乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828219, 130828, '姜家店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828220, 130828, '下伙房乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828221, 130828, '燕格柏乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828222, 130828, '牌楼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828224, 130828, '老窝铺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828226, 130828, '石桌子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828227, 130828, '大头山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828228, 130828, '南山嘴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828229, 130828, '西龙头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828450, 130828, '塞罕坝机械林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130828500, 130828, '国营御道口牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130871104, 130871, '冯营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130871106, 130871, '上板城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881100, 130881, '平泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881101, 130881, '黄土梁子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881102, 130881, '榆树林子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881103, 130881, '杨树岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881104, 130881, '七沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881105, 130881, '小寺沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881106, 130881, '党坝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881107, 130881, '卧龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881108, 130881, '南五十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881109, 130881, '北五十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881110, 130881, '桲椤树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881111, 130881, '柳溪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881112, 130881, '平北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881113, 130881, '青河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881114, 130881, '台头山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881200, 130881, '王土房乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881203, 130881, '七家岱满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881206, 130881, '茅兰沟满族蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130881210, 130881, '道虎沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130902001, 130902, '建设北街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130902002, 130902, '车站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130902003, 130902, '南大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130902004, 130902, '东环街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130902005, 130902, '道东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130902200, 130902, '小赵庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903001, 130903, '水月寺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903002, 130903, '南环中路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903003, 130903, '南湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903004, 130903, '市场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903005, 130903, '西环中街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903006, 130903, '公园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903100, 130903, '小王庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130903101, 130903, '南陈屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921100, 130921, '旧州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921101, 130921, '兴济镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921102, 130921, '杜生镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921103, 130921, '崔尔庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921104, 130921, '李天木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921105, 130921, '纸房头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921106, 130921, '姚官屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921200, 130921, '薛官屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921201, 130921, '捷地回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921202, 130921, '张官屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921204, 130921, '风化店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921206, 130921, '杜林回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921207, 130921, '汪家铺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921208, 130921, '刘家庙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921209, 130921, '仵龙堂乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921210, 130921, '大官厅乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921211, 130921, '高川乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921212, 130921, '黄递铺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130921213, 130921, '大褚村回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922100, 130922, '清州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922101, 130922, '金牛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922102, 130922, '新兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922103, 130922, '流河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922104, 130922, '木门店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922105, 130922, '马厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922106, 130922, '盘古镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922107, 130922, '曹寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922200, 130922, '上伍乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922203, 130922, '陈嘴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130922400, 130922, '青县农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923100, 130923, '东光镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923101, 130923, '连镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923102, 130923, '找王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923103, 130923, '秦村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923104, 130923, '灯明寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923105, 130923, '南霞口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923106, 130923, '大单镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923107, 130923, '龙王李镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130923201, 130923, '于桥乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924100, 130924, '苏基镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924101, 130924, '辛集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924102, 130924, '高湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924103, 130924, '赵毛陶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924201, 130924, '香坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924202, 130924, '小山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924203, 130924, '张会亭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924400, 130924, '海兴县农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924401, 130924, '青先农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130924402, 130924, '青锋农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925100, 130925, '盐山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925101, 130925, '望树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925102, 130925, '庆云镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925103, 130925, '韩集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925104, 130925, '千童镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925105, 130925, '圣佛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925106, 130925, '边务镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925107, 130925, '小庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925108, 130925, '杨集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925201, 130925, '小营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925203, 130925, '孟店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130925204, 130925, '常庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926100, 130926, '肃宁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926101, 130926, '梁家村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926102, 130926, '窝北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926103, 130926, '尚村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926104, 130926, '万里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926105, 130926, '师素镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926106, 130926, '河北留善寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926107, 130926, '付家佐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130926205, 130926, '邵庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927100, 130927, '南皮镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927101, 130927, '冯家口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927102, 130927, '寨子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927103, 130927, '鲍官屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927104, 130927, '王寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927105, 130927, '乌马营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927106, 130927, '潞灌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927200, 130927, '大浪淀乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130927201, 130927, '刘八里乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928100, 130928, '桑园镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928101, 130928, '铁城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928102, 130928, '于集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928103, 130928, '梁集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928104, 130928, '安陵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928200, 130928, '曹家洼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928201, 130928, '东宋门乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928202, 130928, '杨家寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928203, 130928, '沟店铺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928204, 130928, '何庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130928400, 130928, '吴桥经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929100, 130929, '乐寿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929101, 130929, '淮镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929102, 130929, '郭庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929103, 130929, '河城街镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929104, 130929, '韩村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929105, 130929, '陌南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929106, 130929, '陈庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929107, 130929, '段村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929108, 130929, '高官镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929109, 130929, '十五级镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929206, 130929, '商林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929209, 130929, '张村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929210, 130929, '临河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929211, 130929, '小平王乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929213, 130929, '垒头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929214, 130929, '南河头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929215, 130929, '西城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929216, 130929, '本斋回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929400, 130929, '梅庄洼农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130929401, 130929, '献县经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130930100, 130930, '孟村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130930101, 130930, '新县镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130930102, 130930, '辛店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130930103, 130930, '高寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130930200, 130930, '宋庄子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130930201, 130930, '牛进庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130971400, 130971, '开发区乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130972400, 130972, '高新乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130973206, 130973, '新村回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130973400, 130973, '南大港管理区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130973401, 130973, '国营中捷农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130973402, 130973, '港城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130973403, 130973, '临港化工园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981001, 130981, '解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981002, 130981, '河东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981003, 130981, '鼓楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981100, 130981, '泊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981101, 130981, '交河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981102, 130981, '齐桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981103, 130981, '寺门村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981104, 130981, '郝村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981105, 130981, '富镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981106, 130981, '文庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981107, 130981, '洼里王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981108, 130981, '四营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981201, 130981, '王武庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981202, 130981, '营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981204, 130981, '西辛店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130981400, 130981, '河北泊头经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982001, 130982, '新华路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982002, 130982, '西环路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982003, 130982, '永丰路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982004, 130982, '中华路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982005, 130982, '渤海路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982006, 130982, '油建路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982007, 130982, '会战道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982100, 130982, '出岸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982101, 130982, '石门桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982102, 130982, '吕公堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982103, 130982, '长丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982106, 130982, '梁召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982107, 130982, '辛中驿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982108, 130982, '麻家坞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982109, 130982, '北辛庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982110, 130982, '议论堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982204, 130982, '青塔乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982207, 130982, '北汉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982208, 130982, '于村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982400, 130982, '华北石油管理局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130982500, 130982, '河北任丘经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983001, 130983, '骅东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983002, 130983, '骅中街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983003, 130983, '骅西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983100, 130983, '黄骅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983101, 130983, '南排河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983102, 130983, '吕桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983103, 130983, '旧城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983104, 130983, '齐家务镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983105, 130983, '滕庄子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983106, 130983, '常郭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983107, 130983, '羊二庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983204, 130983, '官庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130983207, 130983, '羊三木回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984001, 130984, '瀛州路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984002, 130984, '城垣西路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984101, 130984, '米各庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984102, 130984, '景和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984103, 130984, '卧佛堂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984104, 130984, '束城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984105, 130984, '留古寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984106, 130984, '沙河桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984107, 130984, '诗经村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984108, 130984, '尊祖庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984109, 130984, '兴村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984110, 130984, '行别营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984111, 130984, '故仙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984201, 130984, '黎民居乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984203, 130984, '沙洼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984204, 130984, '西九吉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984205, 130984, '北石槽乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984209, 130984, '时村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984212, 130984, '龙华店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984213, 130984, '果子洼回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (130984403, 130984, '河北河间经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002001, 131002, '银河南路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002002, 131002, '光明西道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002003, 131002, '永华道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002100, 131002, '落垡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002101, 131002, '码头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002102, 131002, '葛渔城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002103, 131002, '东沽港镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002104, 131002, '调河头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002105, 131002, '北史家务镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002106, 131002, '杨税务镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002201, 131002, '仇庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002400, 131002, '廊坊龙河高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002401, 131002, '河北廊坊高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002402, 131002, '河北廊坊龙港经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131002403, 131002, '河北安次经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003001, 131003, '银河北路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003002, 131003, '爱民东道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003003, 131003, '解放道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003004, 131003, '新开路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003005, 131003, '新源道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003100, 131003, '南尖塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003101, 131003, '万庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003102, 131003, '九州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003103, 131003, '北旺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131003500, 131003, '新世纪步行街服务中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022100, 131022, '固安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022101, 131022, '宫村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022102, 131022, '柳泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022103, 131022, '牛驼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022104, 131022, '马庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022200, 131022, '东湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022201, 131022, '彭村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022202, 131022, '渠沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022203, 131022, '礼让店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131022400, 131022, '固安温泉休闲商务产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023001, 131023, '城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023100, 131023, '永清镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023101, 131023, '韩村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023102, 131023, '后奕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023103, 131023, '别古庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023104, 131023, '里澜城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023200, 131023, '管家务回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023201, 131023, '曹家务乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023202, 131023, '龙虎庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023203, 131023, '刘街乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023204, 131023, '三圣口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023400, 131023, '河北永清经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131023401, 131023, '北京亦庄永清高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024100, 131024, '淑阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024101, 131024, '蒋辛屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024102, 131024, '渠口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024103, 131024, '安头屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024104, 131024, '安平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024105, 131024, '刘宋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024106, 131024, '五百户镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024107, 131024, '钱旺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024108, 131024, '钳屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024500, 131024, '河北香河经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131024501, 131024, '香河新兴产业示范区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025100, 131025, '平舒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025101, 131025, '旺村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025102, 131025, '大尚屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025103, 131025, '南赵扶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025104, 131025, '留各庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025105, 131025, '权村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025106, 131025, '里坦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025107, 131025, '广安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025108, 131025, '北魏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025109, 131025, '臧屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131025400, 131025, '河北大城经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026100, 131026, '文安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026101, 131026, '新镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026102, 131026, '苏桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026103, 131026, '大柳河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026104, 131026, '左各庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026105, 131026, '滩里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026106, 131026, '史各庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026107, 131026, '赵各庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026108, 131026, '兴隆宫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026109, 131026, '大留镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026110, 131026, '孙氏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026111, 131026, '德归镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131026200, 131026, '大围河回族满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028001, 131028, '北辰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028100, 131028, '大厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028101, 131028, '夏垫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028102, 131028, '祁各庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028103, 131028, '邵府镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028104, 131028, '陈府镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131028400, 131028, '河北大厂高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131071450, 131071, '耀华道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131071451, 131071, '云鹏道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081001, 131081, '裕华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081100, 131081, '霸州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081101, 131081, '南孟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081102, 131081, '信安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081103, 131081, '堂二里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081104, 131081, '煎茶铺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081105, 131081, '胜芳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081106, 131081, '杨芬港镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081107, 131081, '康仙庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081108, 131081, '王庄子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081200, 131081, '岔河集乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081202, 131081, '东杨庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131081204, 131081, '东段乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082001, 131082, '鼎盛东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082002, 131082, '泃阳西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082003, 131082, '行宫东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082004, 131082, '迎宾北路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082005, 131082, '燕顺路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082006, 131082, '康城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082100, 131082, '泃阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082101, 131082, '李旗庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082102, 131082, '杨庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082103, 131082, '皇庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082104, 131082, '新集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082105, 131082, '段甲岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082106, 131082, '黄土庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082107, 131082, '高楼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082108, 131082, '齐心庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082109, 131082, '燕郊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082450, 131082, '燕郊高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131082451, 131082, '河北三河国家农业科技园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102001, 131102, '河西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102002, 131102, '河东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102003, 131102, '路北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102004, 131102, '中华大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102100, 131102, '郑家河沿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102101, 131102, '赵家圈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102102, 131102, '邓庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131102200, 131102, '何家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103100, 131103, '冀州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103102, 131103, '官道李镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103103, 131103, '南午村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103104, 131103, '周村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103105, 131103, '码头李镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103106, 131103, '西王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103200, 131103, '门家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103201, 131103, '徐家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103202, 131103, '北漳淮乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103203, 131103, '小寨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131103400, 131103, '社区建设办公室', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121100, 131121, '枣强镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121101, 131121, '恩察镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121102, 131121, '大营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121103, 131121, '嘉会镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121104, 131121, '马屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121105, 131121, '肖张镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121106, 131121, '张秀屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121107, 131121, '新屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121108, 131121, '唐林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121202, 131121, '王均乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131121204, 131121, '王常乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122100, 131122, '武邑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122101, 131122, '清凉店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122102, 131122, '审坡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122103, 131122, '赵桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122104, 131122, '韩庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122105, 131122, '肖桥头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122106, 131122, '龙店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122201, 131122, '圈头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131122203, 131122, '大紫塔乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131123100, 131123, '武强镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131123101, 131123, '街关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131123102, 131123, '周窝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131123103, 131123, '东孙庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131123104, 131123, '豆村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131123201, 131123, '北代乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124100, 131124, '饶阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124101, 131124, '大尹村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124102, 131124, '五公镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124103, 131124, '大官亭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124104, 131124, '王同岳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124105, 131124, '东里满镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131124106, 131124, '留楚镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125100, 131125, '安平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125101, 131125, '马店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125102, 131125, '南王庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125103, 131125, '大子文镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125104, 131125, '东黄城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125200, 131125, '大何庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125201, 131125, '程油子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125202, 131125, '西两洼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125400, 131125, '高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131125401, 131125, '社区建设办公室', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126100, 131126, '郑口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126101, 131126, '夏庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126102, 131126, '青罕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126103, 131126, '故城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126104, 131126, '武官寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126105, 131126, '饶阳店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126106, 131126, '军屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126107, 131126, '建国镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126108, 131126, '西半屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126109, 131126, '房庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126110, 131126, '三朗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126200, 131126, '辛庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131126201, 131126, '里老乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127100, 131127, '景州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127101, 131127, '龙华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127102, 131127, '广川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127103, 131127, '王瞳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127104, 131127, '洚河流镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127105, 131127, '安陵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127106, 131127, '杜桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127107, 131127, '王谦寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127108, 131127, '北留智镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127109, 131127, '留智庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127110, 131127, '梁集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127200, 131127, '刘集乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127201, 131127, '连镇乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127203, 131127, '温城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127204, 131127, '后留名府乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131127205, 131127, '青兰乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128100, 131128, '阜城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128101, 131128, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128102, 131128, '码头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128103, 131128, '霞口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128104, 131128, '崔家庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128105, 131128, '漫河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128201, 131128, '建桥乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128202, 131128, '蒋坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128203, 131128, '大白乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131128204, 131128, '王集乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131171201, 131171, '大麻森乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131171400, 131171, '高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131171401, 131171, '新型功能材料产业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131171402, 131171, '苏正办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131172101, 131172, '魏家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131172203, 131172, '彭杜村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131172401, 131172, '滨湖新区教育园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182100, 131182, '唐奉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182101, 131182, '深州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182102, 131182, '辰时镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182103, 131182, '榆科镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182104, 131182, '魏家桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182105, 131182, '大堤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182106, 131182, '前磨头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182107, 131182, '王家井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182108, 131182, '护驾迟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182109, 131182, '大屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182110, 131182, '高古庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182111, 131182, '北溪村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182112, 131182, '大冯营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182200, 131182, '兵曹乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182201, 131182, '穆村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182202, 131182, '东安庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182206, 131182, '乔屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182400, 131182, '深州监狱', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182401, 131182, '城市新区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (131182403, 131182, '经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105001, 140105, '坞城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105002, 140105, '营盘街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105003, 140105, '北营街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105004, 140105, '平阳路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105005, 140105, '黄陵街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105006, 140105, '小店街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105007, 140105, '龙城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105100, 140105, '北格镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105200, 140105, '西温庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140105201, 140105, '刘家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106001, 140106, '柳巷街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106002, 140106, '文庙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106003, 140106, '庙前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106004, 140106, '迎泽街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106005, 140106, '桥东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106006, 140106, '老军营街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140106100, 140106, '郝庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107001, 140107, '巨轮街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107002, 140107, '三桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107003, 140107, '鼓楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107004, 140107, '杏花岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107005, 140107, '坝陵桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107006, 140107, '大东关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107007, 140107, '职工新街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107008, 140107, '敦化坊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107009, 140107, '涧河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107010, 140107, '杨家峪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107011, 140107, '享堂街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140107100, 140107, '中涧河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108001, 140108, '尖草坪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108002, 140108, '光社街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108003, 140108, '上兰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108004, 140108, '南寨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108005, 140108, '迎新街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108006, 140108, '古城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108007, 140108, '汇丰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108008, 140108, '柴村街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108009, 140108, '新城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108100, 140108, '向阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108101, 140108, '阳曲镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108201, 140108, '柏板乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108202, 140108, '西墕乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140108400, 140108, '太原中北高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109001, 140109, '千峰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109002, 140109, '下元街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109003, 140109, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109004, 140109, '兴华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109005, 140109, '万柏林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109006, 140109, '杜儿坪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109007, 140109, '白家庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109008, 140109, '南寒街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109009, 140109, '东社街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109011, 140109, '小井峪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109012, 140109, '西铭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109013, 140109, '长风西街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109014, 140109, '神堂沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140109015, 140109, '王化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140110001, 140110, '义井街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140110002, 140110, '罗城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140110003, 140110, '晋源街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140110100, 140110, '金胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140110101, 140110, '晋祠镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140110102, 140110, '姚村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121100, 140121, '清源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121101, 140121, '徐沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121102, 140121, '东于镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121103, 140121, '孟封镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121200, 140121, '马峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121201, 140121, '柳杜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121202, 140121, '西谷乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121203, 140121, '王答乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140121204, 140121, '集义乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122100, 140122, '黄寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122101, 140122, '大盂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122102, 140122, '东黄水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122103, 140122, '泥屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122200, 140122, '高村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122201, 140122, '侯村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122202, 140122, '凌井店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122203, 140122, '西凌井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122205, 140122, '杨兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140122400, 140122, '中心镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123100, 140123, '娄烦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123101, 140123, '静游镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123102, 140123, '杜交曲镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123201, 140123, '马家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123202, 140123, '盖家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123203, 140123, '米峪镇乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140123204, 140123, '天池店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140171401, 140171, '唐槐园区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140171402, 140171, '学府园区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140171403, 140171, '阳曲产业园区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140171404, 140171, '潇河园区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140171405, 140171, '科创城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181001, 140181, '东曲街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181002, 140181, '西曲街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181003, 140181, '桃园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181004, 140181, '屯兰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181100, 140181, '河口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181101, 140181, '镇城底镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181102, 140181, '马兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181201, 140181, '嘉乐泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181202, 140181, '梭峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181203, 140181, '岔口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181204, 140181, '常安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181205, 140181, '原相乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140181206, 140181, '邢家社乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212100, 140212, '新荣镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212101, 140212, '古店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212102, 140212, '花园屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212200, 140212, '破鲁堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212202, 140212, '郭家窑乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212206, 140212, '西村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140212209, 140212, '堡子湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213050, 140213, '永泰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213051, 140213, '古城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213052, 140213, '新旺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213053, 140213, '迎宾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213054, 140213, '振华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213055, 140213, '清远街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213056, 140213, '武定街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213057, 140213, '御河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213058, 140213, '开源街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213059, 140213, '大庆路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213060, 140213, '马军营街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213061, 140213, '卧虎湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213062, 140213, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213063, 140213, '鹿苑街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213064, 140213, '白登山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213065, 140213, '文瀛湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213066, 140213, '水泊寺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140213067, 140213, '小南头街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214001, 140214, '新胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214002, 140214, '新平旺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214016, 140214, '新泉路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214017, 140214, '民胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214018, 140214, '口泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214023, 140214, '平泉路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214025, 140214, '和顺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214026, 140214, '和瑞街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214027, 140214, '平盛路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214028, 140214, '清泉街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214029, 140214, '西花园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214030, 140214, '老平旺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214031, 140214, '新文街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214032, 140214, '和旺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214033, 140214, '玉龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214034, 140214, '云武街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214035, 140214, '云燕街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214036, 140214, '玉泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214037, 140214, '平德街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214038, 140214, '平喜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214039, 140214, '平源街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214101, 140214, '高山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214102, 140214, '云冈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214200, 140214, '口泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214206, 140214, '西韩岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214207, 140214, '平旺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140214210, 140214, '鸦儿崖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215100, 140215, '西坪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215101, 140215, '倍加造镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215102, 140215, '周士庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215201, 140215, '吉家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215202, 140215, '峰峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215204, 140215, '杜庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215205, 140215, '党留庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215209, 140215, '聚乐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140215211, 140215, '许堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221100, 140221, '龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221101, 140221, '罗文皂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221102, 140221, '大白登镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221103, 140221, '王官屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221104, 140221, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221105, 140221, '东小村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221106, 140221, '友宰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221201, 140221, '长城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221204, 140221, '狮子屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221209, 140221, '下深井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140221212, 140221, '鳌石乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222100, 140222, '玉泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222101, 140222, '谷前堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222102, 140222, '米薪关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222103, 140222, '逯家湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222104, 140222, '新平堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222200, 140222, '卅里铺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222204, 140222, '贾家屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222206, 140222, '赵家沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222208, 140222, '南高崖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222209, 140222, '张西河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140222210, 140222, '马家皂乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223100, 140223, '壶泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223101, 140223, '南村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223102, 140223, '加斗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223103, 140223, '作疃镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223104, 140223, '梁庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223200, 140223, '一斗泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223202, 140223, '蕉山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140223206, 140223, '宜兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224100, 140224, '武灵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224101, 140224, '东河南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224102, 140224, '上寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224200, 140224, '落水河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224205, 140224, '赵北乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224206, 140224, '石家田乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224207, 140224, '柳科乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224208, 140224, '白崖台乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224210, 140224, '红石塄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224212, 140224, '下关乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140224213, 140224, '独峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225100, 140225, '永安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225101, 140225, '西坊城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225102, 140225, '蔡村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225103, 140225, '沙圪坨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225104, 140225, '王庄堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225106, 140225, '青磁窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225201, 140225, '东坊城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225203, 140225, '裴村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225204, 140225, '驼峰乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225205, 140225, '西留村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225206, 140225, '下韩村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225208, 140225, '南榆林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225210, 140225, '吴城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225213, 140225, '大仁庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225215, 140225, '千佛岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140225218, 140225, '官儿乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226100, 140226, '云兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226101, 140226, '鹊儿山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226102, 140226, '店湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226200, 140226, '管家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226201, 140226, '张家场乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226205, 140226, '三屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226206, 140226, '马道头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140226207, 140226, '小京庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140271400, 140271, '经济技术开发区乡级单位', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140302001, 140302, '上站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140302002, 140302, '下站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140302003, 140302, '北大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140302004, 140302, '南山路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140302005, 140302, '义井街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140302100, 140302, '义井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140303001, 140303, '平潭街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140303003, 140303, '蔡洼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140303004, 140303, '赛鱼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140303005, 140303, '沙坪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140303006, 140303, '贵石沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140303007, 140303, '桥头街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311100, 140311, '荫营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311101, 140311, '河底镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311103, 140311, '平坦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311200, 140311, '西南舁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311201, 140311, '杨家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311202, 140311, '李家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311203, 140311, '旧街乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140311400, 140311, '开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321100, 140321, '冠山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321101, 140321, '冶西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321102, 140321, '锁簧镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321103, 140321, '张庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321104, 140321, '东回镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321105, 140321, '柏井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321106, 140321, '娘子关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321107, 140321, '巨城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321200, 140321, '石门口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140321201, 140321, '岔口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322100, 140322, '秀水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322101, 140322, '孙家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322102, 140322, '路家村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322103, 140322, '南娄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322104, 140322, '牛村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322105, 140322, '苌池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322106, 140322, '上社镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322107, 140322, '西烟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322200, 140322, '仙人乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322201, 140322, '北下庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322203, 140322, '梁家寨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322204, 140322, '西潘乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140322205, 140322, '东梁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403001, 140403, '东街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403002, 140403, '西街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403003, 140403, '英雄南路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403004, 140403, '英雄中路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403005, 140403, '紫金街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403006, 140403, '太行东街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403007, 140403, '太行西街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403008, 140403, '延安南路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403009, 140403, '常青街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403010, 140403, '五马街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403013, 140403, '堠北庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403014, 140403, '老顶山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403015, 140403, '大辛庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403103, 140403, '马厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403104, 140403, '黄碾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403105, 140403, '西白兔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403400, 140403, '长治市漳泽工业转型试验区管理委员会社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403401, 140403, '长治市老顶山旅游开发管理中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140403403, 140403, '长治经济技术开发区潞州区部分', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404001, 140404, '韩店街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404101, 140404, '苏店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404102, 140404, '荫城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404103, 140404, '西火镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404104, 140404, '八义镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404106, 140404, '郝家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404107, 140404, '南宋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404201, 140404, '西池乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404202, 140404, '北呈乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404203, 140404, '东和乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404400, 140404, '振兴乡村生态文化旅游区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404401, 140404, '上党经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140404406, 140404, '长治市经济技术开发区上党区部分', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405001, 140405, '麟绛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405101, 140405, '上村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405102, 140405, '渔泽镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405103, 140405, '余吾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405104, 140405, '吾元镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405105, 140405, '张店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405106, 140405, '丰宜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405200, 140405, '李高乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405201, 140405, '路村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405202, 140405, '河神庙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405400, 140405, '西流寨开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405401, 140405, '康庄工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405402, 140405, '上莲开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140405403, 140405, '屯留经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406001, 140406, '潞华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406002, 140406, '成家川街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406003, 140406, '翟店街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406100, 140406, '店上镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406101, 140406, '微子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406102, 140406, '辛安泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406104, 140406, '史回镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406201, 140406, '黄牛蹄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140406400, 140406, '潞城经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423100, 140423, '古韩镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423101, 140423, '王桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423102, 140423, '侯堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423103, 140423, '夏店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423104, 140423, '虒亭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423105, 140423, '西营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423106, 140423, '王村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423107, 140423, '下良镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423108, 140423, '善福镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140423402, 140423, '襄垣经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425100, 140425, '青羊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425101, 140425, '龙溪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425102, 140425, '石城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425103, 140425, '苗庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425104, 140425, '玉峡关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425200, 140425, '西沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425201, 140425, '东寺头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425202, 140425, '虹梯关乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425203, 140425, '阳高乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425204, 140425, '北耽车乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425206, 140425, '北社乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140425400, 140425, '平顺经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426101, 140426, '东阳关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426102, 140426, '上遥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426103, 140426, '西井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426104, 140426, '黄崖洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426105, 140426, '黎侯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426106, 140426, '洪井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426107, 140426, '西仵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426108, 140426, '程家山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140426400, 140426, '黎城县经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427100, 140427, '龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427101, 140427, '百尺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427102, 140427, '店上镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427103, 140427, '晋庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427104, 140427, '树掌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427105, 140427, '大峡谷镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427106, 140427, '集店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427201, 140427, '黄山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427202, 140427, '东井岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427203, 140427, '石坡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140427401, 140427, '壶关县经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428100, 140428, '丹朱镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428101, 140428, '鲍店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428102, 140428, '石哲镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428103, 140428, '大堡头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428104, 140428, '慈林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428105, 140428, '色头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428106, 140428, '南漳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428107, 140428, '宋村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428108, 140428, '南陈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428201, 140428, '碾张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428202, 140428, '常张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140428400, 140428, '长子经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429100, 140429, '丰州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429101, 140429, '洪水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429102, 140429, '蟠龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429103, 140429, '监漳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429104, 140429, '故城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429105, 140429, '韩北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429202, 140429, '大有乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429203, 140429, '贾豁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429205, 140429, '上司乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429206, 140429, '石北乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429207, 140429, '涌泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429208, 140429, '分水岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429400, 140429, '武乡经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140429401, 140429, '武乡县现代农业产业示范区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430100, 140430, '定昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430101, 140430, '郭村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430102, 140430, '故县镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430103, 140430, '新店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430104, 140430, '漳源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430105, 140430, '册村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430106, 140430, '沁州黄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430107, 140430, '南里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430108, 140430, '松村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430203, 140430, '牛寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430206, 140430, '杨安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140430400, 140430, '沁县现代农业产业示范区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431100, 140431, '沁河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431101, 140431, '郭道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431102, 140431, '灵空山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431103, 140431, '王和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431105, 140431, '王陶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431107, 140431, '景凤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431200, 140431, '中峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431201, 140431, '法中乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431202, 140431, '交口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431203, 140431, '聪子峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431204, 140431, '韩洪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431207, 140431, '赤石桥乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140431400, 140431, '沁源经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140471400, 140471, '长治高新技术开发区城北街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502001, 140502, '东街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502002, 140502, '西街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502003, 140502, '南街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502004, 140502, '北街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502006, 140502, '钟家庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502007, 140502, '西上庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502009, 140502, '开发区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140502100, 140502, '北石店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521100, 140521, '龙港镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521101, 140521, '中村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521102, 140521, '郑庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521103, 140521, '端氏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521104, 140521, '嘉峰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521105, 140521, '郑村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521106, 140521, '柿庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521201, 140521, '土沃乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521202, 140521, '张村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521204, 140521, '胡底乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521205, 140521, '固县乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140521206, 140521, '十里乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522100, 140522, '凤城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522101, 140522, '北留镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522102, 140522, '润城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522103, 140522, '町店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522104, 140522, '芹池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522105, 140522, '次营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522106, 140522, '横河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522107, 140522, '河北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522108, 140522, '蟒河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522109, 140522, '东冶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522110, 140522, '演礼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522111, 140522, '白桑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522201, 140522, '寺头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522202, 140522, '西河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140522205, 140522, '董封乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524100, 140524, '崇文镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524101, 140524, '礼义镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524102, 140524, '附城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524103, 140524, '西河底镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524104, 140524, '平城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524105, 140524, '杨村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524106, 140524, '潞城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524204, 140524, '夺火乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524206, 140524, '马圪当乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524207, 140524, '古郊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140524209, 140524, '六泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525100, 140525, '南村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525101, 140525, '下村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525102, 140525, '大东沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525103, 140525, '周村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525104, 140525, '犁川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525105, 140525, '晋庙铺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525106, 140525, '金村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525107, 140525, '高都镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525108, 140525, '巴公镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525109, 140525, '大阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525110, 140525, '山河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525111, 140525, '大箕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525112, 140525, '柳树口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525113, 140525, '北义城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525114, 140525, '川底镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140525115, 140525, '南岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581001, 140581, '北城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581002, 140581, '东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581003, 140581, '南城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581101, 140581, '米山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581102, 140581, '三甲镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581103, 140581, '神农镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581104, 140581, '陈区镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581105, 140581, '北诗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581106, 140581, '河西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581107, 140581, '马村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581108, 140581, '野川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581109, 140581, '寺庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581201, 140581, '建宁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581202, 140581, '石末乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140581203, 140581, '原村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602001, 140602, '北城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602002, 140602, '南城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602003, 140602, '神头街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602004, 140602, '北旺庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602100, 140602, '神头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602101, 140602, '利民镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602200, 140602, '下团堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602201, 140602, '小平易乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602202, 140602, '滋润乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602204, 140602, '南榆林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602205, 140602, '贾庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602206, 140602, '沙塄河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602207, 140602, '窑子头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140602208, 140602, '张蔡庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603100, 140603, '井坪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603101, 140603, '凤凰城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603200, 140603, '白堂乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603201, 140603, '陶村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603202, 140603, '下水头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603203, 140603, '双碾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603204, 140603, '阻虎乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603205, 140603, '高石庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603206, 140603, '西水界乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603207, 140603, '下面高乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603209, 140603, '向阳堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140603210, 140603, '榆岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621100, 140621, '玉井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621101, 140621, '北周庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621102, 140621, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621103, 140621, '岱岳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621104, 140621, '广武镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621200, 140621, '吴马营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621201, 140621, '马营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621202, 140621, '下喇叭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621203, 140621, '合盛堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621205, 140621, '安荣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621206, 140621, '薛圐圙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140621209, 140621, '马营庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622100, 140622, '金城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622101, 140622, '南河种镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622102, 140622, '下社镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622200, 140622, '镇子梁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622201, 140622, '义井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622202, 140622, '臧寨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622203, 140622, '大黄巍乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622204, 140622, '杏寨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622205, 140622, '下马峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622206, 140622, '南泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622207, 140622, '大临河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140622208, 140622, '白马石乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623100, 140623, '新城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623101, 140623, '右卫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623102, 140623, '威远镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623103, 140623, '元堡子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623200, 140623, '牛心堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623202, 140623, '高家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623204, 140623, '杨千河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140623205, 140623, '李达窑乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140671400, 140671, '山西朔州经济开发区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681001, 140681, '云东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681002, 140681, '云中街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681003, 140681, '云西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681101, 140681, '吴家窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681102, 140681, '金沙滩镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681103, 140681, '毛家皂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681200, 140681, '何家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681201, 140681, '新家园乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681202, 140681, '亲和乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681203, 140681, '海北头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681205, 140681, '河头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681500, 140681, '金沙滩农牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140681501, 140681, '金沙滩林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702001, 140702, '北关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702002, 140702, '锦纶街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702003, 140702, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702004, 140702, '西南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702005, 140702, '路西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702006, 140702, '经纬街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702007, 140702, '安宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702008, 140702, '新建街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702009, 140702, '晋华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702100, 140702, '乌金山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702101, 140702, '东阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702103, 140702, '长凝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702104, 140702, '北田镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702105, 140702, '修文镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702200, 140702, '郭家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702201, 140702, '张庆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702202, 140702, '庄子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702203, 140702, '东赵乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702401, 140702, '山西转型综合改革示范区晋中开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140702402, 140702, '榆次区使赵乡社会事务管理中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703101, 140703, '胡村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703102, 140703, '范村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703103, 140703, '水秀镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703200, 140703, '侯城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703201, 140703, '北汪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703203, 140703, '阳邑乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703204, 140703, '小白乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703205, 140703, '任村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703401, 140703, '白塔区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703402, 140703, '北城区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140703403, 140703, '南城区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721100, 140721, '箕城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721101, 140721, '云簇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721102, 140721, '郝北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721103, 140721, '社城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721200, 140721, '河峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721201, 140721, '北寨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721202, 140721, '西马乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140721400, 140721, '城区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722100, 140722, '辽阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722101, 140722, '桐峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722102, 140722, '麻田镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722103, 140722, '芹泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722104, 140722, '拐儿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722200, 140722, '寒王乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722201, 140722, '石匣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722204, 140722, '羊角乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140722400, 140722, '城区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723100, 140723, '义兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723101, 140723, '李阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723102, 140723, '松烟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723103, 140723, '青城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723104, 140723, '横岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723200, 140723, '喂马乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723201, 140723, '平松乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723203, 140723, '马坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140723400, 140723, '城区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724100, 140724, '乐平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724101, 140724, '皋落镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724102, 140724, '冶头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724103, 140724, '沾尚镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724104, 140724, '大寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724200, 140724, '李家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724201, 140724, '界都乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724202, 140724, '三都乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724203, 140724, '赵壁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724204, 140724, '孔氏乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140724400, 140724, '城区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725100, 140725, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725101, 140725, '南燕竹镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725102, 140725, '宗艾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725103, 140725, '平头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725104, 140725, '松塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725105, 140725, '西洛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725106, 140725, '尹灵芝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725200, 140725, '平舒乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725201, 140725, '解愁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725202, 140725, '温家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725203, 140725, '景尚乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140725205, 140725, '羊头崖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727100, 140727, '昭馀镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727101, 140727, '东观镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727102, 140727, '古县镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727103, 140727, '贾令镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727104, 140727, '城赵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727105, 140727, '来远镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727201, 140727, '峪口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727400, 140727, '祁县经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140727404, 140727, '城区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728001, 140728, '古城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728002, 140728, '城东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728003, 140728, '城西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728100, 140728, '古陶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728101, 140728, '段村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728102, 140728, '东泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728103, 140728, '洪善镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728104, 140728, '宁固镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728200, 140728, '南政乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728201, 140728, '中都乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728202, 140728, '岳壁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728203, 140728, '卜宜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728205, 140728, '朱坑乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728206, 140728, '襄垣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728207, 140728, '杜家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140728208, 140728, '香乐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729100, 140729, '翠峰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729101, 140729, '静升镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729102, 140729, '两渡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729103, 140729, '夏门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729104, 140729, '南关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729105, 140729, '段纯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729202, 140729, '王禹乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729203, 140729, '坛镇乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729204, 140729, '梁家焉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729205, 140729, '交口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140729403, 140729, '灵石县城区社会事务服务中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781001, 140781, '北关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781002, 140781, '西关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781003, 140781, '东南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781004, 140781, '西南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781005, 140781, '北坛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781100, 140781, '义安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781101, 140781, '张兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781102, 140781, '连福镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781103, 140781, '洪山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781104, 140781, '龙凤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781105, 140781, '绵山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781106, 140781, '义棠镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781200, 140781, '城关乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140781201, 140781, '宋古乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802001, 140802, '中城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802002, 140802, '东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802003, 140802, '西城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802004, 140802, '南城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802005, 140802, '北城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802006, 140802, '安邑街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802007, 140802, '大渠街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802008, 140802, '姚孟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802100, 140802, '解州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802101, 140802, '龙居镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802102, 140802, '北相镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802103, 140802, '泓芝驿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802104, 140802, '三路里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802105, 140802, '陶村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802106, 140802, '东郭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802200, 140802, '席张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802201, 140802, '金井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802202, 140802, '王范乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802203, 140802, '冯村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802204, 140802, '上郭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802205, 140802, '上王乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140802404, 140802, '运城经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821100, 140821, '猗氏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821101, 140821, '嵋阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821102, 140821, '临晋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821103, 140821, '七级镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821104, 140821, '东张镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821105, 140821, '孙吉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821106, 140821, '三管镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821107, 140821, '牛杜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821108, 140821, '耽子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821109, 140821, '角杯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821200, 140821, '楚侯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821201, 140821, '庙上乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821203, 140821, '北辛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821204, 140821, '北景乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140821402, 140821, '临猗县城市社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822100, 140822, '解店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822101, 140822, '通化镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822102, 140822, '汉薛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822103, 140822, '荣河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822104, 140822, '裴庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822105, 140822, '高村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822200, 140822, '万泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822201, 140822, '里望乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822202, 140822, '西村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822203, 140822, '南张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822205, 140822, '皇甫乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822206, 140822, '贾村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822207, 140822, '王显乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140822208, 140822, '光华乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823100, 140823, '桐城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823101, 140823, '郭家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823102, 140823, '畖底镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823103, 140823, '薛店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823104, 140823, '东镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823105, 140823, '礼元镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823106, 140823, '河底镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823107, 140823, '阳隅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823108, 140823, '侯村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823109, 140823, '裴社镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823204, 140823, '后宫乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823205, 140823, '石门乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140823400, 140823, '闻喜县社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824100, 140824, '稷峰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824101, 140824, '西社镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824102, 140824, '化峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824103, 140824, '翟店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824104, 140824, '清河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824200, 140824, '蔡村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824201, 140824, '太阳乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824400, 140824, '稷山县社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140824401, 140824, '稷山县经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825100, 140825, '龙兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825101, 140825, '三泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825102, 140825, '泽掌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825103, 140825, '北张镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825104, 140825, '古交镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825105, 140825, '万安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825106, 140825, '阳王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825107, 140825, '泉掌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825108, 140825, '横桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825400, 140825, '新绛县社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140825498, 140825, '新绛县经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826100, 140826, '古绛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826101, 140826, '横水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826102, 140826, '陈村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826103, 140826, '卫庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826104, 140826, '磨里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826105, 140826, '南樊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826106, 140826, '安峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826107, 140826, '大交镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826200, 140826, '郝庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826201, 140826, '冷口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826400, 140826, '绛县社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140826402, 140826, '山西绛县经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827100, 140827, '新城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827101, 140827, '历山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827102, 140827, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827103, 140827, '王茅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827104, 140827, '毛家湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827105, 140827, '英言镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827200, 140827, '蒲掌乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827202, 140827, '解峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827203, 140827, '华峰乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827204, 140827, '长直乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827205, 140827, '皋落乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140827400, 140827, '垣曲县城市社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828100, 140828, '瑶峰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828101, 140828, '庙前镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828102, 140828, '裴介镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828103, 140828, '水头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828104, 140828, '埝掌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828105, 140828, '泗交镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828106, 140828, '禹王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828200, 140828, '尉郭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828202, 140828, '胡张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828203, 140828, '南大里乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140828204, 140828, '祁家河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829100, 140829, '圣人涧镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829101, 140829, '常乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829102, 140829, '张店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829103, 140829, '张村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829104, 140829, '曹川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829105, 140829, '三门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829106, 140829, '部官镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829107, 140829, '洪池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829201, 140829, '杜马乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140829400, 140829, '平陆县社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830100, 140830, '古魏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830101, 140830, '风陵渡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830102, 140830, '陌南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830103, 140830, '西陌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830104, 140830, '永乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830105, 140830, '大王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830106, 140830, '阳城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830107, 140830, '南磑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830200, 140830, '东垆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830202, 140830, '学张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830401, 140830, '芮城县社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140830402, 140830, '山西风陵渡经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881001, 140881, '城西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881002, 140881, '城北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881003, 140881, '城东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881100, 140881, '虞乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881101, 140881, '卿头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881102, 140881, '开张镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881103, 140881, '栲栳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881104, 140881, '蒲州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881105, 140881, '韩阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881106, 140881, '张营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881400, 140881, '永济监狱', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881401, 140881, '山西省永济虞乡强制隔离戒毒所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140881402, 140881, '山西省永济董村强制隔离戒毒所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882001, 140882, '城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882002, 140882, '清涧街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882003, 140882, '赵家庄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882004, 140882, '阳村街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882100, 140882, '樊村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882101, 140882, '僧楼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882102, 140882, '柴家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882200, 140882, '小梁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882203, 140882, '下化乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140882450, 140882, '山西铝厂', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902001, 140902, '秀容街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902002, 140902, '长征街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902003, 140902, '新建路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902004, 140902, '云中路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902005, 140902, '九原街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902006, 140902, '旭来街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902007, 140902, '桥西街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902101, 140902, '奇村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902102, 140902, '三交镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902103, 140902, '庄磨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902104, 140902, '豆罗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902105, 140902, '董村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902106, 140902, '西张镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902107, 140902, '忻口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902108, 140902, '合索镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902206, 140902, '兰村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902209, 140902, '东楼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140902210, 140902, '北义井乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921100, 140921, '晋昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921101, 140921, '河边镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921102, 140921, '宏道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921103, 140921, '季庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921104, 140921, '蒋村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921201, 140921, '南王乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921203, 140921, '神山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921205, 140921, '受禄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140921400, 140921, '定襄县居民办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922100, 140922, '台城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922102, 140922, '耿镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922103, 140922, '豆村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922104, 140922, '白家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922105, 140922, '东冶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922107, 140922, '建安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922200, 140922, '沟南乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922201, 140922, '东雷乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922202, 140922, '高洪口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922203, 140922, '门限石乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922204, 140922, '陈家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922207, 140922, '蒋坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922209, 140922, '阳白乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140922210, 140922, '茹村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923100, 140923, '上馆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923101, 140923, '阳明堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923102, 140923, '峨口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923103, 140923, '聂营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923104, 140923, '枣林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923106, 140923, '雁门关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923107, 140923, '峪口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923200, 140923, '新高乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923202, 140923, '上磨坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140923400, 140923, '代县居民事务中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924100, 140924, '繁城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924101, 140924, '砂河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924102, 140924, '大营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924103, 140924, '平型关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924200, 140924, '下茹越乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924202, 140924, '光裕堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924203, 140924, '集义庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924204, 140924, '东山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924205, 140924, '金山铺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924208, 140924, '神堂堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140924209, 140924, '岩头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925100, 140925, '凤凰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925101, 140925, '阳方口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925102, 140925, '东寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925103, 140925, '石家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925104, 140925, '宁化镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925200, 140925, '薛家洼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925201, 140925, '余庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925202, 140925, '涔山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925204, 140925, '西马坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925206, 140925, '迭台寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925208, 140925, '怀道乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925209, 140925, '东马坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925400, 140925, '阳方口煤矿', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140925401, 140925, '宁武县居民办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926100, 140926, '鹅城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926101, 140926, '杜家村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926102, 140926, '康家会镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926103, 140926, '丰润镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926104, 140926, '双路镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926105, 140926, '王村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926204, 140926, '段家寨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926205, 140926, '辛村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926207, 140926, '神峪沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926208, 140926, '娘子神乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926209, 140926, '娑婆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926210, 140926, '赤泥窊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140926400, 140926, '静乐县居民办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927100, 140927, '龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927101, 140927, '义井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927102, 140927, '八角镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927200, 140927, '东湖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927203, 140927, '贺职乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927204, 140927, '长畛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927205, 140927, '烈堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927206, 140927, '大严备乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140927400, 140927, '神池县城镇街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928100, 140928, '砚城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928101, 140928, '小河头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928102, 140928, '三岔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928200, 140928, '前所乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928201, 140928, '李家坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928202, 140928, '孙家坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928204, 140928, '胡会乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928206, 140928, '韩家楼乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928207, 140928, '东秀庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928208, 140928, '杏岭子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140928400, 140928, '五寨县居民办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929100, 140929, '岚漪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929101, 140929, '三井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929102, 140929, '宋家沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929201, 140929, '高家会乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929202, 140929, '李家沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929203, 140929, '水峪贯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929204, 140929, '西豹峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929205, 140929, '温泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929206, 140929, '阳坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929207, 140929, '大涧乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140929400, 140929, '岢岚县居民办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930100, 140930, '西口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930101, 140930, '楼子营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930102, 140930, '刘家塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930103, 140930, '巡镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930104, 140930, '旧县镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930105, 140930, '沙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930200, 140930, '鹿固乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930202, 140930, '单寨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930203, 140930, '土沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930205, 140930, '沙坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140930206, 140930, '社梁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931100, 140931, '东关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931101, 140931, '义门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931102, 140931, '桥头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931103, 140931, '杨家湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931104, 140931, '孙家沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931200, 140931, '腰庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931201, 140931, '韩家川乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931202, 140931, '林遮峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931203, 140931, '冯家川乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931204, 140931, '土崖塔乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931208, 140931, '南河沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140931400, 140931, '保德县居民事务中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932100, 140932, '新关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932102, 140932, '老营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932103, 140932, '万家寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932104, 140932, '水泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932105, 140932, '老牛湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932106, 140932, '尚峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932200, 140932, '窑头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140932201, 140932, '楼沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140971100, 140971, '台怀镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140971101, 140971, '石咀镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140971200, 140971, '金岗库乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981001, 140981, '北城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981002, 140981, '南城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981004, 140981, '新原街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981005, 140981, '吉祥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981101, 140981, '苏龙口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981102, 140981, '崞阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981103, 140981, '大牛店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981104, 140981, '闫庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981106, 140981, '轩岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981107, 140981, '云水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981108, 140981, '同川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981202, 140981, '子干乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981203, 140981, '中阳乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981204, 140981, '沿沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981205, 140981, '大林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981206, 140981, '西镇乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981208, 140981, '王家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981210, 140981, '段家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981400, 140981, '山西鲁能晋北铝业工矿区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981401, 140981, '原平市石豹沟煤矿工矿区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981403, 140981, '原平农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (140981404, 140981, '原平经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002001, 141002, '解放路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002002, 141002, '鼓楼西街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002003, 141002, '水塔街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002004, 141002, '南街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002005, 141002, '乡贤街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002006, 141002, '辛寺街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002007, 141002, '铁路东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002008, 141002, '车站街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002009, 141002, '汾河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002010, 141002, '滨河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002100, 141002, '屯里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002101, 141002, '乔李镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002102, 141002, '大阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002103, 141002, '县底镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002104, 141002, '刘村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002105, 141002, '金殿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002106, 141002, '吴村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002107, 141002, '土门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002108, 141002, '魏村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002109, 141002, '尧庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002200, 141002, '段店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002201, 141002, '贾得乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002203, 141002, '一平垣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002204, 141002, '枕头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141002401, 141002, '临汾经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021100, 141021, '乐昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021101, 141021, '史村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021102, 141021, '曲村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021103, 141021, '高显镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021104, 141021, '里村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021200, 141021, '北董乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141021201, 141021, '杨谈乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022100, 141022, '唐兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022101, 141022, '南梁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022102, 141022, '里砦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022103, 141022, '隆化镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022104, 141022, '桥上镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022105, 141022, '西阎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022106, 141022, '王庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022200, 141022, '中卫乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141022201, 141022, '南唐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023100, 141023, '新城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023101, 141023, '赵康镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023102, 141023, '汾城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023103, 141023, '南贾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023104, 141023, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023105, 141023, '襄陵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023106, 141023, '邓庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023200, 141023, '陶寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023201, 141023, '永固乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023202, 141023, '景毛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023203, 141023, '西贾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023204, 141023, '南辛店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141023205, 141023, '大邓乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024100, 141024, '大槐树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024101, 141024, '甘亭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024102, 141024, '曲亭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024103, 141024, '苏堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024104, 141024, '广胜寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024105, 141024, '明姜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024106, 141024, '赵城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024107, 141024, '万安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024108, 141024, '刘家垣镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024109, 141024, '辛村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024200, 141024, '淹底乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024201, 141024, '兴唐寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024202, 141024, '堤村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024204, 141024, '龙马乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141024207, 141024, '山目乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141025100, 141025, '岳阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141025101, 141025, '北平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141025102, 141025, '古阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141025103, 141025, '旧县镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141025104, 141025, '三合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141025202, 141025, '南垣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141026100, 141026, '府城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141026101, 141026, '和川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141026102, 141026, '唐城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141026103, 141026, '冀氏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141026104, 141026, '良马镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141026105, 141026, '马壁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027100, 141027, '天坛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027101, 141027, '响水河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027102, 141027, '张庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027103, 141027, '北王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027201, 141027, '东张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027202, 141027, '槐埝乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141027206, 141027, '寨圪塔乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028100, 141028, '吉昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028101, 141028, '屯里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028102, 141028, '壶口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028200, 141028, '车城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028201, 141028, '文城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028203, 141028, '柏山寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141028204, 141028, '中垛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029100, 141029, '昌宁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029101, 141029, '光华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029102, 141029, '台头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029103, 141029, '管头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029104, 141029, '西坡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029200, 141029, '双鹤乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029201, 141029, '关王庙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029202, 141029, '尉庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029203, 141029, '西交口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141029204, 141029, '枣岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141030100, 141030, '昕水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141030101, 141030, '曲峨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141030102, 141030, '太古镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141030200, 141030, '三多乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141030201, 141030, '太德乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031100, 141031, '龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031101, 141031, '午城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031102, 141031, '黄土镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031200, 141031, '阳头升乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031201, 141031, '寨子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031203, 141031, '下李乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141031204, 141031, '城南乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141032100, 141032, '芝河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141032101, 141032, '桑壁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141032203, 141032, '坡头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141032205, 141032, '乾坤湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141032206, 141032, '望海寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141032207, 141032, '楼山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033100, 141033, '蒲城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033101, 141033, '薛关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033102, 141033, '黑龙关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033103, 141033, '克城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033104, 141033, '乔家湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033200, 141033, '山中乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033201, 141033, '古县乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141033204, 141033, '太林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034100, 141034, '永安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034101, 141034, '对竹镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034102, 141034, '勍香镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034103, 141034, '和平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034104, 141034, '僧念镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034200, 141034, '佃坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034201, 141034, '团柏乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141034400, 141034, '社区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081001, 141081, '路东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081002, 141081, '路西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081003, 141081, '浍滨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081004, 141081, '上马街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081005, 141081, '张村街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081200, 141081, '新田乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081201, 141081, '高村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141081202, 141081, '凤城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082001, 141082, '鼓楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082002, 141082, '北环路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082003, 141082, '南环路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082004, 141082, '开元街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082005, 141082, '退沙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082100, 141082, '白龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082101, 141082, '辛置镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082102, 141082, '大张镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082103, 141082, '李曹镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082200, 141082, '陶唐峪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082201, 141082, '三教乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141082202, 141082, '师庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102001, 141102, '滨河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102002, 141102, '凤山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102003, 141102, '莲花池街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102004, 141102, '城北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102005, 141102, '田家会街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102006, 141102, '交口街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102007, 141102, '西属巴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102100, 141102, '吴城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102101, 141102, '信义镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102201, 141102, '枣林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141102202, 141102, '坪头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121100, 141121, '凤城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121101, 141121, '开栅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121102, 141121, '南庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121103, 141121, '南安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121104, 141121, '刘胡兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121105, 141121, '下曲镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121106, 141121, '孝义镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121200, 141121, '南武乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121201, 141121, '西城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121202, 141121, '北张乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121203, 141121, '马西乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141121204, 141121, '西槽头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122100, 141122, '天宁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122101, 141122, '夏家营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122102, 141122, '西营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122103, 141122, '水峪贯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122104, 141122, '西社镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122105, 141122, '庞泉沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122106, 141122, '洪相镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122202, 141122, '东坡底乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141122400, 141122, '夏家营生态工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123100, 141123, '蔚汾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123101, 141123, '魏家滩镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123102, 141123, '瓦塘镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123103, 141123, '康宁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123104, 141123, '高家村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123105, 141123, '罗峪口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123106, 141123, '蔡家会镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123200, 141123, '交楼申乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123202, 141123, '东会乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123203, 141123, '固贤乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123204, 141123, '奥家湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123205, 141123, '蔡家崖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123207, 141123, '孟家坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123208, 141123, '赵家坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123209, 141123, '圪垯上乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141123400, 141123, '兴县经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124100, 141124, '临泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124101, 141124, '白文镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124102, 141124, '城庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124103, 141124, '兔坂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124104, 141124, '克虎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124105, 141124, '三交镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124106, 141124, '湍水头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124107, 141124, '林家坪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124108, 141124, '招贤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124109, 141124, '碛口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124110, 141124, '刘家会镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124111, 141124, '丛罗峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124112, 141124, '曲峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124200, 141124, '木瓜坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124201, 141124, '安业乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124202, 141124, '玉坪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124203, 141124, '青凉寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124204, 141124, '石白头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124205, 141124, '雷家碛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124206, 141124, '八堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124207, 141124, '大禹乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124208, 141124, '车赶乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141124209, 141124, '安家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125100, 141125, '柳林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125101, 141125, '穆村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125102, 141125, '薛村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125103, 141125, '庄上镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125104, 141125, '留誉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125105, 141125, '三交镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125106, 141125, '成家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125107, 141125, '孟门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125108, 141125, '陈家湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125109, 141125, '金家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125200, 141125, '李家湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125201, 141125, '贾家垣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125204, 141125, '高家沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125205, 141125, '石西乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141125206, 141125, '王家沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126100, 141126, '灵泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126101, 141126, '罗村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126102, 141126, '义牒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126103, 141126, '小蒜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126104, 141126, '辛关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126200, 141126, '龙交乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126201, 141126, '和合乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126203, 141126, '曹家垣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141126204, 141126, '裴沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127100, 141127, '东村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127101, 141127, '岚城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127102, 141127, '普明镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127103, 141127, '界河口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127201, 141127, '上明乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127202, 141127, '王狮乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127203, 141127, '梁家庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127204, 141127, '顺会乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127206, 141127, '社科乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141127400, 141127, '岚县普明工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141128100, 141128, '圪洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141128101, 141128, '马坊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141128102, 141128, '峪口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141128103, 141128, '大武镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141128104, 141128, '北武当镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141128105, 141128, '积翠镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141129100, 141129, '宁乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141129101, 141129, '金罗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141129102, 141129, '枝柯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141129103, 141129, '武家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141129104, 141129, '暖泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141129201, 141129, '下枣林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130100, 141130, '水头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130101, 141130, '康城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130102, 141130, '双池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130103, 141130, '桃红坡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130104, 141130, '石口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130105, 141130, '回龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141130202, 141130, '温泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181001, 141181, '新义街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181002, 141181, '中阳楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181003, 141181, '振兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181004, 141181, '胜溪湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181005, 141181, '崇文街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181100, 141181, '兑镇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181101, 141181, '阳泉曲镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181102, 141181, '下堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181103, 141181, '西辛庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181104, 141181, '高阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181105, 141181, '梧桐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181106, 141181, '柱濮镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181107, 141181, '大孝堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181201, 141181, '下栅乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181202, 141181, '驿马乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141181204, 141181, '杜村乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182001, 141182, '文峰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182002, 141182, '太和桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182003, 141182, '西河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182100, 141182, '贾家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182101, 141182, '杏花村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182102, 141182, '冀村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182103, 141182, '肖家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182104, 141182, '演武镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182105, 141182, '三泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182106, 141182, '石庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182107, 141182, '杨家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182108, 141182, '峪道河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182109, 141182, '阳城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (141182110, 141182, '栗家庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102001, 150102, '海拉尔东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102002, 150102, '锡林北路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102003, 150102, '中山东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102004, 150102, '东街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102005, 150102, '西街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102006, 150102, '东风路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102007, 150102, '迎新路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102008, 150102, '成吉思汗大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102101, 150102, '保合少镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150102400, 150102, '新城区鸿盛高科技园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103001, 150103, '新华西路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103002, 150103, '中山西路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103003, 150103, '光明路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103004, 150103, '海拉尔西路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103005, 150103, '环河街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103006, 150103, '通道街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103007, 150103, '钢铁路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150103100, 150103, '攸攸板镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104001, 150104, '小召前街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104002, 150104, '兴隆巷街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104003, 150104, '长和廊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104004, 150104, '石东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104005, 150104, '大南街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104006, 150104, '鄂尔多斯路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104007, 150104, '西菜园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104008, 150104, '昭君路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104100, 150104, '小黑河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150104400, 150104, '裕隆工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105001, 150105, '人民路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105002, 150105, '大学西路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105003, 150105, '乌兰察布东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105004, 150105, '大学东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105005, 150105, '中专路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105006, 150105, '昭乌达路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105007, 150105, '巴彦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105008, 150105, '敕勒川路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105101, 150105, '榆林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105103, 150105, '黄合少镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105104, 150105, '金河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150105400, 150105, '金桥经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121100, 150121, '察素齐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121101, 150121, '毕克齐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121102, 150121, '善岱镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121103, 150121, '台阁牧镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121104, 150121, '白庙子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121105, 150121, '沙尔沁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121106, 150121, '敕勒川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121207, 150121, '北什轴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121208, 150121, '塔布赛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150121401, 150121, '呼和浩特金山经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150122100, 150122, '双河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150122101, 150122, '新营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150122102, 150122, '五申镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150122103, 150122, '伍什家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150122104, 150122, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150122400, 150122, '托县工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123100, 150123, '城关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123101, 150123, '盛乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123102, 150123, '新店子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123103, 150123, '巧什营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123203, 150123, '舍必崖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123205, 150123, '大红城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123206, 150123, '羊群沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123207, 150123, '黑老夭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123400, 150123, '盛乐经济工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150123401, 150123, '内蒙古和林格尔新区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124100, 150124, '城关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124101, 150124, '宏河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124102, 150124, '喇嘛湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124103, 150124, '老牛湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124200, 150124, '窑沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124201, 150124, '北堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124202, 150124, '韭菜庄乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124203, 150124, '五良太乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150124401, 150124, '内蒙古清水河工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125100, 150125, '可可以力更镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125101, 150125, '哈乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125102, 150125, '西乌兰不浪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125200, 150125, '大青山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125205, 150125, '上秃亥乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125207, 150125, '得胜沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125211, 150125, '二份子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125213, 150125, '哈拉合少乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125214, 150125, '耗赖山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125402, 150125, '内蒙古武川经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150125403, 150125, '武川金三角经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150172401, 150172, '如意工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150172402, 150172, '金川工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150172403, 150172, '呼和浩特综合保税区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150172404, 150172, '呼和浩特留学人员创业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150172405, 150172, '沙尔沁工业区(如意南区)', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150172406, 150172, '呼和浩特白塔空港物流园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202001, 150202, '和平路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202002, 150202, '财神庙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202003, 150202, '西脑包街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202004, 150202, '南门外街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202005, 150202, '南圪洞街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202006, 150202, '东站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202007, 150202, '回民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202008, 150202, '天骄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202009, 150202, '河东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202010, 150202, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202011, 150202, '东兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202012, 150202, '杨圪塄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202100, 150202, '河东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202101, 150202, '沙尔沁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150202400, 150202, '铝业工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203001, 150203, '少先路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203003, 150203, '沼潭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203004, 150203, '林荫路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203005, 150203, '友谊大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203006, 150203, '阿尔丁大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203007, 150203, '团结大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203008, 150203, '鞍山道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203009, 150203, '前进道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203010, 150203, '市府东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203011, 150203, '白云路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203012, 150203, '黄河西路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203013, 150203, '昆工路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203014, 150203, '昆北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203100, 150203, '昆河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203102, 150203, '卜尔汉图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150203400, 150203, '包钢厂区办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204001, 150204, '先锋道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204002, 150204, '幸福路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204003, 150204, '万青路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204004, 150204, '富强路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204005, 150204, '科学路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204006, 150204, '青山路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204007, 150204, '自由路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204008, 150204, '乌素图街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204100, 150204, '青福镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204101, 150204, '兴胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150204401, 150204, '包头市装备制造产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205001, 150205, '石拐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205002, 150205, '大发街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205003, 150205, '大磁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205004, 150205, '五当沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205005, 150205, '白狐沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205006, 150205, '大德恒街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205101, 150205, '五当召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205202, 150205, '吉忽伦图苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150205400, 150205, '工业园区管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150206001, 150206, '矿山路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150206002, 150206, '通阳道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207001, 150207, '沙河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207002, 150207, '赛汗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207003, 150207, '萨如拉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207004, 150207, '白音席勒街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207103, 150207, '麻池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207105, 150207, '哈林格尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207110, 150207, '哈业胡同镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150207202, 150207, '阿嘎如泰苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221104, 150221, '萨拉齐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221105, 150221, '双龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221106, 150221, '美岱召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221107, 150221, '沟门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221108, 150221, '将军尧镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221213, 150221, '海子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221214, 150221, '明沙淖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221215, 150221, '苏波盖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150221500, 150221, '九峰山生态管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150222102, 150222, '金山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150222103, 150222, '西斗铺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150222104, 150222, '下湿壕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150222105, 150222, '银号镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150222106, 150222, '怀朔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150222107, 150222, '兴顺西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223102, 150223, '满都拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223103, 150223, '希拉穆仁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223104, 150223, '百灵庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223105, 150223, '石宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223106, 150223, '乌克忽洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223107, 150223, '明安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223108, 150223, '巴音花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223213, 150223, '达尔汗苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223214, 150223, '查干哈达苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223215, 150223, '巴音敖包苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223216, 150223, '西河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150223217, 150223, '小文公乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150271010, 150271, '稀土路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150271020, 150271, '民馨路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150271102, 150271, '万水泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302001, 150302, '凤凰岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302002, 150302, '海北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302003, 150302, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302004, 150302, '新华西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302007, 150302, '滨河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302008, 150302, '林荫街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302101, 150302, '千里山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150302400, 150302, '乌海市海勃湾千里山工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150303001, 150303, '拉僧仲街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150303002, 150303, '西卓子山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150303102, 150303, '公乌素镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150303103, 150303, '拉僧庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150303104, 150303, '巴音陶亥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304002, 150304, '三道坎街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304003, 150304, '五虎山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304008, 150304, '新达街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304009, 150304, '巴音赛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304010, 150304, '梁家沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304011, 150304, '苏海图街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304012, 150304, '滨海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304101, 150304, '乌兰淖尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150304400, 150304, '乌达经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402001, 150402, '西屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402002, 150402, '三中街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402003, 150402, '永巨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402004, 150402, '东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402005, 150402, '南新街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402006, 150402, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402007, 150402, '铁南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402008, 150402, '长青街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402009, 150402, '哈达街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402010, 150402, '西城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402011, 150402, '桥北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402100, 150402, '红庙子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402102, 150402, '文钟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402400, 150402, '赤峰红山高新技术产业开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402401, 150402, '内蒙古红山物流园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150402402, 150402, '红山绿色食品产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403001, 150403, '西露天街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403002, 150403, '平庄城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403003, 150403, '平庄东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403004, 150403, '平庄西城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403005, 150403, '马林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403006, 150403, '云杉路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403100, 150403, '风水沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403101, 150403, '元宝山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403102, 150403, '美丽河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403103, 150403, '平庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403104, 150403, '五家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150403200, 150403, '小五家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404001, 150404, '振兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404002, 150404, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404003, 150404, '松州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404004, 150404, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404100, 150404, '穆家营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404101, 150404, '初头朗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404102, 150404, '大庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404103, 150404, '王府镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404104, 150404, '老府镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404105, 150404, '哈拉道口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404106, 150404, '上官地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404107, 150404, '安庆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404108, 150404, '太平地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404200, 150404, '当铺地满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404201, 150404, '夏家店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404202, 150404, '城子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404203, 150404, '大夫营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404204, 150404, '岗子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404400, 150404, '玉龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404401, 150404, '全宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404407, 150404, '兴安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150404408, 150404, '松城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421100, 150421, '天山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421101, 150421, '天山口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421102, 150421, '双胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421103, 150421, '坤都镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421104, 150421, '巴彦花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421105, 150421, '绍根镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421106, 150421, '扎嘎斯台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421200, 150421, '新民乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421201, 150421, '先锋乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421202, 150421, '罕苏木苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421203, 150421, '赛罕塔拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421204, 150421, '巴拉奇如德苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421205, 150421, '乌兰哈达乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421206, 150421, '巴彦温都尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421400, 150421, '轻工食品产业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421401, 150421, '新能源产业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421402, 150421, '绍根煤碳及煤化工产业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421403, 150421, '罕乌拉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150421404, 150421, '欧沐沦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422100, 150422, '林东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422101, 150422, '隆昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422102, 150422, '十三敖包镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422103, 150422, '碧流台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422104, 150422, '富河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422105, 150422, '白音勿拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422106, 150422, '哈拉哈达镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422200, 150422, '查干哈达苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422201, 150422, '乌兰达坝苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422202, 150422, '三山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422203, 150422, '花加拉嘎乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422403, 150422, '林东西城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422404, 150422, '林东东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150422405, 150422, '林东产业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423100, 150423, '大板镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423101, 150423, '索博日嘎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423102, 150423, '宝日勿苏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423103, 150423, '查干诺尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423105, 150423, '巴彦琥硕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423200, 150423, '西拉沐沦苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423201, 150423, '巴彦塔拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423202, 150423, '幸福之路苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423203, 150423, '查干沐沦苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423400, 150423, '大板煤电化基地', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423401, 150423, '赛罕街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150423402, 150423, '达尔罕街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424100, 150424, '林西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424101, 150424, '新城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424102, 150424, '新林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424103, 150424, '五十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424104, 150424, '官地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424105, 150424, '大井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424106, 150424, '统部镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424200, 150424, '大营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424201, 150424, '十二吐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424400, 150424, '城北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424401, 150424, '城南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150424402, 150424, '内蒙古林西工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425100, 150425, '经棚镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425101, 150425, '宇宙地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425102, 150425, '土城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425103, 150425, '同兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425104, 150425, '万合永镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425105, 150425, '芝瑞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425106, 150425, '达来诺日镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425200, 150425, '新开地乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425201, 150425, '红山子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425202, 150425, '达日罕乌拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425203, 150425, '巴彦查干苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425204, 150425, '浩来呼热苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425205, 150425, '乌兰布统苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425400, 150425, '应昌街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425401, 150425, '热水塘街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150425403, 150425, '西拉沐沦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426100, 150426, '乌丹镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426101, 150426, '乌敦套海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426102, 150426, '五分地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426103, 150426, '桥头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426104, 150426, '广德公镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426105, 150426, '梧桐花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426106, 150426, '海拉苏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426107, 150426, '亿合公镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426200, 150426, '解放营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426201, 150426, '阿什罕苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426202, 150426, '新苏莫苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426203, 150426, '白音套海苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426204, 150426, '毛山东乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426205, 150426, '格日僧苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426400, 150426, '玉龙工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426402, 150426, '紫城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150426403, 150426, '全宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428100, 150428, '锦山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428101, 150428, '美林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428102, 150428, '王爷府镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428103, 150428, '小牛群镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428104, 150428, '牛家营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428105, 150428, '乃林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428106, 150428, '西桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428200, 150428, '十家满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428201, 150428, '南台子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428400, 150428, '乃林果树农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428401, 150428, '马鞍山羊场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428402, 150428, '喀喇沁经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428403, 150428, '锦山工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428404, 150428, '河北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150428405, 150428, '河南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429100, 150429, '天义镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429101, 150429, '小城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429102, 150429, '大城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429103, 150429, '八里罕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429104, 150429, '黑里河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429105, 150429, '右北平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429106, 150429, '大双庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429107, 150429, '汐子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429108, 150429, '大明镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429109, 150429, '忙农镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429110, 150429, '五化镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429111, 150429, '三座店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429112, 150429, '必斯营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429202, 150429, '一肯中乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429203, 150429, '存金沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429400, 150429, '中京工业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429401, 150429, '塞飞亚食品工业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429402, 150429, '八里罕酒业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429403, 150429, '再生资源产业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429404, 150429, '生物科技产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429405, 150429, '汐子工业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429406, 150429, '农机产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429407, 150429, '宁城县铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429408, 150429, '宁城县铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150429409, 150429, '宁城县温泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430100, 150430, '新惠镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430101, 150430, '四家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430102, 150430, '长胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430103, 150430, '贝子府镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430104, 150430, '四道湾子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430105, 150430, '下洼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430106, 150430, '金厂沟梁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430107, 150430, '兴隆洼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430108, 150430, '黄羊洼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430109, 150430, '古鲁板蒿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430110, 150430, '牛古吐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430202, 150430, '木头营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430204, 150430, '丰收乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430205, 150430, '玛尼罕乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430206, 150430, '萨力巴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430207, 150430, '敖润苏莫苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430401, 150430, '敖汉旗工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430404, 150430, '敖汉旗人民政府新州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150430405, 150430, '敖汉旗惠州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502001, 150502, '科尔沁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502002, 150502, '西门街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502003, 150502, '永清街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502004, 150502, '明仁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502005, 150502, '施介街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502006, 150502, '团结街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502007, 150502, '东郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502008, 150502, '铁路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502009, 150502, '红星街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502010, 150502, '霍林河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502011, 150502, '建国街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502100, 150502, '大林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502101, 150502, '钱家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502102, 150502, '余粮堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502103, 150502, '木里图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502104, 150502, '丰田镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502105, 150502, '清河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502106, 150502, '育新镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502107, 150502, '庆和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502108, 150502, '敖力布皋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502200, 150502, '莫力庙苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502400, 150502, '国有哲南农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502401, 150502, '三义堂农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502402, 150502, '通辽市高林屯种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502403, 150502, '胡力海原种繁殖场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502404, 150502, '莫力庙种羊场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150502405, 150502, '半截店牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521100, 150521, '保康镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521101, 150521, '宝龙山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521102, 150521, '舍伯吐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521103, 150521, '巴彦塔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521104, 150521, '门达镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521105, 150521, '架玛吐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521106, 150521, '腰林毛都镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521107, 150521, '希伯花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521108, 150521, '花吐古拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521109, 150521, '代力吉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521110, 150521, '努日木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521200, 150521, '花胡硕苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521201, 150521, '协代苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521202, 150521, '白兴吐苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521203, 150521, '图布信苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521204, 150521, '敖包苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521205, 150521, '胜利乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521400, 150521, '白音塔拉农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521401, 150521, '珠日河牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521402, 150521, '丰库牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150521403, 150521, '保康街道办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522100, 150522, '甘旗卡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522101, 150522, '吉尔嘎朗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522102, 150522, '金宝屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522103, 150522, '常胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522104, 150522, '查日苏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522105, 150522, '双胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522106, 150522, '阿古拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522107, 150522, '朝鲁吐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522108, 150522, '努古斯台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522109, 150522, '海鲁吐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522200, 150522, '阿都沁苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522201, 150522, '茂道吐苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522202, 150522, '巴胡塔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522203, 150522, '散都苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522204, 150522, '巴彦毛都苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522400, 150522, '胜利农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522401, 150522, '孟根达坝牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522402, 150522, '查金台牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522403, 150522, '原种繁育中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522404, 150522, '大青沟管理局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522405, 150522, '哈日乌苏种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522406, 150522, '乌兰敖道渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522407, 150522, '金宝屯林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522408, 150522, '朝鲁吐林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522409, 150522, '茂道吐林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522410, 150522, '伊胡塔林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150522411, 150522, '乌旦塔拉林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523100, 150523, '开鲁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523101, 150523, '大榆树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523102, 150523, '黑龙坝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523103, 150523, '麦新镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523104, 150523, '义和塔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523105, 150523, '建华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523106, 150523, '小街基镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523107, 150523, '东风镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523108, 150523, '吉日嘎郎吐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523109, 150523, '东来镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523400, 150523, '清河牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523401, 150523, '辽河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150523402, 150523, '保安农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524100, 150524, '库伦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524101, 150524, '扣河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524102, 150524, '白音花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524103, 150524, '六家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524104, 150524, '额勒顺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524200, 150524, '茫汗苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524201, 150524, '先进苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524202, 150524, '水泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150524400, 150524, '库伦街道办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525100, 150525, '大沁他拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525101, 150525, '八仙筒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525102, 150525, '青龙山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525103, 150525, '新镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525104, 150525, '治安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525105, 150525, '东明镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525106, 150525, '沙日浩来镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525107, 150525, '义隆永镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525200, 150525, '固日班花苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525201, 150525, '白音他拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525202, 150525, '明仁苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525203, 150525, '黄花塔拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525204, 150525, '土城子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525205, 150525, '苇莲苏乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525400, 150525, '国有六号农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150525401, 150525, '大沁他拉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526100, 150526, '鲁北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526101, 150526, '黄花山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526102, 150526, '嘎亥图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526103, 150526, '巨日合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526104, 150526, '巴雅尔吐胡硕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526105, 150526, '香山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526106, 150526, '阿日昆都楞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526200, 150526, '巴彦塔拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526201, 150526, '乌力吉木仁苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526202, 150526, '道老杜苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526203, 150526, '格日朝鲁苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526204, 150526, '前德门苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526205, 150526, '乌兰哈达苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526206, 150526, '查布嘎图苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526207, 150526, '乌额格其苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526400, 150526, '乌额格其牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526401, 150526, '香山农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526402, 150526, '乌日根塔拉农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150526403, 150526, '通辽市嘎达苏种畜繁育中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150571001, 150571, '河西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150571002, 150571, '电厂街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150571003, 150571, '新城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150571004, 150571, '滨河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150571100, 150571, '辽河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150581001, 150581, '珠斯花街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150581002, 150581, '莫斯台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150581003, 150581, '宝日呼吉尔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150581004, 150581, '沙尔呼热街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150581200, 150581, '达来胡硕苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150581400, 150581, '霍林郭勒市军马场生态保护区管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602001, 150602, '交通街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602002, 150602, '公园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602003, 150602, '林荫街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602004, 150602, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602005, 150602, '富兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602006, 150602, '天骄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602007, 150602, '诃额伦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602008, 150602, '巴音门克街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602010, 150602, '幸福街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602011, 150602, '纺织街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602012, 150602, '兴胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602013, 150602, '民族街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602100, 150602, '泊尔江海子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602101, 150602, '罕台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602102, 150602, '铜川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602400, 150602, '鄂尔多斯市装备制造基地', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602401, 150602, '东胜区轻纺工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150602404, 150602, '铜川汽车博览园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150603001, 150603, '哈巴格希街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150603002, 150603, '青春山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150603003, 150603, '滨河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150603008, 150603, '康新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150603400, 150603, '鄂尔多斯市高新技术产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621001, 150621, '工业街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621002, 150621, '昭君街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621003, 150621, '锡尼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621004, 150621, '白塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621005, 150621, '西园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621006, 150621, '平原街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621100, 150621, '树林召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621101, 150621, '吉格斯太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621102, 150621, '白泥井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621103, 150621, '王爱召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621104, 150621, '昭君镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621105, 150621, '恩格贝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621106, 150621, '中和西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621107, 150621, '风水梁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621200, 150621, '展旦召苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621400, 150621, '达拉特经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150621401, 150621, '鄂尔多斯市生态示范区管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622001, 150622, '兴隆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622002, 150622, '迎泽街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622003, 150622, '蓝天街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622004, 150622, '友谊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622100, 150622, '薛家湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622101, 150622, '沙圪堵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622102, 150622, '大路镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622103, 150622, '纳日松镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622104, 150622, '龙口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622105, 150622, '准格尔召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622106, 150622, '魏家峁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622200, 150622, '暖水乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622201, 150622, '十二连城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622202, 150622, '布尔陶亥苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622400, 150622, '准格尔经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150622401, 150622, '大路煤化工基地', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150623100, 150623, '敖勒召其镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150623101, 150623, '上海庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150623102, 150623, '城川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150623103, 150623, '昂素镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150623400, 150623, '上海庙经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624100, 150624, '乌兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624101, 150624, '棋盘井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624102, 150624, '蒙西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624103, 150624, '木凯淖尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624200, 150624, '苏米图苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624201, 150624, '阿尔巴斯苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150624404, 150624, '内蒙古鄂托克经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625100, 150625, '锡尼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625101, 150625, '巴拉贡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625102, 150625, '吉日嘎朗图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625103, 150625, '独贵塔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625104, 150625, '呼和木独镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625200, 150625, '伊和乌素苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150625400, 150625, '内蒙古鄂尔多斯杭锦经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626100, 150626, '嘎鲁图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626101, 150626, '乌审召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626102, 150626, '图克镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626103, 150626, '乌兰陶勒盖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626104, 150626, '无定河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626200, 150626, '苏力德苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150626410, 150626, '苏里格经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627100, 150627, '阿勒腾席热镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627101, 150627, '札萨克镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627102, 150627, '乌兰木伦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627103, 150627, '纳林陶亥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627104, 150627, '苏布尔嘎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627105, 150627, '红庆河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627106, 150627, '伊金霍洛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627400, 150627, '鄂尔多斯蒙苏经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150627407, 150627, '鄂尔多斯空港物流园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702001, 150702, '正阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702002, 150702, '健康街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702003, 150702, '靠山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702004, 150702, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702005, 150702, '呼伦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702007, 150702, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702008, 150702, '东山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702100, 150702, '哈克镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150702101, 150702, '奋斗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150703001, 150703, '第三街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150703002, 150703, '第一街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150703003, 150703, '第二街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150703004, 150703, '第四街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150703005, 150703, '第五街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150703100, 150703, '灵泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721100, 150721, '那吉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721101, 150721, '六合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721102, 150721, '亚东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721103, 150721, '霍尔奇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721104, 150721, '向阳峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721105, 150721, '三岔河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721106, 150721, '复兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721108, 150721, '兴安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721200, 150721, '得力其尔鄂温克民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721201, 150721, '查巴奇鄂温克民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721202, 150721, '音河达斡尔鄂温克民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721203, 150721, '新发朝鲜民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150721402, 150721, '阿荣旗林业和草原局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722100, 150722, '尼尔基镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722102, 150722, '宝山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722103, 150722, '哈达阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722104, 150722, '阿尔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722105, 150722, '汉古尔河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722106, 150722, '西瓦尔图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722108, 150722, '腾克镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722109, 150722, '奎勒河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722110, 150722, '塔温敖宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722111, 150722, '登特科镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722112, 150722, '红彦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722201, 150722, '库如奇乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722202, 150722, '额尔和乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722203, 150722, '杜拉尔鄂温克民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150722205, 150722, '巴彦鄂温克民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723100, 150723, '阿里河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723101, 150723, '大杨树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723102, 150723, '甘河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723103, 150723, '吉文镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723104, 150723, '诺敏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723105, 150723, '乌鲁布铁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723106, 150723, '宜里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723107, 150723, '克一河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723200, 150723, '古里乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150723201, 150723, '托扎敏乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724100, 150724, '巴彦托海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724110, 150724, '大雁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724111, 150724, '伊敏河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724112, 150724, '红花尔基镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724210, 150724, '巴彦嵯岗苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724211, 150724, '锡尼河西苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724212, 150724, '锡尼河东苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724213, 150724, '巴彦塔拉达斡尔民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724214, 150724, '伊敏苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724215, 150724, '辉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150724400, 150724, '巴彦托海经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725100, 150725, '巴彦库仁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725101, 150725, '宝日希勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725102, 150725, '呼和诺尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725200, 150725, '西乌珠尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725201, 150725, '鄂温克民族苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725202, 150725, '东乌珠尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725203, 150725, '巴彦哈达苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725501, 150725, '陈巴尔虎旗哈达图国营农牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725502, 150725, '内蒙古自治区国有浩特陶海牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150725503, 150725, '陈巴尔虎旗特泥河农牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726101, 150726, '嵯岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726102, 150726, '阿木古郎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726202, 150726, '新宝力格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726203, 150726, '乌布尔宝力格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726204, 150726, '罕达盖苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726205, 150726, '吉布胡郎图苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150726206, 150726, '甘珠尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727100, 150727, '阿拉坦额莫勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727101, 150727, '阿日哈沙特镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727102, 150727, '呼伦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727200, 150727, '贝尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727201, 150727, '克尔伦苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727202, 150727, '达赉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150727203, 150727, '宝格德乌拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781001, 150781, '东山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781002, 150781, '道南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781003, 150781, '道北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781004, 150781, '兴华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781012, 150781, '敖尔金街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781100, 150781, '新开河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781400, 150781, '满洲里市互市贸易区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781401, 150781, '满洲里市经济合作区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781402, 150781, '满洲里市东湖区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781406, 150781, '满洲里国际物流产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150781407, 150781, '扎赉诺尔矿区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782001, 150782, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782002, 150782, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782003, 150782, '新工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782004, 150782, '永兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782005, 150782, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782006, 150782, '暖泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782100, 150782, '免渡河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782101, 150782, '博克图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782102, 150782, '绰河源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782103, 150782, '乌尔其汉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782104, 150782, '库都尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782105, 150782, '图里河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782106, 150782, '乌奴耳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782107, 150782, '塔尔气镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782108, 150782, '伊图里河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782109, 150782, '牧原镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782400, 150782, '莫拐农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782401, 150782, '牙克石农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150782402, 150782, '免渡河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783001, 150783, '兴华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783002, 150783, '正阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783003, 150783, '繁荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783004, 150783, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783005, 150783, '高台子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783006, 150783, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783007, 150783, '河西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783100, 150783, '蘑菇气镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783102, 150783, '卧牛河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783103, 150783, '成吉思汗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783104, 150783, '大河湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783105, 150783, '浩饶山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783106, 150783, '柴河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783107, 150783, '中和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783108, 150783, '哈多河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783200, 150783, '达斡尔民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783201, 150783, '鄂伦春民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783202, 150783, '萨马街鄂温克民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783203, 150783, '洼堤乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783403, 150783, '成吉思汗牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783404, 150783, '公安部后勤供应处农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150783406, 150783, '柴河林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784001, 150784, '拉布大林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784002, 150784, '上库力街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784101, 150784, '黑山头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784103, 150784, '莫尔道嘎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784104, 150784, '恩和哈达镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784200, 150784, '三河回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784210, 150784, '恩和俄罗斯族民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784211, 150784, '蒙兀室韦苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784212, 150784, '奇乾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784400, 150784, '内蒙古拉布大林农牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784401, 150784, '内蒙古三河种马场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784402, 150784, '内蒙古上库力农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150784403, 150784, '内蒙古苏沁农牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785001, 150785, '河东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785002, 150785, '河西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785003, 150785, '森工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785004, 150785, '好里堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785101, 150785, '金河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785102, 150785, '阿龙山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785103, 150785, '满归镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785104, 150785, '得耳布尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150785200, 150785, '敖鲁古雅鄂温克民族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802001, 150802, '团结街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802002, 150802, '车站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802003, 150802, '先锋街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802004, 150802, '解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802005, 150802, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802006, 150802, '东环街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802007, 150802, '铁南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802008, 150802, '西环街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802009, 150802, '北环街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802013, 150802, '金川街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802014, 150802, '汇丰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802100, 150802, '狼山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802101, 150802, '新华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802102, 150802, '干召庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802103, 150802, '乌兰图克镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802104, 150802, '双河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802105, 150802, '城关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802106, 150802, '白脑包镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802200, 150802, '曙光乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802201, 150802, '八一乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802400, 150802, '狼山农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150802401, 150802, '临河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821100, 150821, '隆兴昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821101, 150821, '塔尔湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821102, 150821, '巴彦套海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821103, 150821, '新公中镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821104, 150821, '天吉泰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821105, 150821, '胜丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821106, 150821, '银定图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821107, 150821, '复兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821200, 150821, '和胜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150821400, 150821, '巴彦淖尔市建丰农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822100, 150822, '巴彦高勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822101, 150822, '隆盛合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822102, 150822, '渡口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822103, 150822, '补隆淖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822200, 150822, '沙金套海苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822400, 150822, '磴口县农垦乌兰布和农场有限责任公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822401, 150822, '磴口县农垦巴彦套海农场有限责任公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822402, 150822, '磴口县农垦哈腾套海农场有限责任公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822403, 150822, '磴口县农垦包尔盖农场有限责任公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822404, 150822, '磴口县农垦纳林套海农场有限责任公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150822405, 150822, '沙漠林业实验中心农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823100, 150823, '乌拉山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823101, 150823, '白彦花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823102, 150823, '先锋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823103, 150823, '新安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823104, 150823, '西小召镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823105, 150823, '大佘太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823106, 150823, '明安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823107, 150823, '小佘太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823108, 150823, '苏独仑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823200, 150823, '额尔登布拉格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823201, 150823, '沙德格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823400, 150823, '巴彦淖尔市中滩农场有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823401, 150823, '巴彦淖尔市西山嘴农场有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823402, 150823, '巴彦淖尔市新安农场有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823403, 150823, '巴彦淖尔市苏独隆农场有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823404, 150823, '巴彦淖尔市大佘太牧场有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150823405, 150823, '巴彦淖尔市乌梁素海渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824100, 150824, '海流图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824101, 150824, '乌加河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824102, 150824, '德岭山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824103, 150824, '石哈河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824104, 150824, '甘其毛都镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824105, 150824, '温更镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824200, 150824, '呼勒斯太苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824201, 150824, '川井苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824202, 150824, '巴音乌兰苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824203, 150824, '新忽热苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824400, 150824, '巴彦淖尔市牧洋海牧场有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150824401, 150824, '巴彦淖尔市同和太种畜繁育中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150825100, 150825, '巴音宝力格镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150825101, 150825, '呼和温都尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150825102, 150825, '潮格温都尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150825200, 150825, '获各琦苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150825201, 150825, '巴音前达门苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150825202, 150825, '乌盖苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826100, 150826, '陕坝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826101, 150826, '头道桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826102, 150826, '二道桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826103, 150826, '三道桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826104, 150826, '蛮会镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826105, 150826, '团结镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826106, 150826, '双庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826107, 150826, '沙海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826108, 150826, '蒙海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150826500, 150826, '太阳庙农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902001, 150902, '新体路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902002, 150902, '桥东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902003, 150902, '前进路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902004, 150902, '常青街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902005, 150902, '虎山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902006, 150902, '桥西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902007, 150902, '新华街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902008, 150902, '泉山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902105, 150902, '白海子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150902205, 150902, '马莲渠乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921106, 150921, '卓资山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921107, 150921, '旗下营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921108, 150921, '十八台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921109, 150921, '巴音锡勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921110, 150921, '梨花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921210, 150921, '大榆树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921211, 150921, '红召乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150921212, 150921, '复兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922103, 150922, '长顺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922104, 150922, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922105, 150922, '七号镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922200, 150922, '德包图乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922201, 150922, '公腊胡洞乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922218, 150922, '白音特拉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150922401, 150922, '化德县长顺工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923101, 150923, '七台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923102, 150923, '十八顷镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923103, 150923, '大黑沙土镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923104, 150923, '西井子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923105, 150923, '屯垦队镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923106, 150923, '小海子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923200, 150923, '大库伦乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923201, 150923, '卯都乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923202, 150923, '玻璃忽镜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150923203, 150923, '三大顷乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924106, 150924, '城关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924107, 150924, '张皋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924108, 150924, '赛乌素镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924109, 150924, '鄂尔栋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924110, 150924, '店子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924209, 150924, '大库联乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924210, 150924, '民族团结乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924211, 150924, '大同夭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150924212, 150924, '五股泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925103, 150925, '鸿茅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925104, 150925, '六苏木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925105, 150925, '麦胡图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925106, 150925, '永兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925107, 150925, '蛮汉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925108, 150925, '岱海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925218, 150925, '天成乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150925220, 150925, '曹碾满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926105, 150926, '土贵乌拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926106, 150926, '平地泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926107, 150926, '玫瑰营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926108, 150926, '巴音塔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926109, 150926, '黄旗海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926209, 150926, '乌拉哈乌拉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926210, 150926, '黄茂营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926211, 150926, '三岔口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926212, 150926, '老圈沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926400, 150926, '察右前旗天皮山冶金化工工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150926401, 150926, '乌兰察布市京蒙合作产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927103, 150927, '科布尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927104, 150927, '铁沙盖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927105, 150927, '黄羊城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927106, 150927, '广益隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927107, 150927, '乌素图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927216, 150927, '大滩乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927217, 150927, '宏盘乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927218, 150927, '巴音乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927219, 150927, '库伦苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927220, 150927, '乌兰哈页苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927221, 150927, '土城子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150927400, 150927, '辉腾锡勒园区管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928105, 150928, '白音察干镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928106, 150928, '土牧尔台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928107, 150928, '红格尔图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928108, 150928, '贲红镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928109, 150928, '大六号镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928209, 150928, '当郎忽洞苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928210, 150928, '乌兰哈达苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150928211, 150928, '锡勒乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929100, 150929, '乌兰花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929101, 150929, '吉生太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929102, 150929, '库伦图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929103, 150929, '供济堂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929104, 150929, '白音朝克图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929200, 150929, '红格尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929201, 150929, '江岸苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929202, 150929, '查干补力格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929203, 150929, '脑木更苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929204, 150929, '东八号乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929205, 150929, '忽鸡图乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929206, 150929, '大黑河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929207, 150929, '巴音敖包苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150929400, 150929, '乌兰牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981005, 150981, '新城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981006, 150981, '旧城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981007, 150981, '北城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981008, 150981, '工业区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981009, 150981, '南城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981107, 150981, '隆盛庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981108, 150981, '黑土台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981109, 150981, '红砂坝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981110, 150981, '巨宝庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981111, 150981, '三义泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981207, 150981, '浑源窑乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981208, 150981, '元山子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981209, 150981, '官屯堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (150981400, 150981, '丰镇高科技氟化学工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201001, 152201, '爱国街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201002, 152201, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201003, 152201, '兴安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201004, 152201, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201005, 152201, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201006, 152201, '都林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201007, 152201, '五一街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201008, 152201, '城郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201009, 152201, '新城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201100, 152201, '乌兰哈达镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201101, 152201, '葛根庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201102, 152201, '太本站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201103, 152201, '义勒力特镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201401, 152201, '呼和马场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201402, 152201, '乌兰浩特绿色产业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152201403, 152201, '兴安盟经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202001, 152202, '林海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202002, 152202, '新城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202003, 152202, '温泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202004, 152202, '伊尔施街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202100, 152202, '天池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202101, 152202, '白狼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202102, 152202, '五岔沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152202103, 152202, '明水河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221100, 152221, '科尔沁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221101, 152221, '索伦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221102, 152221, '德伯斯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221103, 152221, '大石寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221104, 152221, '归流河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221105, 152221, '居力很镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221106, 152221, '察尔森镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221107, 152221, '额尔格图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221108, 152221, '俄体镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221200, 152221, '满族屯满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221201, 152221, '乌兰毛都苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221202, 152221, '阿力得尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221203, 152221, '巴日嘎斯台乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221204, 152221, '桃合木苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221400, 152221, '跃进马场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221401, 152221, '索伦牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221403, 152221, '阿力得尔牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221404, 152221, '公主陵牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221405, 152221, '绿水种畜繁育中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221407, 152221, '科右前旗工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152221408, 152221, '科右前旗现代农牧业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222100, 152222, '巴彦呼舒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222101, 152222, '巴仁哲里木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222102, 152222, '吐列毛杜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222103, 152222, '杜尔基镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222104, 152222, '高力板镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222105, 152222, '好腰苏木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222200, 152222, '代钦塔拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222201, 152222, '新佳木苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222202, 152222, '哈日诺尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222203, 152222, '额木庭高勒苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222204, 152222, '巴彦茫哈苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222205, 152222, '巴彦淖尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222400, 152222, '布敦化牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222401, 152222, '吐列毛杜农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222402, 152222, '孟恩套力盖矿区工作部', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152222403, 152222, '布敦化矿区工作部', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223100, 152223, '音德尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223101, 152223, '新林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223102, 152223, '巴彦高勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223103, 152223, '胡尔勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223104, 152223, '阿尔本格勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223105, 152223, '巴达尔胡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223106, 152223, '图牧吉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223107, 152223, '好力保镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223201, 152223, '巴彦乌兰苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223202, 152223, '宝力根花苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223203, 152223, '阿拉达尔吐苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223204, 152223, '巴彦扎拉嘎乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223205, 152223, '努文木仁乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223400, 152223, '内蒙古自治区图牧吉强制隔离戒毒所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223401, 152223, '内蒙古自治区监狱管理局东部分局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223404, 152223, '种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223405, 152223, '八一牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152223406, 152223, '巴达尔胡农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224100, 152224, '突泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224101, 152224, '六户镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224102, 152224, '东杜尔基镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224103, 152224, '永安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224104, 152224, '水泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224105, 152224, '宝石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224200, 152224, '学田乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224201, 152224, '九龙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224202, 152224, '太平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152224400, 152224, '内蒙古自治区国营杜尔基农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152501200, 152501, '格日勒敖都苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152501400, 152501, '二连浩特市社区建设管理局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152501401, 152501, '二连边境经济技术合作区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502001, 152502, '希日塔拉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502002, 152502, '宝力根街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502003, 152502, '杭盖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502004, 152502, '楚古兰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502005, 152502, '额尔敦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502006, 152502, '南郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502007, 152502, '巴彦查干街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502008, 152502, '巴彦锡勒街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502100, 152502, '阿尔善宝拉格镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502200, 152502, '宝力根苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502201, 152502, '朝克乌拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502203, 152502, '巴彦宝拉格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502400, 152502, '锡林郭勒盟经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502500, 152502, '白银库伦牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502501, 152502, '贝力克牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152502502, 152502, '毛登牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522100, 152522, '别力古台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522101, 152522, '洪格尔高勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522102, 152522, '查干淖尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522200, 152522, '那仁宝拉格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522201, 152522, '伊和高勒苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522202, 152522, '吉尔嘎郎图苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522203, 152522, '巴彦图嘎苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152522400, 152522, '玛尼图煤矿', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523100, 152523, '满都拉图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523101, 152523, '查干敖包镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523102, 152523, '巴彦淖尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523200, 152523, '巴彦乌拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523201, 152523, '赛罕高毕苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523202, 152523, '洪格尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523203, 152523, '达来苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523400, 152523, '苏尼特左旗芒来循环经济产业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152523500, 152523, '恩格尔河灌区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524100, 152524, '赛汉塔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524101, 152524, '朱日和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524102, 152524, '乌日根塔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524200, 152524, '桑宝拉格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524201, 152524, '额仁淖尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524202, 152524, '赛罕乌力吉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524203, 152524, '阿其图乌拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152524400, 152524, '苏尼特右旗朱日和工业园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525100, 152525, '乌里雅斯太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525101, 152525, '道特淖尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525102, 152525, '嘎达布其镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525103, 152525, '满都胡宝拉格镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525104, 152525, '额吉淖尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525200, 152525, '呼热图淖尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525201, 152525, '萨麦苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525202, 152525, '嘎海乐苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525203, 152525, '阿拉坦合力苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525400, 152525, '乌里雅斯太工业区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152525503, 152525, '宝格达乌拉总场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526100, 152526, '巴拉嘎尔高勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526101, 152526, '巴彦花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526102, 152526, '吉仁高勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526103, 152526, '浩勒图高勒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526104, 152526, '高日罕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526200, 152526, '巴彦胡舒苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526201, 152526, '乌兰哈拉嘎苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526400, 152526, '西乌旗白音华能源化工园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152526500, 152526, '林业总场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527100, 152527, '宝昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527101, 152527, '千斤沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527102, 152527, '红旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527103, 152527, '骆驼山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527104, 152527, '永丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527200, 152527, '幸福乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527201, 152527, '贡宝拉格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152527500, 152527, '万寿滩良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152528100, 152528, '新宝拉格镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152528101, 152528, '巴彦塔拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152528200, 152528, '翁贡乌拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152528201, 152528, '宝格达音髙勒苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529100, 152529, '明安图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529101, 152529, '星耀镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529200, 152529, '伊和淖尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529201, 152529, '乌兰查布苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529202, 152529, '宝拉根陶海苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529500, 152529, '额里图种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152529502, 152529, '哲日根图林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530100, 152530, '上都镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530101, 152530, '桑根达来镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530102, 152530, '哈毕日嘎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530200, 152530, '宝绍代苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530201, 152530, '那日图苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530202, 152530, '赛音呼都嘎苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530203, 152530, '扎格斯台苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530500, 152530, '内蒙古自治区五一种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152530501, 152530, '黑城子示范区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152531100, 152531, '大北沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152531101, 152531, '多伦诺尔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152531102, 152531, '滦源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152531201, 152531, '蔡木山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152531202, 152531, '西干沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152531400, 152531, '多伦新型工业化化工区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152571101, 152571, '巴彦胡硕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152571500, 152571, '哈拉盖图农牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152571501, 152571, '贺斯格乌拉牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152571502, 152571, '乌拉盖牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921102, 152921, '温都尔勒图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921105, 152921, '巴润别立镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921110, 152921, '巴彦浩特镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921111, 152921, '嘉尔嘎勒赛汉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921112, 152921, '吉兰泰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921113, 152921, '宗别立镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921114, 152921, '敖伦布拉格镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921115, 152921, '腾格里额里斯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921203, 152921, '巴彦木仁苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921213, 152921, '乌力吉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921214, 152921, '巴彦诺日公苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921215, 152921, '额尔克哈什哈苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921216, 152921, '银根苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921217, 152921, '超格图呼热苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921401, 152921, '腾格里经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921402, 152921, '巴彦浩特额鲁特街道办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921403, 152921, '巴彦浩特南环路街道办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921404, 152921, '巴彦浩特新华街道办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152921405, 152921, '巴彦浩特王府街道办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922103, 152922, '巴丹吉林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922104, 152922, '雅布赖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922105, 152922, '阿拉腾敖包镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922211, 152922, '曼德拉苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922212, 152922, '阿拉腾朝格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922213, 152922, '巴彦高勒苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152922214, 152922, '塔木素布拉格苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923001, 152923, '航空街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923002, 152923, '东风街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923100, 152923, '达来呼布镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923101, 152923, '东风镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923102, 152923, '哈日布日格德音乌拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923200, 152923, '赛汉陶来苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923201, 152923, '马鬃山苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923202, 152923, '苏泊淖尔苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923203, 152923, '巴彦陶来苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923204, 152923, '温图高勒苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152923205, 152923, '巴音陶海苏木', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (152971100, 152971, '乌斯太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102001, 210102, '浑河湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102002, 210102, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102016, 210102, '马路湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102019, 210102, '南湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102021, 210102, '长白街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102022, 210102, '太原街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102023, 210102, '北市场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102025, 210102, '南市场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102027, 210102, '沈水湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210102028, 210102, '浑河站西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103005, 210103, '滨河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103006, 210103, '万莲街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103013, 210103, '朱剪炉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103014, 210103, '北站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103015, 210103, '风雨坛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103017, 210103, '皇城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103018, 210103, '五里河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103019, 210103, '南塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103020, 210103, '泉园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103022, 210103, '马官桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210103023, 210103, '东陵街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104002, 210104, '大北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104003, 210104, '万泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104006, 210104, '文官街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104007, 210104, '二台子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104008, 210104, '津桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104009, 210104, '东站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104012, 210104, '长安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104015, 210104, '东塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104017, 210104, '上园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210104018, 210104, '前进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105001, 210105, '三台子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105008, 210105, '黄河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105013, 210105, '华山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105017, 210105, '明廉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105019, 210105, '新乐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105020, 210105, '舍利塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105021, 210105, '北塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105022, 210105, '陵东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105023, 210105, '鸭绿江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210105024, 210105, '四台子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106001, 210106, '昆明湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106003, 210106, '工人村街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106007, 210106, '启工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106013, 210106, '笃工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106015, 210106, '兴华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106019, 210106, '霁虹街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106020, 210106, '凌空街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106021, 210106, '重工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106024, 210106, '兴顺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106026, 210106, '大青中朝友谊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106027, 210106, '翟家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106029, 210106, '大潘街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106030, 210106, '彰驿站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106031, 210106, '高花街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210106401, 210106, '沈阳市经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111001, 210111, '解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111003, 210111, '民主街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111005, 210111, '中兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111009, 210111, '林盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111010, 210111, '沙河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111011, 210111, '十里河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111012, 210111, '陈相街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111015, 210111, '永乐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111018, 210111, '佟沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111019, 210111, '八一红菱街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111020, 210111, '沈水街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210111021, 210111, '白清姚千街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112009, 210112, '东湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112010, 210112, '五三街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112012, 210112, '浑河站东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112014, 210112, '高坎街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112015, 210112, '满堂街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112016, 210112, '深井子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112017, 210112, '祝家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112018, 210112, '白塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112019, 210112, '桃仙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112020, 210112, '李相街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112022, 210112, '汪家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210112023, 210112, '王滨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113001, 210113, '新城子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113002, 210113, '清水台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113003, 210113, '辉山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113004, 210113, '道义街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113006, 210113, '虎石台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113007, 210113, '财落街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113010, 210113, '马刚街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113012, 210113, '黄家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113014, 210113, '兴隆台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113016, 210113, '正良街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113401, 210113, '青年农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113402, 210113, '前进农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113403, 210113, '育新农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113404, 210113, '沈北新区马刚林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113405, 210113, '沈北新区示范农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210113406, 210113, '沈北新区种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114001, 210114, '迎宾路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114003, 210114, '陵西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114007, 210114, '北陵街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114009, 210114, '沙岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114010, 210114, '南阳湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114011, 210114, '城东湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114012, 210114, '平罗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114013, 210114, '马三家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114014, 210114, '造化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114016, 210114, '光辉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114401, 210114, '马三家强制隔离戒毒所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114402, 210114, '光辉农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210114404, 210114, '监狱城', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115001, 210115, '蒲西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115002, 210115, '蒲东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115003, 210115, '茨榆坨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115004, 210115, '城郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115101, 210115, '于家房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115102, 210115, '朱家房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115103, 210115, '冷子堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115104, 210115, '刘二堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115106, 210115, '新民屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115107, 210115, '满都户镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115108, 210115, '杨士岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115109, 210115, '肖寨门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115110, 210115, '长滩镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115111, 210115, '四方台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115113, 210115, '六间房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115114, 210115, '养士堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115115, 210115, '潘家堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115117, 210115, '老大房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115118, 210115, '大黑岗子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115119, 210115, '牛心坨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210115401, 210115, '四方台农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123001, 210123, '北三家子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123002, 210123, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123003, 210123, '东关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123101, 210123, '小城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123102, 210123, '张强镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123103, 210123, '方家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123105, 210123, '郝官屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123106, 210123, '二牛所口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123203, 210123, '北四家子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123204, 210123, '两家子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123206, 210123, '海洲窝堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123208, 210123, '沙金台蒙古族满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123209, 210123, '柳树屯蒙古族满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123210, 210123, '西关屯蒙古族满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210123211, 210123, '东升满族蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124001, 210124, '吉祥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124002, 210124, '龙山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124101, 210124, '大孤家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124102, 210124, '三面船镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124103, 210124, '秀水河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124104, 210124, '叶茂台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124105, 210124, '登仕堡子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124106, 210124, '柏家沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124107, 210124, '丁家房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124108, 210124, '孟家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124109, 210124, '十间房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124110, 210124, '冯贝堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124111, 210124, '依牛堡子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124113, 210124, '包家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124201, 210124, '慈恩寺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124203, 210124, '和平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124208, 210124, '四家子蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124209, 210124, '双台子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210124210, 210124, '卧牛石乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181001, 210181, '东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181002, 210181, '辽滨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181003, 210181, '西城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181004, 210181, '新柳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181101, 210181, '大红旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181102, 210181, '梁山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181103, 210181, '公主屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181104, 210181, '兴隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181105, 210181, '前当堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181106, 210181, '大民屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181107, 210181, '大柳屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181108, 210181, '兴隆堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181109, 210181, '胡台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181110, 210181, '法哈牛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181111, 210181, '柳河沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181112, 210181, '高台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181113, 210181, '张家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181114, 210181, '罗家房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181115, 210181, '三道岗子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181116, 210181, '东蛇山子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181117, 210181, '陶家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181118, 210181, '周坨子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181119, 210181, '金五台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181120, 210181, '新农村镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181205, 210181, '红旗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181206, 210181, '卢家屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181207, 210181, '姚堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210181209, 210181, '于家窝堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210202001, 210202, '海军广场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210202005, 210202, '人民路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210202008, 210202, '青泥洼桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210202010, 210202, '葵英街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210202011, 210202, '桃源街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210202012, 210202, '老虎滩街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210203001, 210203, '香炉礁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210203004, 210203, '日新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210203010, 210203, '八一路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210203011, 210203, '人民广场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210203013, 210203, '白云街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204006, 210204, '春柳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204008, 210204, '马栏街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204009, 210204, '南沙河口街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204010, 210204, '黑石礁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204011, 210204, '李家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204017, 210204, '星海湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210204018, 210204, '西安路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211001, 210211, '周水子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211002, 210211, '椒金山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211004, 210211, '甘井子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211006, 210211, '南关岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211007, 210211, '泡崖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211008, 210211, '中华路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211010, 210211, '机场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211014, 210211, '辛寨子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211015, 210211, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211016, 210211, '凌水街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211017, 210211, '大连湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211018, 210211, '泉水街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211019, 210211, '革镇堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211020, 210211, '营城子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211021, 210211, '七贤岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210211400, 210211, '大连华侨果树农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212001, 210212, '登峰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212003, 210212, '得胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212005, 210212, '水师营街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212006, 210212, '龙王塘街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212007, 210212, '铁山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212009, 210212, '双岛湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212010, 210212, '三涧堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212011, 210212, '长城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212012, 210212, '龙头街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212400, 210212, '旅顺经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212401, 210212, '大连奶牛场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210212402, 210212, '龙头分园', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213001, 210213, '拥政街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213002, 210213, '友谊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213004, 210213, '马桥子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213005, 210213, '海青岛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213006, 210213, '大孤山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213008, 210213, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213009, 210213, '先进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213011, 210213, '董家沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213012, 210213, '金石滩街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213013, 210213, '湾里街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213014, 210213, '二十里堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213016, 210213, '亮甲店街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213017, 210213, '登沙河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213019, 210213, '大魏家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213020, 210213, '杏树街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213021, 210213, '七顶山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213022, 210213, '华家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213023, 210213, '向应街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213024, 210213, '大李家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213025, 210213, '得胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213027, 210213, '炮台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213028, 210213, '复州湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213029, 210213, '三十里堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213030, 210213, '石河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210213031, 210213, '光中街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214001, 210214, '丰荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214002, 210214, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214003, 210214, '太平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214005, 210214, '皮口街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214006, 210214, '城子坦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214007, 210214, '大刘家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214008, 210214, '杨树房街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214009, 210214, '大谭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214010, 210214, '唐家房街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214011, 210214, '莲山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214012, 210214, '安波街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214013, 210214, '沙包街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214014, 210214, '星台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214015, 210214, '墨盘街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214016, 210214, '同益街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214017, 210214, '乐甲街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214018, 210214, '双塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210214019, 210214, '四平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210224100, 210224, '大长山岛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210224101, 210224, '獐子岛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210224102, 210224, '广鹿岛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210224103, 210224, '小长山岛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210224104, 210224, '海洋岛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281001, 210281, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281002, 210281, '文兰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281003, 210281, '岭东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281004, 210281, '共济街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281005, 210281, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281006, 210281, '祝华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281007, 210281, '岗店街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281008, 210281, '太阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281009, 210281, '长兴岛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281010, 210281, '九龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281011, 210281, '交流岛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281101, 210281, '复州城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281103, 210281, '松树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281105, 210281, '得利寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281106, 210281, '万家岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281107, 210281, '许屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281108, 210281, '永宁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281109, 210281, '谢屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281112, 210281, '老虎屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281113, 210281, '红沿河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281115, 210281, '李官镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281116, 210281, '仙浴湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281117, 210281, '元台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281118, 210281, '瓦窝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281201, 210281, '赵屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281203, 210281, '土城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281204, 210281, '阎店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281205, 210281, '西杨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281206, 210281, '驼山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281208, 210281, '三台满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281210, 210281, '泡崖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210281212, 210281, '杨家满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283001, 210283, '城关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283002, 210283, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283003, 210283, '兴达街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283004, 210283, '昌盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283005, 210283, '明阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283101, 210283, '青堆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283102, 210283, '徐岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283104, 210283, '黑岛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283105, 210283, '栗子房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283107, 210283, '大营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283108, 210283, '塔岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283109, 210283, '仙人洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283110, 210283, '蓉花山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283111, 210283, '长岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283112, 210283, '荷花山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283113, 210283, '城山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283114, 210283, '光明山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283115, 210283, '大郑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283118, 210283, '吴炉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283120, 210283, '王家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283204, 210283, '鞍子山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283208, 210283, '太平岭满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283209, 210283, '步云山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283211, 210283, '桂云花满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283214, 210283, '兰店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210283216, 210283, '石城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302002, 210302, '解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302003, 210302, '山南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302004, 210302, '园林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302006, 210302, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302008, 210302, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302011, 210302, '湖南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302013, 210302, '新兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302014, 210302, '旧堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302015, 210302, '大孤山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302017, 210302, '长甸街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210302400, 210302, '玉佛山风景区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303002, 210303, '繁荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303003, 210303, '八家子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303005, 210303, '共和街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303006, 210303, '永乐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303008, 210303, '南华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303009, 210303, '大陆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303012, 210303, '永发街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303013, 210303, '宁远街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210303014, 210303, '达道湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304001, 210304, '友好街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304004, 210304, '双山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304006, 210304, '立山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304008, 210304, '曙光街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304009, 210304, '灵山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304014, 210304, '深沟寺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304015, 210304, '沙河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304017, 210304, '千山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210304019, 210304, '齐大山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210311006, 210311, '汤岗子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210311007, 210311, '东鞍山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210311102, 210311, '唐家房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210311103, 210311, '大屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210311104, 210311, '甘泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321001, 210321, '八角台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321002, 210321, '台东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321101, 210321, '西佛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321102, 210321, '新开河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321103, 210321, '黄沙坨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321104, 210321, '高力房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321105, 210321, '桑林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321106, 210321, '富家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321107, 210321, '达牛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321109, 210321, '韭菜台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321110, 210321, '新台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321111, 210321, '桓洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321400, 210321, '新华农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210321401, 210321, '洪家农牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323001, 210323, '阜昌街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323003, 210323, '兴隆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323004, 210323, '雅河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323101, 210323, '三家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323102, 210323, '石庙子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323103, 210323, '黄花甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323104, 210323, '大营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323105, 210323, '苏子沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323106, 210323, '偏岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323107, 210323, '哈达碑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323108, 210323, '新甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323109, 210323, '洋河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323111, 210323, '杨家堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323112, 210323, '清凉山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323113, 210323, '石灰窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323114, 210323, '前营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323115, 210323, '龙潭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323116, 210323, '牧牛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323117, 210323, '药山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323118, 210323, '大房身镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323119, 210323, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323206, 210323, '红旗营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323211, 210323, '岭沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210323212, 210323, '哨子河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381001, 210381, '海州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381002, 210381, '兴海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381003, 210381, '响堂街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381004, 210381, '东四街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381006, 210381, '温泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381101, 210381, '孤山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381102, 210381, '岔沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381103, 210381, '接文镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381104, 210381, '析木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381105, 210381, '马风镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381107, 210381, '牌楼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381108, 210381, '八里镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381109, 210381, '毛祁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381110, 210381, '英落镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381111, 210381, '感王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381112, 210381, '西柳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381113, 210381, '中小镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381114, 210381, '王石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381115, 210381, '南台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381118, 210381, '腾鳌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381121, 210381, '耿庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381123, 210381, '牛庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381124, 210381, '西四镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381125, 210381, '望台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381126, 210381, '温香镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210381127, 210381, '高坨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402001, 210402, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402005, 210402, '福民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402007, 210402, '新抚街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402009, 210402, '榆林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402011, 210402, '永安台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402019, 210402, '刘山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210402201, 210402, '千金乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403002, 210403, '东洲街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403004, 210403, '搭连街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403005, 210403, '龙凤街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403006, 210403, '新屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403007, 210403, '万新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403008, 210403, '老虎台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403012, 210403, '章党街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403103, 210403, '章党镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403104, 210403, '哈达镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403202, 210403, '碾盘乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210403215, 210403, '兰山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404002, 210404, '工农街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404003, 210404, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404004, 210404, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404005, 210404, '光明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404006, 210404, '朴屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404007, 210404, '演武街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404011, 210404, '李石街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404101, 210404, '塔峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210404201, 210404, '拉古满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411002, 210411, '长春街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411003, 210411, '葛布街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411004, 210411, '将军堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411005, 210411, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411007, 210411, '抚顺城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411102, 210411, '前甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411201, 210411, '河北乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210411205, 210411, '会元乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421101, 210421, '石文镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421102, 210421, '后安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421105, 210421, '上马镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421106, 210421, '救兵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421204, 210421, '马圈子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421209, 210421, '峡河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421211, 210421, '海浪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210421216, 210421, '汤图满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422100, 210422, '新宾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422101, 210422, '旺清门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422102, 210422, '永陵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422103, 210422, '平顶山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422104, 210422, '大四平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422105, 210422, '苇子峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422106, 210422, '木奇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422108, 210422, '上夹河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422109, 210422, '南杂木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422202, 210422, '红升乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422203, 210422, '响水河子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422204, 210422, '红庙子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422205, 210422, '北四平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422207, 210422, '榆树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210422208, 210422, '下夹河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423100, 210423, '清原镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423101, 210423, '红透山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423103, 210423, '草市镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423104, 210423, '英额门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423105, 210423, '南口前镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423106, 210423, '南山城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423107, 210423, '湾甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423108, 210423, '大孤家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423109, 210423, '夏家堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423110, 210423, '北三家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423203, 210423, '土口子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423206, 210423, '敖家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423207, 210423, '大苏河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210423208, 210423, '枸乃甸乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502001, 210502, '南地街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502003, 210502, '平山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502004, 210502, '东明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502005, 210502, '崔东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502007, 210502, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502008, 210502, '千金街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210502012, 210502, '桥北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503001, 210503, '河东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503003, 210503, '河西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503005, 210503, '彩屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503009, 210503, '东风街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503010, 210503, '石桥子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503011, 210503, '日月岛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210503013, 210503, '火连寨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504002, 210504, '北地街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504004, 210504, '高峪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504005, 210504, '明山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504008, 210504, '新明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504009, 210504, '牛心台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504010, 210504, '卧龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210504011, 210504, '高台子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210505001, 210505, '南芬街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210505004, 210505, '思山岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210505005, 210505, '下马塘街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521001, 210521, '观音阁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521100, 210521, '小市镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521101, 210521, '草河掌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521102, 210521, '草河城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521103, 210521, '草河口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521104, 210521, '连山关镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521106, 210521, '清河城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521109, 210521, '田师傅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521110, 210521, '南甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521111, 210521, '碱厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521112, 210521, '高官镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210521202, 210521, '东营坊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522001, 210522, '八卦城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522100, 210522, '桓仁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522101, 210522, '普乐堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522102, 210522, '二棚甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522103, 210522, '沙尖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522104, 210522, '五里甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522108, 210522, '八里甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522110, 210522, '华来镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522111, 210522, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522201, 210522, '雅河朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522202, 210522, '向阳乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522206, 210522, '黑沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210522208, 210522, '北甸子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210602002, 210602, '七道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210602003, 210602, '广济街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210602004, 210602, '九道街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210602006, 210602, '兴东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210602101, 210602, '金山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603002, 210603, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603003, 210603, '临江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603005, 210603, '帽盔山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603006, 210603, '纤维街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603007, 210603, '永昌街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603008, 210603, '花园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603009, 210603, '江海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603101, 210603, '浪头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603102, 210603, '安民镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210603103, 210603, '汤池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604001, 210604, '鸭绿江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604003, 210604, '金矿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604004, 210604, '珍珠街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604005, 210604, '太平湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604102, 210604, '同兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604104, 210604, '五龙背镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604105, 210604, '楼房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604106, 210604, '九连城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210604107, 210604, '汤山城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624100, 210624, '宽甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624101, 210624, '灌水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624102, 210624, '硼海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624103, 210624, '红石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624104, 210624, '毛甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624105, 210624, '长甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624106, 210624, '永甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624108, 210624, '太平哨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624109, 210624, '青山沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624110, 210624, '牛毛坞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624111, 210624, '大川头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624112, 210624, '青椅山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624113, 210624, '杨木川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624114, 210624, '虎山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624115, 210624, '振江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624116, 210624, '步达远镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624117, 210624, '大西岔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624118, 210624, '八河川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624119, 210624, '双山子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624201, 210624, '石湖沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624206, 210624, '古楼子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210624212, 210624, '下露河朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681001, 210681, '大东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681002, 210681, '新兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681003, 210681, '新城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681101, 210681, '孤山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681104, 210681, '前阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681105, 210681, '长安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681106, 210681, '十字街镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681107, 210681, '长山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681108, 210681, '北井子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681109, 210681, '椅圈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681110, 210681, '黄土坎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681113, 210681, '马家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681114, 210681, '龙王庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681115, 210681, '小甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681117, 210681, '菩萨庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681118, 210681, '黑沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681119, 210681, '新农镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681206, 210681, '合隆满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681401, 210681, '示范农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681402, 210681, '黄土坎农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681403, 210681, '海洋红农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681404, 210681, '兴隆农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210681405, 210681, '五四农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682001, 210682, '凤凰城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682002, 210682, '凤山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682003, 210682, '草河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682101, 210682, '宝山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682102, 210682, '白旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682103, 210682, '沙里寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682104, 210682, '红旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682105, 210682, '蓝旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682107, 210682, '边门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682110, 210682, '东汤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682111, 210682, '石城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682112, 210682, '大兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682113, 210682, '爱阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682114, 210682, '赛马镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682115, 210682, '弟兄山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682116, 210682, '鸡冠山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682117, 210682, '刘家河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682118, 210682, '通远堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682119, 210682, '四门子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682120, 210682, '青城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210682200, 210682, '大堡蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210702002, 210702, '石油街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210702003, 210702, '古城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210702004, 210702, '敬业街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210702005, 210702, '保安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210702009, 210702, '士英街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703002, 210703, '石桥子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703003, 210703, '龙江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703004, 210703, '榴花街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703008, 210703, '康宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703009, 210703, '锦铁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703011, 210703, '紫荆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210703403, 210703, '锦州北山农工商总公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711004, 210711, '太和街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711008, 210711, '大薛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711011, 210711, '新民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711012, 210711, '营盘街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711013, 210711, '女儿河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711071, 210711, '天桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711072, 210711, '杏山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711073, 210711, '娘娘宫街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711080, 210711, '凌南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711081, 210711, '松山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210711480, 210711, '锦州市果树农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726001, 210726, '黑山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726002, 210726, '大虎山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726101, 210726, '芳山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726102, 210726, '白厂门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726103, 210726, '常兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726104, 210726, '姜屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726105, 210726, '励家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726106, 210726, '绕阳河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726107, 210726, '半拉门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726108, 210726, '无梁殿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726109, 210726, '胡家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726110, 210726, '新立屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726111, 210726, '八道壕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726113, 210726, '四家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726114, 210726, '新兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726116, 210726, '太和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726117, 210726, '镇安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726201, 210726, '英城子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726209, 210726, '段家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726210, 210726, '大兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726212, 210726, '薛屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210726400, 210726, '辽宁省锦州市小东种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727001, 210727, '义州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727002, 210727, '城关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727101, 210727, '刘龙台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727102, 210727, '七里河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727103, 210727, '大榆树堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727104, 210727, '稍户营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727105, 210727, '九道岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727106, 210727, '高台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727108, 210727, '瓦子峪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727109, 210727, '头台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727110, 210727, '前杨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727111, 210727, '张家堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727112, 210727, '头道河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727113, 210727, '留龙沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727114, 210727, '聚粮屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727203, 210727, '地藏寺满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727205, 210727, '大定堡满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210727207, 210727, '白庙子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781001, 210781, '大凌河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781002, 210781, '金城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781003, 210781, '八千街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781101, 210781, '石山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781102, 210781, '余积镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781103, 210781, '双羊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781104, 210781, '班吉塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781105, 210781, '沈家台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781106, 210781, '三台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781107, 210781, '右卫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781108, 210781, '阎家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781109, 210781, '新庄子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781112, 210781, '翠岩镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781113, 210781, '安屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781114, 210781, '大业镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781116, 210781, '建业镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781117, 210781, '温滴楼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781118, 210781, '白台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781212, 210781, '板石沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781217, 210781, '谢屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210781401, 210781, '辽宁省金城原种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782004, 210782, '北镇街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782006, 210782, '富屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782007, 210782, '广宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782008, 210782, '沟帮子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782101, 210782, '大市镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782102, 210782, '罗罗堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782103, 210782, '常兴店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782104, 210782, '正安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782105, 210782, '闾阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782106, 210782, '中安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782107, 210782, '廖屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782109, 210782, '赵屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782110, 210782, '青堆子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782111, 210782, '高山子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782113, 210782, '吴家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782203, 210782, '鲍家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782206, 210782, '大屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782209, 210782, '柳家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782402, 210782, '辽宁省北镇市高山子监狱', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210782403, 210782, '新立农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210802001, 210802, '八田地街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210802002, 210802, '建丰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210802003, 210802, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210802004, 210802, '跃进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210802007, 210802, '新建街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210802008, 210802, '东兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803002, 210803, '清华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803003, 210803, '滨海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803004, 210803, '得胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803005, 210803, '五台子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803006, 210803, '渔市街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803400, 210803, '辽宁自贸区营口片区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210803401, 210803, '辽宁(营口)沿海产业基地', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210804001, 210804, '红海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210804002, 210804, '海星街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210804003, 210804, '望海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210804100, 210804, '熊岳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210804101, 210804, '芦屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210804102, 210804, '红旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210811001, 210811, '老边街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210811101, 210811, '路南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210811102, 210811, '柳树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210811103, 210811, '边城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210811400, 210811, '营口辽河经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881001, 210881, '鼓楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881002, 210881, '西城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881003, 210881, '东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881004, 210881, '太阳升街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881005, 210881, '团山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881006, 210881, '西海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881007, 210881, '九垄地街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881008, 210881, '归州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881102, 210881, '高屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881105, 210881, '沙岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881109, 210881, '九寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881110, 210881, '万福镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881111, 210881, '卧龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881112, 210881, '青石岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881113, 210881, '暖泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881116, 210881, '榜式堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881117, 210881, '团甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881118, 210881, '双台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881119, 210881, '杨运镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881120, 210881, '徐屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881121, 210881, '什字街镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881122, 210881, '矿洞沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881123, 210881, '陈屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881124, 210881, '梁屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881216, 210881, '小石棚乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881217, 210881, '果园乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210881218, 210881, '二台乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882003, 210882, '金桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882004, 210882, '钢都街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882005, 210882, '百寨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882006, 210882, '镁都街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882101, 210882, '水源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882102, 210882, '沟沿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882103, 210882, '石佛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882104, 210882, '高坎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882105, 210882, '旗口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882106, 210882, '虎庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882107, 210882, '官屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882112, 210882, '博洛铺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882113, 210882, '永安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882114, 210882, '汤池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882115, 210882, '建一镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882116, 210882, '黄土岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882117, 210882, '周家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882400, 210882, '大石桥市水稻良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210882401, 210882, '大石桥市示范场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902003, 210902, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902004, 210902, '西山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902005, 210902, '河北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902006, 210902, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902008, 210902, '五龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902009, 210902, '平安西部街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210902101, 210902, '韩家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210903005, 210903, '街基街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210903006, 210903, '新发屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210903101, 210903, '长营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210904001, 210904, '红树街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210904003, 210904, '高德街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210904004, 210904, '孙家湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210904101, 210904, '水泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210905001, 210905, '清河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210905004, 210905, '新北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210905101, 210905, '河西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210905102, 210905, '乌龙坝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210911001, 210911, '玉新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210911007, 210911, '玉龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210911008, 210911, '玉丰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210911102, 210911, '四合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210911401, 210911, '六家子管委会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921001, 210921, '城区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921100, 210921, '阜新镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921102, 210921, '东梁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921103, 210921, '佛寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921104, 210921, '伊吗图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921105, 210921, '旧庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921106, 210921, '务欢池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921107, 210921, '建设镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921108, 210921, '大巴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921109, 210921, '泡子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921110, 210921, '十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921111, 210921, '王府镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921112, 210921, '于寺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921113, 210921, '富荣镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921114, 210921, '新民镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921115, 210921, '福兴地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921116, 210921, '平安地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921117, 210921, '沙拉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921118, 210921, '大固本镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921119, 210921, '大五家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921120, 210921, '大板镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921121, 210921, '招束沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921122, 210921, '八家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921123, 210921, '蜘蛛山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921124, 210921, '塔营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921125, 210921, '扎兰营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921126, 210921, '七家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921127, 210921, '红帽子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921128, 210921, '紫都台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921129, 210921, '化石戈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921130, 210921, '哈达户稍镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921131, 210921, '老河土镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921132, 210921, '太平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921203, 210921, '卧凤沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921211, 210921, '苍土乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921222, 210921, '国华乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210921401, 210921, '田家管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922100, 210922, '彰武镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922101, 210922, '哈尔套镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922102, 210922, '章古台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922103, 210922, '五峰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922104, 210922, '冯家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922105, 210922, '后新秋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922106, 210922, '东六家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922107, 210922, '阿尔乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922108, 210922, '前福兴地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922109, 210922, '双庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922110, 210922, '大四家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922111, 210922, '苇子沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922112, 210922, '兴隆山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922113, 210922, '满堂红镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922114, 210922, '四合城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922115, 210922, '大冷镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922116, 210922, '两家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922117, 210922, '平安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922118, 210922, '四堡子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922119, 210922, '西六家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922120, 210922, '大德镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922121, 210922, '兴隆堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922202, 210922, '二道河子蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (210922209, 210922, '丰田乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211002016, 211002, '文圣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211002017, 211002, '武圣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211002018, 211002, '南门街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211002019, 211002, '襄平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211003004, 211003, '庆阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211003008, 211003, '东京陵街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211003101, 211003, '小屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211003102, 211003, '罗大台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211004001, 211004, '工农街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211004004, 211004, '长征街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211004101, 211004, '曙光镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211004102, 211004, '兰家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211005001, 211005, '苏家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211005003, 211005, '安平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211005101, 211005, '汤河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211005201, 211005, '安平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211011003, 211011, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211011101, 211011, '祁家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211011102, 211011, '沙岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211011103, 211011, '王家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211011204, 211011, '东宁卫乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021100, 211021, '首山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021101, 211021, '刘二堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021103, 211021, '小北河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021104, 211021, '黄泥洼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021106, 211021, '唐马寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021107, 211021, '穆家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021108, 211021, '柳壕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021110, 211021, '河栏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021111, 211021, '隆昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021112, 211021, '八会镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021113, 211021, '寒岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021114, 211021, '兴隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021201, 211021, '下达河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021202, 211021, '吉洞峪满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211021206, 211021, '甜水满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081001, 211081, '烟台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081002, 211081, '万宝桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081003, 211081, '古城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081101, 211081, '佟二堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081102, 211081, '铧子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081103, 211081, '张台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081104, 211081, '西大窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081105, 211081, '沈旦堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081106, 211081, '西马峰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081107, 211081, '柳条寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081108, 211081, '柳河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081111, 211081, '大河南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081114, 211081, '五星镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211081205, 211081, '鸡冠山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102002, 211102, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102003, 211102, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102004, 211102, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102005, 211102, '辽河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102008, 211102, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102009, 211102, '双盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102100, 211102, '统一镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211102101, 211102, '陆家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103001, 211103, '振兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103002, 211103, '兴隆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103003, 211103, '渤海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103004, 211103, '新工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103007, 211103, '曙光街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103008, 211103, '欢喜岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103013, 211103, '沈采街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103016, 211103, '创新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103017, 211103, '兴盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103018, 211103, '兴海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211103019, 211103, '惠宾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104002, 211104, '二界沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104004, 211104, '大洼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104005, 211104, '田家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104006, 211104, '榆树街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104007, 211104, '王家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104009, 211104, '于楼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104101, 211104, '田庄台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104103, 211104, '东风镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104104, 211104, '新开镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104106, 211104, '清水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104107, 211104, '新兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104108, 211104, '西安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104109, 211104, '新立镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104112, 211104, '唐家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104113, 211104, '平安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211104114, 211104, '赵圈河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122001, 211122, '太平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122002, 211122, '高升街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122003, 211122, '得胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122004, 211122, '东郭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122101, 211122, '沙岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122103, 211122, '胡家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122104, 211122, '石新镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122106, 211122, '羊圈子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122107, 211122, '古城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122108, 211122, '坝墙子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122110, 211122, '陈家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122111, 211122, '甜水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122112, 211122, '吴家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211122400, 211122, '盘山县林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202001, 211202, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202002, 211202, '工人街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202003, 211202, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202004, 211202, '铜钟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202005, 211202, '柴河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202006, 211202, '岭东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202007, 211202, '辽海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202201, 211202, '龙山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211202401, 211202, '铁岭经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211204001, 211204, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211204002, 211204, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211204101, 211204, '张相镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211204102, 211204, '杨木林子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211204203, 211204, '聂家满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221101, 211221, '新台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221102, 211221, '阿吉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221103, 211221, '平顶堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221104, 211221, '大甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221105, 211221, '凡河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221106, 211221, '腰堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221107, 211221, '镇西堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221108, 211221, '蔡牛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221109, 211221, '李千户镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221110, 211221, '熊官屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221111, 211221, '横道河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221112, 211221, '双井子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221208, 211221, '鸡冠山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211221209, 211221, '白旗寨满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223100, 211223, '西丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223101, 211223, '平岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223102, 211223, '郜家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223103, 211223, '凉泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223104, 211223, '振兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223105, 211223, '安民镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223106, 211223, '天德镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223107, 211223, '房木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223108, 211223, '柏榆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223109, 211223, '陶然镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223110, 211223, '钓鱼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223111, 211223, '更刻镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223204, 211223, '德兴满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223206, 211223, '明德满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223209, 211223, '成平满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223211, 211223, '和隆满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223212, 211223, '营厂满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211223213, 211223, '金星满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224100, 211224, '昌图镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224101, 211224, '老城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224102, 211224, '八面城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224103, 211224, '三江口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224104, 211224, '金家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224105, 211224, '宝力镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224106, 211224, '泉头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224107, 211224, '双庙子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224108, 211224, '亮中桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224109, 211224, '马仲河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224110, 211224, '毛家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224111, 211224, '老四平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224112, 211224, '大洼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224113, 211224, '头道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224114, 211224, '鴜鷺树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224115, 211224, '傅家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224117, 211224, '四合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224118, 211224, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224119, 211224, '古榆树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224120, 211224, '七家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224121, 211224, '东嘎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224122, 211224, '四面城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224123, 211224, '前双井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224124, 211224, '通江口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224125, 211224, '大四家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224126, 211224, '曲家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224127, 211224, '十八家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224128, 211224, '太平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224129, 211224, '下二台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224130, 211224, '平安堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224131, 211224, '大兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224132, 211224, '后窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211224133, 211224, '长发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211281001, 211281, '兀术街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211281002, 211281, '调兵山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211281102, 211281, '晓明镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211281103, 211281, '大明镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211281105, 211281, '晓南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282001, 211282, '新城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282002, 211282, '老城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282003, 211282, '开原街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282102, 211282, '威远堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282103, 211282, '庆云堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282104, 211282, '中固镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282105, 211282, '八棵树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282106, 211282, '金沟子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282107, 211282, '八宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282108, 211282, '业民镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282109, 211282, '莲花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282110, 211282, '靠山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282111, 211282, '马家寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282112, 211282, '下肥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282113, 211282, '松山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282114, 211282, '城东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282115, 211282, '李家台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282116, 211282, '上肥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282117, 211282, '黄旗寨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211282217, 211282, '林丰满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302001, 211302, '双塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302003, 211302, '前进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302004, 211302, '凌河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302005, 211302, '光明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302006, 211302, '凌凤街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302007, 211302, '龙山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302008, 211302, '站南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302009, 211302, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302010, 211302, '燕北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302100, 211302, '桃花吐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302101, 211302, '他拉皋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302102, 211302, '孙家湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211302205, 211302, '长宝营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303004, 211303, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303005, 211303, '海龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303070, 211303, '龙泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303101, 211303, '七道泉子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303102, 211303, '西大营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303103, 211303, '召都巴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303105, 211303, '大平房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303106, 211303, '联合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211303107, 211303, '边杖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321001, 211321, '柳城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321102, 211321, '波罗赤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321103, 211321, '木头城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321104, 211321, '二十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321105, 211321, '羊山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321106, 211321, '六家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321107, 211321, '瓦房子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321108, 211321, '大庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321110, 211321, '古山子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321111, 211321, '南双庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321112, 211321, '台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321113, 211321, '清风岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321114, 211321, '胜利镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321115, 211321, '七道岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321116, 211321, '杨树湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321211, 211321, '西五家子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321212, 211321, '北沟门子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321214, 211321, '东大道乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321215, 211321, '乌兰河硕蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321220, 211321, '东大屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321221, 211321, '松岭门蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321222, 211321, '根德营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321224, 211321, '西营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321228, 211321, '北四家子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321230, 211321, '王营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321231, 211321, '黑牛营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321232, 211321, '尚志乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211321400, 211321, '国营朝阳县贾家店农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322001, 211322, '叶柏寿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322002, 211322, '红山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322003, 211322, '铁南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322004, 211322, '万寿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322101, 211322, '朱碌科镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322102, 211322, '建平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322103, 211322, '黑水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322104, 211322, '喀喇沁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322105, 211322, '北二十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322106, 211322, '沙海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322108, 211322, '哈拉道口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322109, 211322, '榆树林子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322110, 211322, '老官地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322111, 211322, '深井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322112, 211322, '奎德素镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322113, 211322, '小塘镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322114, 211322, '马场镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322115, 211322, '昌隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322117, 211322, '张家营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322118, 211322, '青峰山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322119, 211322, '太平庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322205, 211322, '青松岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322206, 211322, '杨树岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322209, 211322, '罗福沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322211, 211322, '烧锅营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322214, 211322, '白山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322218, 211322, '三家蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322220, 211322, '义成功乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322400, 211322, '八家国营农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211322401, 211322, '热水国营畜牧农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324001, 211324, '大城子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324002, 211324, '利州街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324101, 211324, '南公营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324102, 211324, '山嘴子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324104, 211324, '公营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324105, 211324, '白塔子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324106, 211324, '中三家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324107, 211324, '老爷庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324108, 211324, '六官营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324109, 211324, '平房子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324110, 211324, '十二德堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324111, 211324, '羊角沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324112, 211324, '兴隆庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324113, 211324, '甘招镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324114, 211324, '东哨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324115, 211324, '水泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324204, 211324, '尤杖子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324207, 211324, '草场乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324210, 211324, '坤都营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324211, 211324, '大营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324214, 211324, '卧虎沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211324400, 211324, '国营官大海农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381001, 211381, '城关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381002, 211381, '南山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381003, 211381, '冠山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381006, 211381, '台吉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381101, 211381, '西官营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381102, 211381, '大板镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381103, 211381, '上园镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381104, 211381, '宝国老镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381105, 211381, '黑城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381107, 211381, '五间房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381108, 211381, '台吉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381109, 211381, '东官营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381110, 211381, '龙潭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381111, 211381, '北塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381112, 211381, '蒙古营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381113, 211381, '大三家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381201, 211381, '长皋乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381202, 211381, '常河营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381203, 211381, '小塔子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381204, 211381, '马友营蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381206, 211381, '泉巨永乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381212, 211381, '哈尔脑乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381213, 211381, '南八家子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381214, 211381, '章吉营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381215, 211381, '三宝营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381216, 211381, '巴图营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381218, 211381, '台吉营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381220, 211381, '娄家店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381221, 211381, '北四家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381223, 211381, '凉水河蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381228, 211381, '三宝乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381400, 211381, '国营兴顺德畜牧农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381470, 211381, '下府经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211381471, 211381, '大黑山特别管理区管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382001, 211382, '东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382002, 211382, '北街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382003, 211382, '南街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382008, 211382, '红山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382009, 211382, '城关街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382101, 211382, '万元店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382102, 211382, '宋杖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382103, 211382, '三十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382104, 211382, '杨杖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382105, 211382, '刀尔登镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382106, 211382, '松岭子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382107, 211382, '四官营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382108, 211382, '沟门子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382110, 211382, '小城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382111, 211382, '四合当镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382113, 211382, '乌兰白镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382114, 211382, '瓦房店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382115, 211382, '大河北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382116, 211382, '牛营子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382117, 211382, '三道河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382118, 211382, '刘杖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382204, 211382, '大王杖子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382206, 211382, '前进乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382210, 211382, '北炉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382217, 211382, '三家子蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382219, 211382, '佛爷洞乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211382220, 211382, '河坎子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402001, 211402, '连山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402002, 211402, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402003, 211402, '渤海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402004, 211402, '兴工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402005, 211402, '石油街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402006, 211402, '化工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402011, 211402, '锦郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402104, 211402, '钢屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402105, 211402, '寺儿堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402106, 211402, '新台门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402201, 211402, '沙河营乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402202, 211402, '孤竹营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402203, 211402, '白马石乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402205, 211402, '山神庙子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402206, 211402, '塔山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402210, 211402, '杨郊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402400, 211402, '杨家杖子经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211402401, 211402, '连山飞地经济区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403001, 211403, '葫芦岛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403003, 211403, '马仗房街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403005, 211403, '龙湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403006, 211403, '滨海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403007, 211403, '双龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403008, 211403, '玉皇街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403009, 211403, '连湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403010, 211403, '北港街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403201, 211403, '双树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403400, 211403, '葫芦岛经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403401, 211403, '葫芦岛市专利技术园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211403402, 211403, '龙港飞地经济区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404002, 211404, '沙锅屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404008, 211404, '九龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404010, 211404, '龙腾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404101, 211404, '缸窑岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404102, 211404, '暖池塘镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404103, 211404, '高桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404104, 211404, '虹螺岘镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404105, 211404, '金星镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404106, 211404, '台集屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404201, 211404, '沙锅屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404203, 211404, '黄土坎乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404204, 211404, '大兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404205, 211404, '张相公屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404400, 211404, '乌金塘水库', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211404401, 211404, '南票飞地经济区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421100, 211421, '绥中镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421101, 211421, '西甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421102, 211421, '宽邦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421103, 211421, '大王庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421104, 211421, '万家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421105, 211421, '前所镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421106, 211421, '高岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421107, 211421, '前卫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421108, 211421, '荒地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421109, 211421, '塔山屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421113, 211421, '高台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421114, 211421, '王宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421115, 211421, '沙河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421116, 211421, '小庄子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421201, 211421, '西平坡满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421202, 211421, '葛家满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421204, 211421, '高甸子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421206, 211421, '范家满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421207, 211421, '明水满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421208, 211421, '秋子沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421210, 211421, '加碑岩乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421211, 211421, '永安堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421212, 211421, '李家堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421214, 211421, '网户满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421217, 211421, '城郊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421400, 211421, '大台山果树农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421401, 211421, '前所果树农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211421402, 211421, '绥中飞地经济区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422100, 211422, '建昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422101, 211422, '八家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422102, 211422, '喇嘛洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422103, 211422, '药王庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422104, 211422, '汤神庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422105, 211422, '玲珑塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422106, 211422, '大屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422201, 211422, '牤牛营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422203, 211422, '素珠营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422204, 211422, '石佛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422206, 211422, '王宝营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422207, 211422, '老大杖子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422208, 211422, '要路沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422209, 211422, '魏家岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422210, 211422, '西碱厂乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422211, 211422, '头道营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422212, 211422, '新开岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422213, 211422, '贺杖子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422214, 211422, '养马甸子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422215, 211422, '和尚房子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422218, 211422, '杨树湾子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422219, 211422, '黑山科乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422220, 211422, '雷家店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422222, 211422, '小德营子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422223, 211422, '二道湾子蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422224, 211422, '巴什罕乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422225, 211422, '娘娘庙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422226, 211422, '谷杖子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211422401, 211422, '建昌飞地经济区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481001, 211481, '古城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481002, 211481, '宁远街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481004, 211481, '温泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481007, 211481, '四家屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481008, 211481, '菊花街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481101, 211481, '曹庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481103, 211481, '沙后所满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481104, 211481, '东辛庄满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481105, 211481, '郭家满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481106, 211481, '红崖子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481107, 211481, '徐大堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481108, 211481, '高家岭满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481201, 211481, '羊安满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481203, 211481, '元台子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481204, 211481, '白塔满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481206, 211481, '望海满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481207, 211481, '刘台子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481208, 211481, '大寨满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481209, 211481, '南大满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481210, 211481, '围屏满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481212, 211481, '碱厂满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481213, 211481, '三道沟满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481215, 211481, '旧门满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481216, 211481, '药王满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (211481400, 211481, '兴城飞地经济区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102001, 220102, '南岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102002, 220102, '自强街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102003, 220102, '民康街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102004, 220102, '新春街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102005, 220102, '长通街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102006, 220102, '全安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102007, 220102, '曙光街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102008, 220102, '永吉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102009, 220102, '桃源街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102010, 220102, '鸿城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102011, 220102, '明珠街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102012, 220102, '富裕街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220102200, 220102, '幸福乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103001, 220103, '新发街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103002, 220103, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103003, 220103, '南广街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103004, 220103, '东广街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103005, 220103, '群英街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103006, 220103, '兴业街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103007, 220103, '凯旋街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103008, 220103, '团山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103009, 220103, '柳影街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103010, 220103, '欣园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103011, 220103, '长德街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103100, 220103, '兰家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103101, 220103, '米沙子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103102, 220103, '万宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220103171, 220103, '合隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104001, 220104, '前进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104002, 220104, '桂林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104003, 220104, '南湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104004, 220104, '永昌街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104005, 220104, '重庆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104006, 220104, '清和街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104007, 220104, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104008, 220104, '湖西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104009, 220104, '富锋街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104100, 220104, '乐山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220104101, 220104, '永春镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105001, 220105, '东盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105002, 220105, '吉林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105003, 220105, '荣光街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105004, 220105, '东站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105005, 220105, '远达街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105006, 220105, '八里堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105007, 220105, '长青街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105100, 220105, '英俊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105173, 220105, '劝农山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105174, 220105, '泉眼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220105270, 220105, '四家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106001, 220106, '正阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106003, 220106, '春城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106005, 220106, '青年路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106006, 220106, '普阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106007, 220106, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106010, 220106, '林园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106011, 220106, '同心街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106100, 220106, '合心镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106101, 220106, '西新镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106102, 220106, '城西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220106400, 220106, '绿园经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112001, 220112, '云山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112002, 220112, '平湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112003, 220112, '奢岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112004, 220112, '山河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112102, 220112, '鹿乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112104, 220112, '齐家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112105, 220112, '太平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220112203, 220112, '双营子回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113001, 220113, '九台街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113002, 220113, '营城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113003, 220113, '九郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113004, 220113, '西营城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113005, 220113, '土们岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113006, 220113, '苇子沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113007, 220113, '兴隆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113008, 220113, '纪家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113009, 220113, '波泥河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113010, 220113, '卡伦湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113011, 220113, '东湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113012, 220113, '龙嘉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113013, 220113, '兴港街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113014, 220113, '沐石河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113015, 220113, '城子街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113102, 220113, '其塔木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113103, 220113, '上河湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113200, 220113, '胡家回族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220113201, 220113, '莽卡满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122001, 220122, '兴农街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122002, 220122, '宝塔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122003, 220122, '和谐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122004, 220122, '黄龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122100, 220122, '农安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122101, 220122, '伏龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122102, 220122, '哈拉海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122103, 220122, '靠山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122104, 220122, '开安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122105, 220122, '烧锅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122106, 220122, '高家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122107, 220122, '华家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122108, 220122, '三盛玉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122109, 220122, '巴吉垒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122110, 220122, '三岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122200, 220122, '前岗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122201, 220122, '龙王乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122203, 220122, '万顺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122204, 220122, '杨树林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122205, 220122, '永安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122206, 220122, '青山口乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122207, 220122, '黄鱼圈乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122208, 220122, '新农乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122209, 220122, '万金塔乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122210, 220122, '小城子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220122400, 220122, '洼中高农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220171001, 220171, '临河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220171002, 220171, '东方广场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220171003, 220171, '会展街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220171004, 220171, '世纪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220171100, 220171, '兴隆山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172001, 220172, '永兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172002, 220172, '净月街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172003, 220172, '福祉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172004, 220172, '德正街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172005, 220172, '彩织街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172006, 220172, '德容街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172007, 220172, '博硕街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172100, 220172, '新立城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172101, 220172, '新湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220172102, 220172, '玉潭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220173001, 220173, '硅谷街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220173002, 220173, '北湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220173003, 220173, '超越街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220173004, 220173, '飞跃街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220173005, 220173, '双德街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220173200, 220173, '奋进乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220174001, 220174, '锦程街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220174002, 220174, '东风街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220174003, 220174, '富民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220174004, 220174, '前程街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182001, 220182, '华昌街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182002, 220182, '正阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182003, 220182, '培英街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182004, 220182, '城郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182100, 220182, '五棵树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182101, 220182, '弓棚镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182102, 220182, '闵家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182103, 220182, '大坡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182104, 220182, '黑林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182105, 220182, '土桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182106, 220182, '新立镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182107, 220182, '大岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182108, 220182, '于家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182109, 220182, '泗河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182110, 220182, '八号镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182111, 220182, '刘家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182112, 220182, '秀水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182113, 220182, '保寿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182114, 220182, '新庄镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182200, 220182, '育民乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182201, 220182, '红星乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182202, 220182, '太安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182203, 220182, '先峰乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182204, 220182, '青山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182205, 220182, '延和朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182206, 220182, '恩育乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182207, 220182, '城发乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220182208, 220182, '环城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183001, 220183, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183002, 220183, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183003, 220183, '惠发街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183004, 220183, '夏家店街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183100, 220183, '大青嘴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183101, 220183, '郭家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183102, 220183, '松花江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183103, 220183, '达家沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183104, 220183, '大房身镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183105, 220183, '岔路口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183106, 220183, '朱城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183107, 220183, '布海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183108, 220183, '天台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183109, 220183, '菜园子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183200, 220183, '同太乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183201, 220183, '边岗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183202, 220183, '五台乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220183203, 220183, '朝阳乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184001, 220184, '河南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184002, 220184, '河北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184003, 220184, '东三街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184004, 220184, '岭东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184005, 220184, '铁北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184006, 220184, '岭西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184007, 220184, '刘房子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184008, 220184, '南崴子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184009, 220184, '环岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184010, 220184, '苇子沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184100, 220184, '二十家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184101, 220184, '黑林子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184102, 220184, '陶家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184103, 220184, '范家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184104, 220184, '响水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184105, 220184, '大岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184106, 220184, '怀德镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184107, 220184, '双城堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184108, 220184, '双龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184109, 220184, '杨大城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184110, 220184, '毛城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184111, 220184, '玻璃城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184112, 220184, '朝阳坡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184113, 220184, '大榆树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184114, 220184, '秦家屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184115, 220184, '八屋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184116, 220184, '十屋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184117, 220184, '桑树台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184200, 220184, '龙山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184201, 220184, '永发乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184400, 220184, '省原种繁殖场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184401, 220184, '四平农科院', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184402, 220184, '公主岭市种猪场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184404, 220184, '十屋种牛场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184405, 220184, '创业农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220184407, 220184, '范家屯经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202001, 220202, '兴华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202002, 220202, '文庙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202003, 220202, '东局子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202004, 220202, '新地号街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202005, 220202, '延安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202006, 220202, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202007, 220202, '民主街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202008, 220202, '莲花街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202009, 220202, '通江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202010, 220202, '哈达湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202011, 220202, '新建街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202012, 220202, '延江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202071, 220202, '吉林东市商贸示范区特殊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202100, 220202, '孤店子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202101, 220202, '桦皮厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202102, 220202, '左家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202200, 220202, '两家子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202201, 220202, '土城子满族朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202401, 220202, '幸福开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220202402, 220202, '哈达湾经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203001, 220203, '龙华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203002, 220203, '湘潭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203003, 220203, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203004, 220203, '泡子沿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203005, 220203, '龙潭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203006, 220203, '新吉林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203007, 220203, '山前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203008, 220203, '新安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203009, 220203, '遵义街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203010, 220203, '榆树街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203012, 220203, '东城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203013, 220203, '承德街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203014, 220203, '靠山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203100, 220203, '乌拉街镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203101, 220203, '缸窑镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203102, 220203, '江密峰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203103, 220203, '大口钦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203104, 220203, '金珠镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203200, 220203, '江北乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203400, 220203, '龙潭经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220203401, 220203, '金珠工业区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204001, 220204, '德胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204002, 220204, '南京街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204003, 220204, '大东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204004, 220204, '青岛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204005, 220204, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204006, 220204, '北极街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204007, 220204, '致和街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204008, 220204, '长春路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204009, 220204, '临江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204010, 220204, '北山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204011, 220204, '黄旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204100, 220204, '大绥河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204101, 220204, '搜登站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204102, 220204, '越北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204200, 220204, '欢喜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220204400, 220204, '吉林船营经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211001, 220211, '泰山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211002, 220211, '江南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211003, 220211, '石井街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211004, 220211, '沿丰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211005, 220211, '丰满街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211008, 220211, '建华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211071, 220211, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211100, 220211, '旺起镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211200, 220211, '江南乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211201, 220211, '前二道乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220211270, 220211, '小白山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221100, 220221, '口前镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221101, 220221, '双河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221102, 220221, '西阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221103, 220221, '北大湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221104, 220221, '一拉溪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221171, 220221, '万昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221172, 220221, '永吉经济开发区特殊乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221200, 220221, '金家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220221201, 220221, '黄榆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220271001, 220271, '九站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220271013, 220271, '双吉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220272001, 220272, '高新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220272002, 220272, '新北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220273100, 220273, '岔路河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281001, 220281, '民主街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281002, 220281, '长安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281003, 220281, '河南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281004, 220281, '奶子山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281005, 220281, '拉法街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281006, 220281, '河北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281007, 220281, '新农街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281100, 220281, '新站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281101, 220281, '天岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281102, 220281, '白石山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281103, 220281, '漂河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281104, 220281, '黄松甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281105, 220281, '天北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281106, 220281, '松江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281107, 220281, '庆岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281200, 220281, '乌林朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220281201, 220281, '前进乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282001, 220282, '明桦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282002, 220282, '永吉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282003, 220282, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282004, 220282, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282005, 220282, '启新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282100, 220282, '夹皮沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282101, 220282, '二道甸子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282102, 220282, '红石砬子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282103, 220282, '八道河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282104, 220282, '常山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282105, 220282, '金沙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282200, 220282, '桦郊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282201, 220282, '横道河子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220282204, 220282, '公吉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283001, 220283, '北城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283002, 220283, '南城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283003, 220283, '环城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283004, 220283, '吉舒街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283005, 220283, '滨河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283100, 220283, '法特镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283101, 220283, '白旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283102, 220283, '溪河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283103, 220283, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283104, 220283, '小城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283105, 220283, '上营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283106, 220283, '水曲柳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283107, 220283, '平安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283108, 220283, '金马镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283109, 220283, '开原镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283200, 220283, '莲花乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283201, 220283, '亮甲山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283202, 220283, '新安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283203, 220283, '七里乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220283204, 220283, '天德乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284001, 220284, '福安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284002, 220284, '东宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284003, 220284, '河南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284070, 220284, '磐石经济开发区特殊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284100, 220284, '烟筒山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284101, 220284, '红旗岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284102, 220284, '明城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284103, 220284, '石嘴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284104, 220284, '驿马镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284105, 220284, '牛心镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284106, 220284, '呼兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284107, 220284, '吉昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284108, 220284, '松山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284109, 220284, '黑石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284110, 220284, '朝阳山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284111, 220284, '富太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284112, 220284, '取柴河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220284200, 220284, '宝山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302001, 220302, '仁兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302002, 220302, '英雄街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302003, 220302, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302004, 220302, '北沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302005, 220302, '地直街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302200, 220302, '平西乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220302400, 220302, '红嘴高新技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303001, 220303, '四平市铁东区平东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303002, 220303, '四平市铁东区北市场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303003, 220303, '四平市铁东区七马路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303004, 220303, '四平市铁东区四马路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303005, 220303, '四平市铁东区解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303006, 220303, '四平市铁东区北门街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303007, 220303, '四平市铁东区黄土坑街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303008, 220303, '四平市铁东区平南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303100, 220303, '四平市铁东区山门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303101, 220303, '四平市铁东区石岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303102, 220303, '四平市铁东区叶赫满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220303200, 220303, '四平市铁东区城东乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322001, 220322, '富强街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322002, 220322, '康平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322003, 220322, '霍家店街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322100, 220322, '梨树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322101, 220322, '郭家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322102, 220322, '榆树台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322103, 220322, '孤家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322104, 220322, '小城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322105, 220322, '喇嘛甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322106, 220322, '蔡家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322107, 220322, '刘家馆子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322108, 220322, '十家堡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322109, 220322, '孟家岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322110, 220322, '万发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322111, 220322, '东河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322112, 220322, '沈洋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322113, 220322, '林海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322114, 220322, '小宽镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322200, 220322, '白山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322201, 220322, '泉眼岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322202, 220322, '胜利乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322203, 220322, '四棵树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322204, 220322, '双河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220322205, 220322, '金山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323001, 220323, '永盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323002, 220323, '永宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323100, 220323, '伊通镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323101, 220323, '二道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323102, 220323, '伊丹镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323103, 220323, '马鞍山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323104, 220323, '景台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323105, 220323, '靠山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323106, 220323, '大孤山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323107, 220323, '小孤山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323108, 220323, '营城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323109, 220323, '西苇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323110, 220323, '河源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323111, 220323, '黄岭子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323200, 220323, '新兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323201, 220323, '莫里青乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220323202, 220323, '三道乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382001, 220382, '郑家屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382002, 220382, '辽西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382003, 220382, '辽南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382004, 220382, '辽北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382005, 220382, '辽东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382006, 220382, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382100, 220382, '茂林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382101, 220382, '双山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382102, 220382, '卧虎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382103, 220382, '服先镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382104, 220382, '王奔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382105, 220382, '玻璃山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382106, 220382, '兴隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382107, 220382, '东明镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382200, 220382, '那木乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382201, 220382, '柳条乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382202, 220382, '新立乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382203, 220382, '永加乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220382402, 220382, '双辽经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402001, 220402, '东吉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402002, 220402, '南康街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402003, 220402, '北寿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402004, 220402, '西宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402005, 220402, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402006, 220402, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402007, 220402, '新兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402008, 220402, '福镇街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402070, 220402, '辽源经济开发区特殊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402100, 220402, '寿山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220402200, 220402, '工农乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403001, 220403, '太安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403002, 220403, '仙城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403003, 220403, '东山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403004, 220403, '先锋街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403005, 220403, '富国街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403006, 220403, '安家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220403100, 220403, '灯塔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421001, 220421, '吉鹿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421002, 220421, '祥鹿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421003, 220421, '福鹿街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421100, 220421, '东丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421101, 220421, '大阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421102, 220421, '横道河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421103, 220421, '那丹伯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421104, 220421, '猴石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421105, 220421, '杨木林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421106, 220421, '小四平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421107, 220421, '黄河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421108, 220421, '拉拉河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421109, 220421, '沙河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421110, 220421, '南屯基镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421111, 220421, '大兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421200, 220421, '三合满族朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220421201, 220421, '二龙山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422100, 220422, '白泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422101, 220422, '渭津镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422102, 220422, '安石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422103, 220422, '辽河源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422104, 220422, '泉太镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422105, 220422, '建安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422106, 220422, '安恕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422107, 220422, '平岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422108, 220422, '云顶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422200, 220422, '凌云乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422201, 220422, '甲山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422202, 220422, '足民乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220422203, 220422, '金州乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502001, 220502, '东昌街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502002, 220502, '民主街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502003, 220502, '老站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502004, 220502, '团结街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502005, 220502, '新站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502006, 220502, '光明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502007, 220502, '龙泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502008, 220502, '陆港街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502009, 220502, '滨江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502100, 220502, '金厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502120, 220502, '通化经济开发区特殊乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502200, 220502, '环通乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220502201, 220502, '江东乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220503001, 220503, '桃园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220503002, 220503, '东通化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220503100, 220503, '鸭园镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220503101, 220503, '铁厂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220503102, 220503, '五道江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220503200, 220503, '二道江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521001, 220521, '茂山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521002, 220521, '东安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521100, 220521, '快大茂镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521101, 220521, '二密镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521102, 220521, '果松镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521103, 220521, '石湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521104, 220521, '大安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521105, 220521, '光华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521106, 220521, '兴林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521107, 220521, '英额布镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521108, 220521, '三棵榆树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521109, 220521, '西江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521120, 220521, '通化聚鑫经济开发区特殊乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521200, 220521, '富江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521201, 220521, '四棚乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521202, 220521, '东来乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521203, 220521, '大泉源满族朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521204, 220521, '金斗朝鲜族满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220521401, 220521, '东宝新村', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523001, 220523, '东凤街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523002, 220523, '朝辉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523003, 220523, '西凤街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523100, 220523, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523101, 220523, '辉南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523102, 220523, '样子哨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523103, 220523, '杉松岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523104, 220523, '石道河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523105, 220523, '辉发城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523106, 220523, '抚民镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523107, 220523, '金川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523108, 220523, '团林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523109, 220523, '庆阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220523200, 220523, '楼街朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524001, 220524, '采胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524002, 220524, '中岗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524003, 220524, '导航街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524100, 220524, '柳河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524101, 220524, '三源浦朝鲜族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524102, 220524, '五道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524103, 220524, '驼腰岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524104, 220524, '孤山子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524105, 220524, '圣水河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524106, 220524, '罗通山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524107, 220524, '安口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524108, 220524, '向阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524109, 220524, '红石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524110, 220524, '凉水河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524111, 220524, '亨通镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524200, 220524, '柳南乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524201, 220524, '时家店乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220524202, 220524, '姜家店朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581001, 220581, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581002, 220581, '光明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581070, 220581, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581071, 220581, '解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581072, 220581, '福民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581100, 220581, '山城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581101, 220581, '红梅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581102, 220581, '海龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581103, 220581, '新合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581104, 220581, '曙光镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581105, 220581, '中和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581106, 220581, '黑山头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581107, 220581, '水道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581108, 220581, '进化镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581109, 220581, '一座营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581110, 220581, '康大营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581111, 220581, '牛心顶镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581112, 220581, '杏岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581113, 220581, '湾龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581114, 220581, '兴华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581115, 220581, '双兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581201, 220581, '李炉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581205, 220581, '小杨满族朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220581206, 220581, '吉乐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582001, 220582, '团结街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582002, 220582, '黎明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582003, 220582, '通胜街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582004, 220582, '城东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582100, 220582, '青石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582101, 220582, '榆林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582102, 220582, '花甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582103, 220582, '头道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582104, 220582, '清河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582105, 220582, '台上镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582106, 220582, '财源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582107, 220582, '大路镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582108, 220582, '太王镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582200, 220582, '麻线乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220582201, 220582, '凉水朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602001, 220602, '新建街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602002, 220602, '通沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602003, 220602, '东兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602004, 220602, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602005, 220602, '城南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602006, 220602, '江北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602007, 220602, '河口街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602008, 220602, '板石街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602100, 220602, '七道江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602101, 220602, '六道江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602102, 220602, '红土崖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220602103, 220602, '三道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605001, 220605, '孙家堡子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605002, 220605, '江源街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605003, 220605, '正岔街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605004, 220605, '城墙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605102, 220605, '湾沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605103, 220605, '松树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605104, 220605, '砟子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605105, 220605, '石人镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605106, 220605, '大阳岔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220605107, 220605, '大石人镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621100, 220621, '抚松镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621101, 220621, '松江河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621102, 220621, '泉阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621103, 220621, '露水河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621104, 220621, '仙人桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621105, 220621, '万良镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621106, 220621, '新屯子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621107, 220621, '东岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621108, 220621, '漫江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621109, 220621, '北岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621110, 220621, '兴参镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621120, 220621, '长白山保护开发区池西区特殊乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621121, 220621, '长白山保护开发区池南区特殊乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621200, 220621, '兴隆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621201, 220621, '抽水乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220621202, 220621, '沿江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622100, 220622, '靖宇镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622101, 220622, '三道湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622102, 220622, '龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622103, 220622, '那尔轰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622104, 220622, '花园口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622105, 220622, '景山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622106, 220622, '赤松镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220622201, 220622, '濛江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623100, 220623, '长白镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623101, 220623, '八道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623102, 220623, '十四道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623103, 220623, '马鹿沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623104, 220623, '宝泉山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623105, 220623, '新房子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623106, 220623, '十二道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220623200, 220623, '金华乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681001, 220681, '建国街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681002, 220681, '新市街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681003, 220681, '兴隆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681004, 220681, '大湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681005, 220681, '森工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681006, 220681, '大栗子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681100, 220681, '桦树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681101, 220681, '六道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681102, 220681, '苇沙河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681103, 220681, '花山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681104, 220681, '闹枝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681105, 220681, '四道沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220681200, 220681, '蚂蚁河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702001, 220702, '团结街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702002, 220702, '文化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702003, 220702, '民主街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702004, 220702, '临江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702005, 220702, '新区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702006, 220702, '前进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702007, 220702, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702008, 220702, '工农街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702009, 220702, '沿江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702010, 220702, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702011, 220702, '繁荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702012, 220702, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702013, 220702, '石化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702014, 220702, '伯都讷街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702015, 220702, '长宁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702016, 220702, '滨江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702017, 220702, '镜湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702100, 220702, '大洼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702101, 220702, '善友镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702102, 220702, '毛都站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702103, 220702, '哈达山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702200, 220702, '新城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702202, 220702, '伯都乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702400, 220702, '华侨农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702401, 220702, '大洼商业渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702402, 220702, '国营善友林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702403, 220702, '国营八家子苗圃', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702404, 220702, '良种繁育场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702405, 220702, '哈达山林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220702406, 220702, '雅达虹工业集中区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721100, 220721, '前郭尔罗斯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721101, 220721, '长山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721102, 220721, '海渤日戈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721103, 220721, '乌兰图嘎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721104, 220721, '查干花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721105, 220721, '王府站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721106, 220721, '八郎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721107, 220721, '哈拉毛都镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721108, 220721, '查干湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721200, 220721, '宝甸乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721201, 220721, '平凤乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721203, 220721, '达里巴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721204, 220721, '吉拉吐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721205, 220721, '白依拉嘎乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721206, 220721, '洪泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721207, 220721, '额如乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721208, 220721, '套浩太乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721209, 220721, '长龙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721210, 220721, '乌兰塔拉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721211, 220721, '东三家子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721212, 220721, '浩特芒哈乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721213, 220721, '乌兰敖都乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721400, 220721, '红旗农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721401, 220721, '红光农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721402, 220721, '红星牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721403, 220721, '查干花种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721404, 220721, '莲花泡农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721405, 220721, '深井子牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721406, 220721, '前郭尔罗斯蒙古族自治县国有林总场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721407, 220721, '查干湖旅游经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721408, 220721, '八郎农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721409, 220721, '查干湖渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721411, 220721, '长山余热鱼苗繁殖场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721412, 220721, '库里渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721413, 220721, '哈拉毛都良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721415, 220721, '新庙泡渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220721417, 220721, '吉林前郭经济技术开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722001, 220722, '长盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722002, 220722, '长治街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722003, 220722, '长久街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722100, 220722, '长岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722101, 220722, '太平川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722102, 220722, '巨宝山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722103, 220722, '太平山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722104, 220722, '前七号镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722105, 220722, '新安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722106, 220722, '三青山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722107, 220722, '大兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722108, 220722, '北正镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722109, 220722, '流水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722110, 220722, '永久镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722111, 220722, '利发盛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722200, 220722, '集体乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722201, 220722, '光明乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722202, 220722, '三县堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722203, 220722, '海青乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722204, 220722, '前进乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722205, 220722, '东岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722206, 220722, '腰坨子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722207, 220722, '八十八乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722208, 220722, '三团乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722209, 220722, '三十号乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722400, 220722, '长岭种马场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722401, 220722, '长岭环城工业集中区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722405, 220722, '太平川机械林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722406, 220722, '三团机械林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722407, 220722, '东岭机械林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722408, 220722, '十四号种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722409, 220722, '良种繁育场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220722410, 220722, '前七号机械林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723001, 220723, '荣业街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723002, 220723, '驰誉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723003, 220723, '如松街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723100, 220723, '乾安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723101, 220723, '大布苏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723102, 220723, '水字镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723103, 220723, '让字镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723104, 220723, '所字镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723105, 220723, '安字镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723200, 220723, '余字乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723201, 220723, '道字乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723202, 220723, '严字乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723203, 220723, '赞字乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723400, 220723, '国营林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723401, 220723, '腾字种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723402, 220723, '大遐畜牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723403, 220723, '乾安鹿场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723404, 220723, '来字良种繁育基地', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220723405, 220723, '地字种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220771200, 220771, '兴原乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220771599, 220771, '松原经济技术开发区特殊乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781001, 220781, '和兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781002, 220781, '育才街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781003, 220781, '联盟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781004, 220781, '士英街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781005, 220781, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781100, 220781, '三岔河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781101, 220781, '长春岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781102, 220781, '五家站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781103, 220781, '陶赖昭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781104, 220781, '蔡家沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781105, 220781, '弓棚子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781106, 220781, '三井子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781107, 220781, '增盛镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781108, 220781, '新万发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781109, 220781, '大林子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781110, 220781, '新源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781111, 220781, '得胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781200, 220781, '三骏满族蒙古族锡伯族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781201, 220781, '永平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781203, 220781, '新站乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781204, 220781, '更新乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781206, 220781, '肖家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781401, 220781, '拉林灌区管理局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220781402, 220781, '下岱吉灌区管理局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802001, 220802, '海明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802002, 220802, '长庆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802003, 220802, '瑞光街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802004, 220802, '明仁街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802005, 220802, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802006, 220802, '(工业园区)城南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802007, 220802, '新立街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802009, 220802, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802100, 220802, '平安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802101, 220802, '青山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802102, 220802, '林海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802103, 220802, '洮河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802104, 220802, '平台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802105, 220802, '到保镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802170, 220802, '(查干浩特旅游经济开发区)岭下镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802200, 220802, '东风乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802201, 220802, '三合乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802202, 220802, '东胜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802203, 220802, '金祥乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802204, 220802, '德顺蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802402, 220802, '镇南种羊场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802403, 220802, '白城牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802404, 220802, '洮儿河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802405, 220802, '保民农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220802407, 220802, '白城市生态新区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821100, 220821, '镇赉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821101, 220821, '坦途镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821102, 220821, '东屏镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821103, 220821, '大屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821104, 220821, '沿江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821105, 220821, '五棵树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821106, 220821, '黑鱼泡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821200, 220821, '哈吐气蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821201, 220821, '莫莫格蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821202, 220821, '建平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821203, 220821, '嘎什根乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821400, 220821, '四方坨子农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821402, 220821, '良种繁育场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821403, 220821, '九龙山马场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220821406, 220821, '国营渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822001, 220822, '树满街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822002, 220822, '八区街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822003, 220822, '迎新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822100, 220822, '开通镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822101, 220822, '瞻榆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822102, 220822, '双岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822103, 220822, '兴隆山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822104, 220822, '边昭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822105, 220822, '鸿兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822106, 220822, '新华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822107, 220822, '乌兰花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822200, 220822, '新发乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822201, 220822, '新兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822202, 220822, '向海蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822203, 220822, '包拉温都蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822204, 220822, '团结乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822205, 220822, '十花道乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822206, 220822, '八面乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822207, 220822, '苏公坨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822400, 220822, '通榆经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822401, 220822, '三家子种牛场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220822405, 220822, '新华牛场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220871001, 220871, '幸福街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220871002, 220871, '保平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220871003, 220871, '西郊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881001, 220881, '团结街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881002, 220881, '富文街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881003, 220881, '光明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881004, 220881, '兴隆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881005, 220881, '永康街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881006, 220881, '通达街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881007, 220881, '洮府街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881008, 220881, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881100, 220881, '瓦房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881101, 220881, '万宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881102, 220881, '黑水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881103, 220881, '那金镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881104, 220881, '安定镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881105, 220881, '福顺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881200, 220881, '胡力吐蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881201, 220881, '万宝乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881202, 220881, '聚宝乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881203, 220881, '东升乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881204, 220881, '野马乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881205, 220881, '永茂乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881206, 220881, '蛟流河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881207, 220881, '大通乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881209, 220881, '二龙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881210, 220881, '呼和车力蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220881402, 220881, '市原种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882001, 220882, '慧阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882002, 220882, '临江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882003, 220882, '长虹街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882004, 220882, '锦华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882005, 220882, '安北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882100, 220882, '月亮泡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882101, 220882, '安广镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882102, 220882, '丰收镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882103, 220882, '新平安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882104, 220882, '两家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882105, 220882, '舍力镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882106, 220882, '大岗子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882107, 220882, '叉干镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882108, 220882, '龙沼镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882109, 220882, '太山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882200, 220882, '四棵树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882201, 220882, '联合乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882202, 220882, '大赉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882203, 220882, '红岗子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882204, 220882, '海坨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882205, 220882, '新艾里蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882206, 220882, '烧锅镇乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882207, 220882, '乐胜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882400, 220882, '大安经济开发区(省级)', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882401, 220882, '新荒渔场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882402, 220882, '东方红农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882404, 220882, '五间房水库', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882406, 220882, '风水山牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882407, 220882, '东风马场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882408, 220882, '良种繁育场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882409, 220882, '大安马场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882410, 220882, '安广猪场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (220882411, 220882, '红旗饲养场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401001, 222401, '进学街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401002, 222401, '北山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401003, 222401, '新兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401004, 222401, '公园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401005, 222401, '河南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401006, 222401, '建工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401100, 222401, '小营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401101, 222401, '依兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401102, 222401, '三道湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401105, 222401, '朝阳川镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401400, 222401, '延吉市林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401401, 222401, '东山农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401402, 222401, '延边原种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222401404, 222401, '延边新兴工业集中区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402001, 222402, '向上街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402002, 222402, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402003, 222402, '月宫街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402100, 222402, '月晴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402101, 222402, '石岘镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402102, 222402, '长安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222402103, 222402, '凉水镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403001, 222403, '渤海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403002, 222403, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403003, 222403, '民主街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403004, 222403, '丹江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403100, 222403, '大石头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403101, 222403, '黄泥河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403102, 222403, '官地镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403103, 222403, '沙河沿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403104, 222403, '秋梨沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403105, 222403, '额穆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403106, 222403, '贤儒镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403107, 222403, '大蒲柴河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403108, 222403, '雁鸣湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403109, 222403, '江源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403110, 222403, '江南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403200, 222403, '大桥乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403201, 222403, '黑石乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403202, 222403, '青沟子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403203, 222403, '翰章乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403204, 222403, '红石乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403400, 222403, '长白山森工集团敦化林业有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403401, 222403, '长白山森工集团黄泥河林业有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403402, 222403, '长白山森工集团大石头林业有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403403, 222403, '敦化市林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222403404, 222403, '敖东鹿场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404001, 222404, '靖和街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404002, 222404, '新安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404003, 222404, '河南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404060, 222404, '近海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404100, 222404, '春化镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404101, 222404, '敬信镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404102, 222404, '板石镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404103, 222404, '英安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404200, 222404, '马川子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404201, 222404, '杨泡满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404202, 222404, '三家子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404203, 222404, '密江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404204, 222404, '哈达门乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222404400, 222404, '珲春林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405001, 222405, '安民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405002, 222405, '龙门街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405100, 222405, '开山屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405102, 222405, '老头沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405103, 222405, '三合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405104, 222405, '东盛涌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405105, 222405, '智新镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405200, 222405, '德新乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405201, 222405, '白金乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405400, 222405, '龙井市林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222405401, 222405, '龙井大苏果树农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406001, 222406, '民慧街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406002, 222406, '光明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406003, 222406, '文化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406100, 222406, '八家子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406101, 222406, '福洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406102, 222406, '头道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406103, 222406, '西城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406104, 222406, '南坪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406105, 222406, '东城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406106, 222406, '崇善镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406107, 222406, '龙城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406400, 222406, '和龙林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406401, 222406, '八家子林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222406402, 222406, '和龙市林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424011, 222424, '大川街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424012, 222424, '新民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424013, 222424, '长荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424100, 222424, '汪清镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424101, 222424, '大兴沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424102, 222424, '天桥岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424103, 222424, '罗子沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424104, 222424, '百草沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424105, 222424, '春阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424106, 222424, '复兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424107, 222424, '东光镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424200, 222424, '鸡冠乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424400, 222424, '汪清林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424401, 222424, '天桥岭林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222424402, 222424, '大兴沟林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426001, 222426, '长兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426002, 222426, '瓮声街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426003, 222426, '九龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426100, 222426, '明月镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426101, 222426, '松江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426102, 222426, '二道白河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426103, 222426, '两江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426104, 222426, '石门镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426105, 222426, '万宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426106, 222426, '亮兵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426120, 222426, '长白山保护开发区池北区特殊乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426200, 222426, '新合乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426201, 222426, '永庆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426400, 222426, '白河林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426401, 222426, '安图林业有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (222426402, 222426, '安图县林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102001, 230102, '兆麟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102002, 230102, '新阳路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102003, 230102, '抚顺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102004, 230102, '共乐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102005, 230102, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102006, 230102, '城乡路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102007, 230102, '工农街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102008, 230102, '尚志街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102009, 230102, '斯大林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102010, 230102, '通江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102011, 230102, '经纬街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102012, 230102, '工程街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102013, 230102, '安静街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102014, 230102, '安和街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102015, 230102, '正阳河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102016, 230102, '建国街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102017, 230102, '康安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102018, 230102, '爱建街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102019, 230102, '群力街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102101, 230102, '太平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102102, 230102, '新发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102103, 230102, '新农镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230102104, 230102, '榆树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103001, 230103, '花园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103002, 230103, '奋斗路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103003, 230103, '革新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103004, 230103, '文化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103005, 230103, '大成街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103006, 230103, '芦家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103007, 230103, '荣市街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103009, 230103, '燎原街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103010, 230103, '松花江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103011, 230103, '曲线街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103012, 230103, '通达街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103013, 230103, '七政街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103015, 230103, '和兴路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103016, 230103, '哈西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103017, 230103, '保健路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103018, 230103, '先锋路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103019, 230103, '新春街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103020, 230103, '跃进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103101, 230103, '王岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103201, 230103, '红旗满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103500, 230103, '红旗农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230103579, 230103, '南岗区农垦', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104001, 230104, '靖宇街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104002, 230104, '太古街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104003, 230104, '东莱街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104004, 230104, '滨江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104005, 230104, '仁里街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104006, 230104, '南市街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104007, 230104, '崇俭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104008, 230104, '振江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104009, 230104, '东原街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104010, 230104, '大兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104011, 230104, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104012, 230104, '南马街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104021, 230104, '民强街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104022, 230104, '大有坊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104023, 230104, '南直路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104024, 230104, '化工街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104025, 230104, '火车头街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104026, 230104, '新一街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104027, 230104, '三棵树大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104028, 230104, '水泥路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104029, 230104, '太平大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104030, 230104, '黎华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104031, 230104, '新乐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104102, 230104, '永源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104109, 230104, '巨源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104111, 230104, '团结镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104112, 230104, '民主镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104500, 230104, '青年农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230104579, 230104, '道外农垦', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108001, 230108, '兴建街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108002, 230108, '保国街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108003, 230108, '联盟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108004, 230108, '友协街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108005, 230108, '新疆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108006, 230108, '新伟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108007, 230108, '平新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108008, 230108, '建安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108009, 230108, '平盛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108101, 230108, '平房镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230108579, 230108, '平房农垦', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109002, 230109, '太阳岛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109003, 230109, '松浦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109004, 230109, '万宝街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109005, 230109, '松北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109006, 230109, '松安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109007, 230109, '松祥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109008, 230109, '船口街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109101, 230109, '对青山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230109102, 230109, '乐业镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110001, 230110, '香坊大街街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110002, 230110, '安埠街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110003, 230110, '通天街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110004, 230110, '新香坊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110005, 230110, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110006, 230110, '新成街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110007, 230110, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110008, 230110, '六顺街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110009, 230110, '建筑街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110010, 230110, '哈平路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110011, 230110, '安乐街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110012, 230110, '健康路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110013, 230110, '大庆路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110014, 230110, '进乡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110015, 230110, '通乡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110016, 230110, '和平路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110017, 230110, '民生路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110018, 230110, '文政街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110019, 230110, '王兆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110020, 230110, '黎明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110101, 230110, '成高子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110102, 230110, '幸福镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110103, 230110, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110104, 230110, '向阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110400, 230110, '哈尔滨综合保税区地区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110500, 230110, '香坊实验农场地区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230110579, 230110, '香坊区农垦地区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111001, 230111, '呼兰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111002, 230111, '兰河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111003, 230111, '腰堡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111004, 230111, '利民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111005, 230111, '康金街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111006, 230111, '双井街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111007, 230111, '建设路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111008, 230111, '学院路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111009, 230111, '长岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111010, 230111, '沈家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111011, 230111, '南京路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111012, 230111, '裕民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111013, 230111, '裕田街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111014, 230111, '裕强街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111015, 230111, '萧乡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111016, 230111, '公园路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111105, 230111, '二八镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111106, 230111, '石人镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111107, 230111, '白奎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111109, 230111, '方台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111110, 230111, '莲花镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111111, 230111, '大用镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111114, 230111, '利业镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111201, 230111, '杨林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111203, 230111, '许堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111205, 230111, '孟家乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230111579, 230111, '呼兰农垦', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112001, 230112, '金城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112002, 230112, '金都街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112003, 230112, '通城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112004, 230112, '河东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112005, 230112, '阿什河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112006, 230112, '玉泉街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112007, 230112, '新利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112008, 230112, '双丰街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112009, 230112, '舍利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112010, 230112, '小岭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112011, 230112, '亚沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112012, 230112, '交界街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112013, 230112, '料甸街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112014, 230112, '蜚克图街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112015, 230112, '杨树街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112107, 230112, '平山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112108, 230112, '松峰山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112109, 230112, '红星镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112112, 230112, '金龙山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230112503, 230112, '阿城原种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113002, 230113, '五家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113003, 230113, '新兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113004, 230113, '兰棱街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113005, 230113, '周家街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113006, 230113, '公正街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113007, 230113, '承旭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113008, 230113, '承恩街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113009, 230113, '永治街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113010, 230113, '永和街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113011, 230113, '幸福街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113104, 230113, '韩甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113105, 230113, '单城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113106, 230113, '东官镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113107, 230113, '农丰满族锡伯族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113108, 230113, '杏山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113109, 230113, '西官镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113110, 230113, '联兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113111, 230113, '永胜镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113112, 230113, '胜丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113201, 230113, '金城乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113203, 230113, '青岭满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113209, 230113, '临江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113210, 230113, '水泉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113211, 230113, '乐群满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113214, 230113, '万隆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113216, 230113, '希勤满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230113217, 230113, '同心满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123100, 230123, '依兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123101, 230123, '达连河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123102, 230123, '江湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123103, 230123, '三道岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123104, 230123, '道台桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123105, 230123, '宏克利镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123200, 230123, '团山子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123201, 230123, '愚公乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123202, 230123, '迎兰朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123400, 230123, '依兰县林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123500, 230123, '依兰农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230123501, 230123, '松花江农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124100, 230124, '方正镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124101, 230124, '会发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124102, 230124, '大罗密镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124103, 230124, '得莫利镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124200, 230124, '天门乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124201, 230124, '松南乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124202, 230124, '德善乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124204, 230124, '宝兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124400, 230124, '方正林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230124500, 230124, '沙河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125100, 230125, '宾州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125101, 230125, '居仁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125102, 230125, '宾西镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125103, 230125, '糖坊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125104, 230125, '宾安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125105, 230125, '新甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125106, 230125, '胜利镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125107, 230125, '宁远镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125109, 230125, '摆渡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125110, 230125, '平坊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125111, 230125, '满井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125112, 230125, '常安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125201, 230125, '永和乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125203, 230125, '鸟河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125204, 230125, '民和乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125205, 230125, '经建乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125210, 230125, '三宝乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125500, 230125, '九龙山柞蚕育种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230125579, 230125, '农垦农业职业学院', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126100, 230126, '巴彦镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126101, 230126, '兴隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126102, 230126, '西集镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126103, 230126, '洼兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126104, 230126, '龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126105, 230126, '巴彦港镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126106, 230126, '龙庙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126107, 230126, '万发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126108, 230126, '天增镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126110, 230126, '黑山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126200, 230126, '松花江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126202, 230126, '富江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126204, 230126, '华山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126205, 230126, '丰乐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126209, 230126, '德祥乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126210, 230126, '红光乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126212, 230126, '山后乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126214, 230126, '镇东乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126400, 230126, '兴隆林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230126401, 230126, '工业园区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127100, 230127, '木兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127101, 230127, '东兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127102, 230127, '大贵镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127103, 230127, '利东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127104, 230127, '柳河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127105, 230127, '新民镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127200, 230127, '建国乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127203, 230127, '吉兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230127400, 230127, '兴隆林业局办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128100, 230128, '通河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128101, 230128, '乌鸦泡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128102, 230128, '清河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128103, 230128, '浓河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128104, 230128, '凤山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128105, 230128, '祥顺镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128106, 230128, '富林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128107, 230128, '三站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128400, 230128, '清河林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128401, 230128, '兴隆林业局办事处', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230128500, 230128, '岔林河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129100, 230129, '延寿镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129101, 230129, '六团镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129102, 230129, '中和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129103, 230129, '加信镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129104, 230129, '延河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129105, 230129, '玉河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129204, 230129, '安山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129205, 230129, '寿山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129209, 230129, '青川乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129400, 230129, '太平川', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230129500, 230129, '庆阳农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183100, 230183, '尚志镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183101, 230183, '一面坡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183102, 230183, '苇河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183103, 230183, '亚布力镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183104, 230183, '帽儿山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183105, 230183, '亮河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183106, 230183, '庆阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183107, 230183, '石头河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183108, 230183, '元宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183109, 230183, '黑龙宫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183202, 230183, '长寿乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183204, 230183, '乌吉密乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183206, 230183, '鱼池乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183207, 230183, '珍珠山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183208, 230183, '老街基乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183209, 230183, '马延乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183211, 230183, '河东乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183400, 230183, '苇河林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183401, 230183, '亚布力林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230183402, 230183, '哈尔滨市政府亚布力滑雪旅游度假区管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184100, 230184, '五常镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184101, 230184, '拉林满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184102, 230184, '山河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184103, 230184, '小山子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184104, 230184, '安家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184105, 230184, '牛家满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184106, 230184, '杜家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184107, 230184, '背荫河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184108, 230184, '冲河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184109, 230184, '沙河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184110, 230184, '向阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184111, 230184, '龙凤山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184200, 230184, '兴盛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184201, 230184, '志广乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184202, 230184, '卫国乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184203, 230184, '常堡乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184206, 230184, '民意乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184209, 230184, '红旗满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184210, 230184, '八家子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184211, 230184, '民乐朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184212, 230184, '营城子满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184214, 230184, '长山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184215, 230184, '兴隆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184216, 230184, '二河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230184400, 230184, '山河屯林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202001, 230202, '五龙街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202002, 230202, '湖滨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202003, 230202, '江安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202004, 230202, '正阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202005, 230202, '彩虹街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202006, 230202, '南航街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202007, 230202, '大民街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230202579, 230202, '齐齐哈尔局直', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230203002, 230203, '中华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230203004, 230203, '西大桥街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230203005, 230203, '卜奎街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230203006, 230203, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230203007, 230203, '文化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230203198, 230203, '区直辖村级区划', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204001, 230204, '站前街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204002, 230204, '南浦街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204003, 230204, '通东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204004, 230204, '光荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204005, 230204, '龙华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204006, 230204, '北局宅街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204008, 230204, '东湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204100, 230204, '扎龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230204500, 230204, '齐齐哈尔种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230205001, 230205, '新兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230205002, 230205, '新建街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230205005, 230205, '林机街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230205006, 230205, '道北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230205100, 230205, '水师营满族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230205101, 230205, '榆树屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206001, 230206, '红岸街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206003, 230206, '沿江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206004, 230206, '电力街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206005, 230206, '幸福街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206006, 230206, '红宝石街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206007, 230206, '北兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206008, 230206, '铁北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206009, 230206, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206200, 230206, '长青乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230206202, 230206, '杜尔门沁达斡尔族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230207001, 230207, '东安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230207002, 230207, '富强街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230207003, 230207, '跃进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230207004, 230207, '繁荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208001, 230208, '梅里斯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208101, 230208, '雅尔塞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208102, 230208, '卧牛吐达斡尔族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208103, 230208, '达呼店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208104, 230208, '共和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208105, 230208, '梅里斯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230208200, 230208, '莽格吐达斡尔族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221100, 230221, '龙江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221101, 230221, '景星镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221102, 230221, '龙兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221103, 230221, '山泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221104, 230221, '七棵树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221105, 230221, '杏山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221106, 230221, '白山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221107, 230221, '头站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221201, 230221, '黑岗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221202, 230221, '广厚乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221203, 230221, '华民乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221204, 230221, '哈拉海乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221215, 230221, '鲁河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230221217, 230221, '济沁河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223100, 230223, '依安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223101, 230223, '依龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223102, 230223, '双阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223103, 230223, '三兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223104, 230223, '中心镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223105, 230223, '新兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223200, 230223, '富饶乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223201, 230223, '解放乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223202, 230223, '阳春乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223203, 230223, '新发乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223204, 230223, '太东乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223205, 230223, '上游乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223206, 230223, '红星乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223207, 230223, '先锋乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230223208, 230223, '新屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224100, 230224, '泰来镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224101, 230224, '平洋镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224102, 230224, '汤池镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224103, 230224, '江桥蒙古族镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224104, 230224, '塔子城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224105, 230224, '大兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224106, 230224, '和平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224107, 230224, '克利镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224200, 230224, '胜利蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224209, 230224, '宁姜蒙古族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224400, 230224, '葡萄场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224401, 230224, '果树场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224402, 230224, '泰来县一苗圃', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224403, 230224, '泰来县二苗圃', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224404, 230224, '东方红机械林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224480, 230224, '六三监狱', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224580, 230224, '第一良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224581, 230224, '第二良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224582, 230224, '宏胜种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230224583, 230224, '二龙涛农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225100, 230225, '甘南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225101, 230225, '兴十四镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225102, 230225, '平阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225103, 230225, '东阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225104, 230225, '巨宝镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225201, 230225, '长山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225202, 230225, '中兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225203, 230225, '兴隆乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225204, 230225, '宝山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225206, 230225, '查哈阳乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225500, 230225, '查哈阳农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230225580, 230225, '北京市双河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227100, 230227, '富裕镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227101, 230227, '富路镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227102, 230227, '富海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227103, 230227, '二道湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227104, 230227, '龙安桥镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227105, 230227, '塔哈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227200, 230227, '繁荣乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227201, 230227, '绍文乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227202, 230227, '忠厚乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230227203, 230227, '友谊达斡尔族满族柯尔克孜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229100, 230229, '克山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229101, 230229, '北兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229102, 230229, '西城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229103, 230229, '古城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229104, 230229, '北联镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229105, 230229, '西河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229106, 230229, '双河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229200, 230229, '河南乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229203, 230229, '河北乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229204, 230229, '古北乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229205, 230229, '西联乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229206, 230229, '发展乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229207, 230229, '西建乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229208, 230229, '向华乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229210, 230229, '曙光乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229400, 230229, '克山县河北林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229401, 230229, '克山县涌泉林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229402, 230229, '克山县北联林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229580, 230229, '克山县第一良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229581, 230229, '克山县第二良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229583, 230229, '克山县种猪场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230229584, 230229, '克山县种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230100, 230230, '克东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230101, 230230, '宝泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230102, 230230, '乾丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230103, 230230, '玉岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230104, 230230, '蒲峪路镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230202, 230230, '润津乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230204, 230230, '昌盛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230400, 230230, '第一苗圃', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230401, 230230, '第二苗圃', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230402, 230230, '爱华林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230403, 230230, '发展林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230404, 230230, '东兴林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230580, 230230, '红旗奶山羊场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230581, 230230, '第一良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230582, 230230, '第二良种繁殖场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230583, 230230, '果树繁殖场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230584, 230230, '种猪场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230230585, 230230, '黑龙江省社会救助安置中心', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231100, 230231, '拜泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231101, 230231, '三道镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231102, 230231, '兴农镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231103, 230231, '长春镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231104, 230231, '龙泉镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231105, 230231, '国富镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231106, 230231, '富强镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231200, 230231, '新生乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231201, 230231, '兴国乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231203, 230231, '上升乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231204, 230231, '兴华乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231206, 230231, '大众乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231209, 230231, '丰产乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231210, 230231, '永勤乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231212, 230231, '爱农乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230231214, 230231, '时中乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281001, 230281, '雨亭街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281002, 230281, '通江街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281101, 230281, '拉哈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281102, 230281, '二克浅镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281103, 230281, '学田镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281104, 230281, '龙河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281105, 230281, '讷南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281106, 230281, '六合镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281107, 230281, '长发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281108, 230281, '通南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281109, 230281, '同义镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281110, 230281, '九井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281111, 230281, '老莱镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281201, 230281, '孔国乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281207, 230281, '和盛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281208, 230281, '同心乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281210, 230281, '兴旺鄂温克族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281400, 230281, '龙河镇保安林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281401, 230281, '龙河镇茂山林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281402, 230281, '龙河镇国庆林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281403, 230281, '学田镇富源林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281404, 230281, '老莱镇宽余林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281405, 230281, '新江林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281406, 230281, '一良苗圃', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281480, 230281, '黑龙江省老莱农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281581, 230281, '六合镇黎明奶牛场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281582, 230281, '孔国乡进化种猪场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281583, 230281, '二克浅镇二里种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281584, 230281, '龙河镇青色草原种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281585, 230281, '第一良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281586, 230281, '第二良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281587, 230281, '第三良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230281588, 230281, '第四良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302001, 230302, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302002, 230302, '南山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302003, 230302, '立新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302004, 230302, '东风街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302005, 230302, '红军路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302006, 230302, '西鸡西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302007, 230302, '西山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302200, 230302, '红星乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230302201, 230302, '西郊乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303001, 230303, '桦木林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303002, 230303, '大恒山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303003, 230303, '小恒山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303004, 230303, '二道河子街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303005, 230303, '张新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303006, 230303, '奋斗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303007, 230303, '柳毛街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303200, 230303, '红旗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230303201, 230303, '柳毛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230304001, 230304, '东兴街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230304002, 230304, '矿里街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230304003, 230304, '洗煤街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230304004, 230304, '大通沟街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230304200, 230304, '滴道河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230304201, 230304, '兰岭乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230305001, 230305, '街里街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230305002, 230305, '穆棱街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230305003, 230305, '平岗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230305101, 230305, '梨树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306001, 230306, '城子河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306002, 230306, '正阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306003, 230306, '东海街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306004, 230306, '城西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306005, 230306, '杏花街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306200, 230306, '长青乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230306201, 230306, '永丰乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230307001, 230307, '麻山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230307101, 230307, '麻山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321100, 230321, '鸡东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321101, 230321, '平阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321102, 230321, '向阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321103, 230321, '哈达镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321104, 230321, '永安镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321105, 230321, '永和镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321106, 230321, '东海镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321107, 230321, '兴农镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321200, 230321, '鸡林乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321205, 230321, '明德乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321206, 230321, '下亮子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321400, 230321, '林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230321500, 230321, '八五一零农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381100, 230381, '虎林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381101, 230381, '东方红镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381102, 230381, '迎春镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381103, 230381, '虎头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381104, 230381, '杨岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381105, 230381, '东诚镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381106, 230381, '宝东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381203, 230381, '新乐乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381204, 230381, '伟光乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381206, 230381, '珍宝岛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381207, 230381, '阿北乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381400, 230381, '东方红林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381401, 230381, '迎春林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381500, 230381, '八五〇农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381501, 230381, '八五四农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381502, 230381, '八五六农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381503, 230381, '八五八农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381504, 230381, '庆丰农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230381505, 230381, '云山农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382001, 230382, '中心街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382100, 230382, '密山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382101, 230382, '连珠山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382102, 230382, '当壁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382103, 230382, '知一镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382104, 230382, '黑台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382105, 230382, '兴凯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382106, 230382, '裴德镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382107, 230382, '白鱼湾镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382200, 230382, '柳毛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382201, 230382, '杨木乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382202, 230382, '兴凯湖乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382203, 230382, '承紫河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382206, 230382, '二人班乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382208, 230382, '太平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382210, 230382, '和平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382212, 230382, '富源乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382400, 230382, '林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382480, 230382, '青年水库', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382481, 230382, '煤炭工业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382482, 230382, '经济开发区管理委员会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382501, 230382, '牡丹江管理局局直', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382502, 230382, '八五五农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382503, 230382, '八五七农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382504, 230382, '八五一一农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382505, 230382, '兴凯湖农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382506, 230382, '牡丹江管理局北大营管委会', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382507, 230382, '牡丹江管理局双峰农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382580, 230382, '水产养殖有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382581, 230382, '种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382582, 230382, '水田良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382583, 230382, '市良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382584, 230382, '校办企业公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230382585, 230382, '蜂蜜山粮库有限公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230402001, 230402, '北山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230402002, 230402, '红军街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230402003, 230402, '光明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230402004, 230402, '胜利街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230402005, 230402, '南翼街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230403001, 230403, '育才街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230403002, 230403, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230403003, 230403, '新南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230403004, 230403, '湖滨街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230403005, 230403, '解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230403006, 230403, '团结街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230404001, 230404, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230404002, 230404, '铁东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230404003, 230404, '六号街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230404004, 230404, '大陆街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230404005, 230404, '富力街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230404006, 230404, '麓林山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405001, 230405, '兴安路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405002, 230405, '兴建路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405003, 230405, '兴长路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405004, 230405, '峻德路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405005, 230405, '河东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405006, 230405, '光宇街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230405100, 230405, '红旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406001, 230406, '工人村办街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406002, 230406, '新一办街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406004, 230406, '东山办街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406005, 230406, '鹤兴办街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406100, 230406, '新华镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406201, 230406, '蔬园乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406202, 230406, '东方红乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406400, 230406, '鹤岗市林业局生活区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230406501, 230406, '新华农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230407001, 230407, '岭北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230407002, 230407, '岭南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230407003, 230407, '沟北街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230407004, 230407, '沟南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421100, 230421, '凤翔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421101, 230421, '鹤北镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421102, 230421, '名山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421103, 230421, '团结镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421104, 230421, '肇兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421105, 230421, '云山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421200, 230421, '东明朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421203, 230421, '太平沟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421400, 230421, '萝北县林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421401, 230421, '鹤北林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421500, 230421, '宝泉岭管理局局直', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421501, 230421, '江滨农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421502, 230421, '军川农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421503, 230421, '名山农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421504, 230421, '延军农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421505, 230421, '共青农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421506, 230421, '宝泉岭农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230421580, 230421, '萝北县农业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422100, 230422, '绥滨镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422101, 230422, '绥东镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422102, 230422, '忠仁镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422200, 230422, '连生乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422201, 230422, '北岗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422202, 230422, '富强乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422203, 230422, '北山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422204, 230422, '福兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422205, 230422, '新富乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422400, 230422, '绥滨西林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422401, 230422, '国营中兴边防林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422480, 230422, '忠仁镇良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422481, 230422, '绥东镇种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422500, 230422, '二九〇农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422501, 230422, '绥滨农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230422503, 230422, '普阳农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502001, 230502, '二马路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502002, 230502, '八马路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502003, 230502, '中心站街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502004, 230502, '富安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502006, 230502, '长安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502007, 230502, '铁西街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502008, 230502, '学府街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230502200, 230502, '安邦乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503001, 230503, '中山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503002, 230503, '北山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503003, 230503, '南山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503004, 230503, '东山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503005, 230503, '中心街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503006, 230503, '西山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503200, 230503, '长胜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503400, 230503, '岭东区青山旅游公司', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230503401, 230503, '岭东区岭东经营所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230505001, 230505, '振兴中路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230505002, 230505, '振兴东路街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230505004, 230505, '集贤街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230505005, 230505, '东荣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230505101, 230505, '太保镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506001, 230506, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506002, 230506, '跃进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506003, 230506, '东保卫街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506004, 230506, '七星街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506005, 230506, '双阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506006, 230506, '新安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506007, 230506, '电厂街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506008, 230506, '农场街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506101, 230506, '七星镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506401, 230506, '双鸭山林业局宝山经营所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230506402, 230506, '双鸭山林业局大叶沟林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521100, 230521, '福利镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521101, 230521, '集贤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521102, 230521, '升昌镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521103, 230521, '丰乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521104, 230521, '太平镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521201, 230521, '腰屯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521202, 230521, '兴安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521204, 230521, '永安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521401, 230521, '太平林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521402, 230521, '丰乐林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521403, 230521, '七星林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521404, 230521, '峻山林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521405, 230521, '爱林林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521406, 230521, '腰屯林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521407, 230521, '升平煤矿', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521480, 230521, '黑龙江省双鸭山监狱', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521500, 230521, '二九一农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521581, 230521, '良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521582, 230521, '种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230521583, 230521, '果树示范场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522100, 230522, '友谊镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522101, 230522, '兴隆镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522102, 230522, '龙山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522103, 230522, '凤岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522200, 230522, '兴盛乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522201, 230522, '东建乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522202, 230522, '庆丰乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522203, 230522, '建设乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522204, 230522, '友邻乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522205, 230522, '新镇乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522206, 230522, '成富朝鲜族满族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522501, 230522, '红兴隆管理局局直', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230522502, 230522, '友谊农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523100, 230523, '宝清镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523101, 230523, '七星泡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523102, 230523, '青原镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523103, 230523, '夹信子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523104, 230523, '龙头镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523105, 230523, '小城子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523106, 230523, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523203, 230523, '万金山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523204, 230523, '尖山子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523209, 230523, '七星河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523400, 230523, '双鸭山林业局上游经营所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523401, 230523, '双鸭山林业局南瓮泉经营所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523402, 230523, '双鸭山林业局七一林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523403, 230523, '双鸭山林业局七星河林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523404, 230523, '双鸭山林业局红旗林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523405, 230523, '双鸭山林业局三岔河林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523406, 230523, '双鸭山林业局青龙林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523407, 230523, '双鸭山林业局宝石经营所', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523408, 230523, '双鸭山林业局七星河金矿', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523409, 230523, '桦南林业局岚峰林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523500, 230523, '五九七农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523501, 230523, '八五二农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230523502, 230523, '八五三农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524100, 230524, '饶河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524101, 230524, '小佳河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524102, 230524, '西丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524103, 230524, '五林洞镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524200, 230524, '西林子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524201, 230524, '四排乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524203, 230524, '大佳河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524204, 230524, '山里乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524207, 230524, '大通河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524400, 230524, '小佳河林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524401, 230524, '威山林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524402, 230524, '西丰林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524403, 230524, '大牙克林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524404, 230524, '石场林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524405, 230524, '宝马山林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524406, 230524, '大岱林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524407, 230524, '永幸林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524408, 230524, '奇源林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524409, 230524, '芦源林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524410, 230524, '五林洞林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524500, 230524, '饶河农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524501, 230524, '红旗岭农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524502, 230524, '八五九农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524503, 230524, '胜利农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230524504, 230524, '红卫农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602013, 230602, '萨尔图街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602014, 230602, '会战街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602015, 230602, '友谊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602016, 230602, '东安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602017, 230602, '东风街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602018, 230602, '铁人街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602019, 230602, '火炬街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602020, 230602, '拥军街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602021, 230602, '万宝街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602022, 230602, '格林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230602023, 230602, '绿园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603011, 230603, '兴化街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603012, 230603, '卧里屯街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603013, 230603, '东光街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603014, 230603, '龙凤街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603015, 230603, '三永街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603016, 230603, '龙政街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603017, 230603, '湿地街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230603100, 230603, '龙凤镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604001, 230604, '龙岗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604002, 230604, '银浪街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604004, 230604, '奋斗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604005, 230604, '庆新街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604007, 230604, '西宾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604009, 230604, '乘风街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604010, 230604, '旭园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604011, 230604, '北湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604012, 230604, '怡园街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604013, 230604, '东湖街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604014, 230604, '创业城街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230604101, 230604, '喇嘛甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605008, 230605, '杏南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605009, 230605, '创业街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605010, 230605, '红岗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605011, 230605, '八百垧街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605012, 230605, '银河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605013, 230605, '解放街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605100, 230605, '杏树岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230605480, 230605, '黑龙江红岗经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606007, 230606, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606008, 230606, '庆葡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606009, 230606, '新华街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606010, 230606, '高平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606011, 230606, '林源街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606012, 230606, '和苑街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606013, 230606, '同福街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606100, 230606, '大同镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606101, 230606, '高台子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606102, 230606, '太阳升镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606103, 230606, '林源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606200, 230606, '祝三乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606203, 230606, '老山头乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606205, 230606, '八井子乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230606206, 230606, '双榆树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621100, 230621, '肇州镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621101, 230621, '永乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621102, 230621, '丰乐镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621103, 230621, '朝阳沟镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621104, 230621, '兴城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621105, 230621, '二井镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621202, 230621, '双发乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621203, 230621, '托古乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621205, 230621, '朝阳乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621206, 230621, '永胜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621208, 230621, '榆树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621211, 230621, '新福乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621580, 230621, '乐园良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230621581, 230621, '卫星种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622100, 230622, '肇源镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622101, 230622, '三站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622102, 230622, '二站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622103, 230622, '茂兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622104, 230622, '古龙镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622105, 230622, '新站镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622106, 230622, '头台镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622107, 230622, '古恰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622200, 230622, '福兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622201, 230622, '薄荷台乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622203, 230622, '和平乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622207, 230622, '超等乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622208, 230622, '民意乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622210, 230622, '义顺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622211, 230622, '浩德乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622212, 230622, '大兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622500, 230622, '肇源农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622581, 230622, '种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622583, 230622, '新立良种繁育场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622584, 230622, '立陡山良种场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622586, 230622, '果树示范场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622587, 230622, '经济作物示范场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230622588, 230622, '茂兴湖水产养殖场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623100, 230623, '林甸镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623101, 230623, '红旗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623102, 230623, '花园镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623103, 230623, '四季青镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623104, 230623, '鹤鸣湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623200, 230623, '东兴乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623201, 230623, '宏伟乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623204, 230623, '四合乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623400, 230623, '林甸县长青林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623500, 230623, '巨浪牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623580, 230623, '国营苇场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230623581, 230623, '新兴畜牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624100, 230624, '杜尔伯特镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624101, 230624, '胡吉吐莫镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624102, 230624, '烟筒屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624103, 230624, '他拉哈镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624104, 230624, '连环湖镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624200, 230624, '一心乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624201, 230624, '克尔台乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624203, 230624, '敖林西伯乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624204, 230624, '巴彦查干乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624205, 230624, '腰新乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624206, 230624, '江湾乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624500, 230624, '绿色草原牧场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230624501, 230624, '大山种羊场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230671010, 230671, '开发区黎明街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230671580, 230671, '高新区农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717001, 230717, '朝阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717002, 230717, '前进街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717003, 230717, '红升街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717004, 230717, '旭日街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717005, 230717, '新欣街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717006, 230717, '南郡街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717100, 230717, '东升镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230717101, 230717, '美溪镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230718001, 230718, '乌马河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230718002, 230718, '锦山街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230718003, 230718, '曙光街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230718004, 230718, '向阳街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230719001, 230719, '双子河街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230719002, 230719, '铁林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230719003, 230719, '友好街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230719100, 230719, '上甘岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722100, 230722, '朝阳镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722101, 230722, '乌云镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722102, 230722, '乌拉嘎镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722103, 230722, '保兴镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722200, 230722, '常胜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722201, 230722, '向阳乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722202, 230722, '沪嘉乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722203, 230722, '红光乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722205, 230722, '青山乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722400, 230722, '太平林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722402, 230722, '清河林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230722404, 230722, '马连林场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230723100, 230723, '乌伊岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230723101, 230723, '汤旺河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230724100, 230724, '新青镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230724101, 230724, '红星镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230724102, 230724, '五营镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230725100, 230725, '带岭镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230725101, 230725, '朗乡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230726100, 230726, '南岔镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230726101, 230726, '晨明镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230726102, 230726, '浩良河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230726200, 230726, '迎春乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230751100, 230751, '西林镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230751101, 230751, '金山屯镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781100, 230781, '铁力镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781101, 230781, '双丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781102, 230781, '桃山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781105, 230781, '神树镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781106, 230781, '日月峡镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781200, 230781, '年丰朝鲜族乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781201, 230781, '工农乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781202, 230781, '王杨乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781400, 230781, '铁力林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781401, 230781, '双丰林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230781402, 230781, '桃山林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230803007, 230803, '西林街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230803008, 230803, '建设街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230803009, 230803, '长安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230803010, 230803, '学府街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230803011, 230803, '桥南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230803198, 230803, '向阳区直辖村级区划', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230804007, 230804, '永安街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230804008, 230804, '港湾街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230804009, 230804, '和平街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230804010, 230804, '山水街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230804579, 230804, '前进区农垦', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230805007, 230805, '晓云街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230805008, 230805, '佳东街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230805009, 230805, '建国街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230805010, 230805, '佳南街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230805100, 230805, '建国镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230805200, 230805, '松江乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811008, 230811, '云环街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811009, 230811, '英俊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811010, 230811, '红旗街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811011, 230811, '友谊街道', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811101, 230811, '大来镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811102, 230811, '敖其镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811103, 230811, '望江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811104, 230811, '长发镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811105, 230811, '莲江口镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811106, 230811, '西格木镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811107, 230811, '沿江镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811108, 230811, '四丰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811200, 230811, '长青乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811208, 230811, '平安乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811211, 230811, '群胜乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811480, 230811, '莲江口监狱', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230811579, 230811, '郊区农垦', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822103, 230822, '驼腰子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822104, 230822, '石头河子镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822106, 230822, '桦南镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822107, 230822, '土龙山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822108, 230822, '孟家岗镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822109, 230822, '闫家镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822110, 230822, '柳毛河镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822205, 230822, '金沙乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822213, 230822, '梨树乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822214, 230822, '明义乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822215, 230822, '大八浪乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822216, 230822, '五道岗乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822400, 230822, '桦南林业局', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822480, 230822, '黑龙江桦南经济开发区', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822500, 230822, '曙光农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230822580, 230822, '桦南种畜场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826101, 230826, '横头山镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826103, 230826, '苏家店镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826104, 230826, '悦来镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826105, 230826, '新城镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826106, 230826, '四马架镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826201, 230826, '东河乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826202, 230826, '梨丰乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826205, 230826, '创业乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826207, 230826, '星火乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826500, 230826, '江川农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230826501, 230826, '宝山农场', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828101, 230828, '香兰镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828102, 230828, '鹤立镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828103, 230828, '竹帘镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828104, 230828, '汤原镇', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828201, 230828, '汤旺乡', 4, '2022-11-09 10:39:25', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828203, 230828, '胜利乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828208, 230828, '吉祥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828209, 230828, '振兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828210, 230828, '太平川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828211, 230828, '永发乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828400, 230828, '鹤立林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828480, 230828, '香兰监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828500, 230828, '汤原农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230828501, 230828, '梧桐河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881001, 230881, '繁荣街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881002, 230881, '兴华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881100, 230881, '同江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881101, 230881, '乐业镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881102, 230881, '三村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881103, 230881, '临江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881104, 230881, '向阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881105, 230881, '青河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881204, 230881, '街津口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881205, 230881, '八岔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881206, 230881, '金川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881207, 230881, '银川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881400, 230881, '街津口林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881401, 230881, '鸭北林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881500, 230881, '勤得利农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881501, 230881, '青龙山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881502, 230881, '前进农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881503, 230881, '洪河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881504, 230881, '鸭绿河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881505, 230881, '浓江农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881580, 230881, '良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881581, 230881, '畜牧场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230881582, 230881, '知青农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882001, 230882, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882003, 230882, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882102, 230882, '富锦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882103, 230882, '长安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882106, 230882, '砚山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882107, 230882, '头林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882108, 230882, '兴隆岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882109, 230882, '宏胜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882110, 230882, '向阳川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882111, 230882, '二龙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882112, 230882, '上街基镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882113, 230882, '锦山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882114, 230882, '大榆树镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882400, 230882, '石砬山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882401, 230882, '东风岗林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882402, 230882, '太东林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882403, 230882, '工农林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882404, 230882, '富锦市国营原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882405, 230882, '富锦市国营果树示范场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882406, 230882, '富锦市科研所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882407, 230882, '工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882500, 230882, '建三江管理局局直', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882501, 230882, '七星农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882502, 230882, '大兴农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882503, 230882, '创业农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882580, 230882, '种猪场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230882581, 230882, '种畜场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883100, 230883, '抚远镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883101, 230883, '寒葱沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883102, 230883, '浓桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883103, 230883, '乌苏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883104, 230883, '黑瞎子岛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883105, 230883, '通江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883106, 230883, '海青镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883201, 230883, '浓江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883203, 230883, '别拉洪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883204, 230883, '鸭南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883500, 230883, '前哨农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883501, 230883, '前锋农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230883502, 230883, '二道河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902031, 230902, '兴安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902032, 230902, '兴富街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902033, 230902, '兴和街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902034, 230902, '兴盛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902035, 230902, '欣源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902036, 230902, '北山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902037, 230902, '兴华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902038, 230902, '金沙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902100, 230902, '红旗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902200, 230902, '长兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902400, 230902, '七台河经济开发区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230902480, 230902, '金沙农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903011, 230903, '桃东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903012, 230903, '桃南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903013, 230903, '桃西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903014, 230903, '桃北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903015, 230903, '桃源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903016, 230903, '桃山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230903100, 230903, '万宝河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904001, 230904, '东风街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904003, 230904, '富强街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904005, 230904, '龙湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904006, 230904, '东胜街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904007, 230904, '湖东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904008, 230904, '通达街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904100, 230904, '茄子河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904101, 230904, '宏伟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904200, 230904, '铁山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904201, 230904, '中心河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904500, 230904, '北兴农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230904579, 230904, '黑龙江红兴隆农垦宝利采金', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921001, 230921, '新起街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921002, 230921, '新华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921003, 230921, '元明街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921004, 230921, '铁西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921005, 230921, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921100, 230921, '勃利镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921101, 230921, '小五站镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921102, 230921, '大四站镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921103, 230921, '双河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921104, 230921, '倭肯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921200, 230921, '青山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921202, 230921, '永恒乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921203, 230921, '抢垦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921204, 230921, '杏树朝鲜族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (230921205, 230921, '吉兴朝鲜族满族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002001, 231002, '新安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002002, 231002, '长安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002003, 231002, '七星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002004, 231002, '五星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002008, 231002, '东兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002009, 231002, '振兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231002101, 231002, '兴隆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003001, 231003, '阳明街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003002, 231003, '前进街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003003, 231003, '新兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003004, 231003, '桦林橡胶厂街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003100, 231003, '铁岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003101, 231003, '桦林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003102, 231003, '磨刀石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231003103, 231003, '五林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004001, 231004, '向阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004002, 231004, '黄花街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004003, 231004, '铁北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004004, 231004, '新华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004005, 231004, '大庆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004006, 231004, '兴平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004007, 231004, '北山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231004100, 231004, '三道关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005001, 231005, '先锋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005002, 231005, '火炬街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005003, 231005, '立新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005004, 231005, '牡丹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005005, 231005, '江滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005006, 231005, '沿江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005100, 231005, '温春镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231005201, 231005, '海南朝鲜族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025100, 231025, '林口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025101, 231025, '古城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025102, 231025, '刁翎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025104, 231025, '朱家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025105, 231025, '柳树镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025106, 231025, '三道通镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025107, 231025, '龙爪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025108, 231025, '莲花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025110, 231025, '青山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025111, 231025, '建堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025112, 231025, '奎山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231025400, 231025, '林口林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231071002, 231071, '牡丹江经开区城乡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231081100, 231081, '绥芬河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231081101, 231081, '阜宁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083100, 231083, '海林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083101, 231083, '长汀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083102, 231083, '横道镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083103, 231083, '山市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083104, 231083, '柴河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083105, 231083, '二道镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083106, 231083, '新安朝鲜族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083107, 231083, '三道镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083400, 231083, '牡林工程公司街道办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083401, 231083, '柴河林机厂街道办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083402, 231083, '大海林林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083403, 231083, '海林林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083404, 231083, '柴河林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083500, 231083, '海林农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231083501, 231083, '山市种奶牛场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084001, 231084, '城区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084100, 231084, '宁安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084101, 231084, '东京城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084102, 231084, '渤海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084103, 231084, '石岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084104, 231084, '沙兰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084105, 231084, '海浪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084106, 231084, '兰岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084107, 231084, '镜泊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084202, 231084, '江南朝鲜族满族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084206, 231084, '卧龙朝鲜族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084208, 231084, '马河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084211, 231084, '三陵乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084400, 231084, '东京城林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231084500, 231084, '宁安农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085100, 231085, '八面通镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085101, 231085, '穆棱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085102, 231085, '下城子镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085103, 231085, '马桥河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085104, 231085, '兴源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085105, 231085, '河西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085200, 231085, '福录乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085202, 231085, '共和乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085400, 231085, '八面通林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231085401, 231085, '穆棱林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086100, 231086, '东宁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086101, 231086, '三岔口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086102, 231086, '大肚川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086103, 231086, '老黑山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086104, 231086, '道河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086105, 231086, '绥阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231086400, 231086, '绥阳林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102001, 231102, '花园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102002, 231102, '兴安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102003, 231102, '海兰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102004, 231102, '西兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102101, 231102, '西岗子镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102102, 231102, '瑷珲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102103, 231102, '罕达汽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102104, 231102, '上马厂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102200, 231102, '幸福乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102201, 231102, '四嘉子乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102202, 231102, '坤河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102204, 231102, '张地营子乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102205, 231102, '西峰山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102206, 231102, '新生乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102207, 231102, '二站乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102407, 231102, '大平林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102408, 231102, '七二七林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102409, 231102, '望峰林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102410, 231102, '卡伦山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102411, 231102, '胜山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102412, 231102, '二站林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102413, 231102, '三站林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102414, 231102, '大岭林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102415, 231102, '桦皮窑林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102416, 231102, '滨南林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102417, 231102, '江防林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102418, 231102, '河南屯林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102421, 231102, '西岗子试验林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102425, 231102, '大新屯储木场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102480, 231102, '宋集屯煤矿', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102481, 231102, '西岗子煤矿', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102482, 231102, '东方红煤矿', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102500, 231102, '锦河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102501, 231102, '红色边疆农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102580, 231102, '奶牛场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102581, 231102, '种畜场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102582, 231102, '第二良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231102583, 231102, '第一良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123100, 231123, '奇克镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123101, 231123, '逊河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123103, 231123, '克林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123201, 231123, '干岔子乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123202, 231123, '松树沟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123203, 231123, '车陆乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123204, 231123, '新鄂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123205, 231123, '新兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123207, 231123, '宝山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123402, 231123, '道干林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123403, 231123, '干岔子林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123404, 231123, '新立林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123405, 231123, '三间房林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123406, 231123, '良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123407, 231123, '种畜场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231123500, 231123, '逊克农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124100, 231124, '孙吴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124101, 231124, '辰清镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124201, 231124, '西兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124202, 231124, '沿江满族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124203, 231124, '腰屯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124204, 231124, '卧牛河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124205, 231124, '群山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124206, 231124, '奋斗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124207, 231124, '红旗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124208, 231124, '正阳山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124210, 231124, '清溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124402, 231124, '前进林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124403, 231124, '大河口林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124404, 231124, '正阳林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124405, 231124, '平山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124406, 231124, '沿江林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124407, 231124, '辰清林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124408, 231124, '红旗林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124409, 231124, '向阳林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124410, 231124, '良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231124411, 231124, '种畜场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181001, 231181, '兆麟街道地区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181002, 231181, '和平街道地区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181003, 231181, '北岗街道地区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181004, 231181, '庆华街道地区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181005, 231181, '铁西街道地区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181006, 231181, '铁南街道地区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181101, 231181, '通北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181102, 231181, '赵光镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181103, 231181, '海星镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181104, 231181, '石泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181105, 231181, '二井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181200, 231181, '城郊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181201, 231181, '东胜乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181203, 231181, '杨家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181207, 231181, '主星乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181400, 231181, '通北林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181500, 231181, '北安管理局局直', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181501, 231181, '长水河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181502, 231181, '赵光农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181503, 231181, '红星农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231181504, 231181, '建设农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182001, 231182, '青山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182101, 231182, '龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182102, 231182, '和平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182103, 231182, '五大连池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182104, 231182, '双泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182105, 231182, '新发镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182106, 231182, '团结镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182107, 231182, '兴隆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182108, 231182, '朝阳山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182203, 231182, '建设乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182205, 231182, '太平乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182208, 231182, '兴安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182406, 231182, '元青山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182407, 231182, '三九六林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182408, 231182, '小兴安林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182409, 231182, '二龙山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182410, 231182, '朝阳林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182411, 231182, '引龙河林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182412, 231182, '焦得布林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182414, 231182, '小孤山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182415, 231182, '药泉林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182417, 231182, '沾河林业局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182418, 231182, '莲花管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182427, 231182, '二龙山蚕种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182429, 231182, '畜牧场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182430, 231182, '第二良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182480, 231182, '花园劳教所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182481, 231182, '永丰监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182482, 231182, '华山监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182483, 231182, '凤凰山监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182501, 231182, '龙门农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182502, 231182, '襄河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182503, 231182, '龙镇农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182504, 231182, '二龙山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182505, 231182, '引龙河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182506, 231182, '尾山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182507, 231182, '格球山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231182508, 231182, '五大连池农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183100, 231183, '嫩江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183101, 231183, '伊拉哈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183102, 231183, '双山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183103, 231183, '多宝山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183104, 231183, '海江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183105, 231183, '前进镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183106, 231183, '长福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183107, 231183, '科洛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183108, 231183, '霍龙门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183202, 231183, '临江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183206, 231183, '联兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183207, 231183, '白云乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183208, 231183, '塔溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183211, 231183, '长江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183400, 231183, '多宝山铜矿', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183500, 231183, '九三管理局局直', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183501, 231183, '鹤山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183502, 231183, '大西江农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183503, 231183, '尖山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183504, 231183, '荣军农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183506, 231183, '七星泡农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183507, 231183, '嫩江农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183508, 231183, '山河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183509, 231183, '嫩北农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183510, 231183, '建边农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231183581, 231183, '马铃薯原种繁殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202001, 231202, '紫来街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202002, 231202, '爱路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202003, 231202, '大有街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202004, 231202, '吉泰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202005, 231202, '东兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202006, 231202, '北林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202007, 231202, '朝旭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202008, 231202, '春雷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202009, 231202, '北辰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202010, 231202, '康庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202011, 231202, '先锋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202012, 231202, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202101, 231202, '宝山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202102, 231202, '绥胜满族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202103, 231202, '西长发镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202104, 231202, '永安满族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202105, 231202, '太平川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202106, 231202, '秦家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202107, 231202, '双河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202108, 231202, '三河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202109, 231202, '四方台镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202110, 231202, '津河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202111, 231202, '张维镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202113, 231202, '东津镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202114, 231202, '东富镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202115, 231202, '兴福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202116, 231202, '三井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202201, 231202, '红旗满族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202202, 231202, '连岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202203, 231202, '新华乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202212, 231202, '五营乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202213, 231202, '兴和朝鲜族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231202579, 231202, '绥化局直', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221001, 231221, '东风街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221002, 231221, '前进街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221003, 231221, '东胜街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221004, 231221, '兴安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221100, 231221, '望奎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221101, 231221, '通江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221102, 231221, '卫星镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221103, 231221, '海丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221104, 231221, '莲花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221105, 231221, '惠七满族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221106, 231221, '先锋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221107, 231221, '火箭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221108, 231221, '东郊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221109, 231221, '灯塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221202, 231221, '灵山满族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221203, 231221, '后三乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221209, 231221, '东升乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221210, 231221, '恭六乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221211, 231221, '厢白满族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221400, 231221, '白四林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221580, 231221, '种畜场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221581, 231221, '第一良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231221582, 231221, '第二良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222001, 231222, '颜河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222002, 231222, '顺达街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222003, 231222, '兰亚街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222004, 231222, '正阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222101, 231222, '兰西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222102, 231222, '榆林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222103, 231222, '临江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222104, 231222, '平山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222105, 231222, '红光镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222106, 231222, '远大镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222107, 231222, '康荣镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222108, 231222, '燎原镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222109, 231222, '奋斗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222202, 231222, '北安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222203, 231222, '长江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222204, 231222, '兰河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222205, 231222, '红星乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222207, 231222, '长岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222210, 231222, '星火乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222580, 231222, '第一原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222581, 231222, '第二原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231222582, 231222, '兰西县畜牧技术推广服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223001, 231223, '北城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223002, 231223, '西城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223003, 231223, '靖城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223004, 231223, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223100, 231223, '青冈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223101, 231223, '中和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223102, 231223, '祯祥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223103, 231223, '兴华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223104, 231223, '永丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223105, 231223, '芦河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223106, 231223, '民政镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223107, 231223, '柞岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223108, 231223, '劳动镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223109, 231223, '迎春镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223110, 231223, '德胜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223111, 231223, '昌盛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223202, 231223, '建设乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223203, 231223, '新村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223212, 231223, '连丰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223400, 231223, '青冈县林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223401, 231223, '青冈县互利营林站', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223402, 231223, '青冈县果树场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223580, 231223, '青冈县种马场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223581, 231223, '青冈县种羊场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231223582, 231223, '青冈县原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224001, 231224, '吉康街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224002, 231224, '庆瑞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224003, 231224, '平顺街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224004, 231224, '安泰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224101, 231224, '庆安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224102, 231224, '民乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224103, 231224, '大罗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224104, 231224, '平安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224105, 231224, '勤劳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224106, 231224, '久胜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224107, 231224, '同乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224108, 231224, '柳河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224201, 231224, '建民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224202, 231224, '巨宝山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224206, 231224, '丰收乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224208, 231224, '发展乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224210, 231224, '致富乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224211, 231224, '欢胜乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224400, 231224, '国有林场管理局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231224500, 231224, '柳河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225001, 231225, '明阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225002, 231225, '明源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225003, 231225, '明新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225004, 231225, '明泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225100, 231225, '明水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225101, 231225, '兴仁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225102, 231225, '永兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225103, 231225, '崇德镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225104, 231225, '通达镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225106, 231225, '双兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225203, 231225, '永久乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225204, 231225, '树人乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225205, 231225, '光荣乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225206, 231225, '繁荣乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225207, 231225, '通泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225208, 231225, '育林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225400, 231225, '国营林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225580, 231225, '县联社马场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225581, 231225, '明水种畜场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225582, 231225, '育林畜牧场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225583, 231225, '国营第一良种', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225584, 231225, '国营第二良种', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231225585, 231225, '国营第三良种', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226001, 231226, '车站街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226002, 231226, '建设街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226003, 231226, '西北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226004, 231226, '东南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226100, 231226, '绥棱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226101, 231226, '上集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226102, 231226, '四海店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226103, 231226, '双岔河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226104, 231226, '阁山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226105, 231226, '长山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226200, 231226, '靠山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226201, 231226, '后头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226205, 231226, '克音河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226206, 231226, '绥中乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226207, 231226, '泥尔河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226400, 231226, '绥棱县国有林场阁山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226401, 231226, '绥棱县国有林场四海店林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226402, 231226, '绥棱县国有林场三吉台林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226403, 231226, '绥棱县国有林场半截河林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226404, 231226, '黑龙江省绥棱林业局有限公司', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226500, 231226, '黑龙江北大荒农垦集团绥棱农场有限公司', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226580, 231226, '种马场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226581, 231226, '良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231226582, 231226, '绥棱县猪场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281001, 231281, '铁西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281002, 231281, '新兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281003, 231281, '安虹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281004, 231281, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281100, 231281, '安达镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281101, 231281, '任民镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281103, 231281, '万宝山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281104, 231281, '昌德镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281105, 231281, '升平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281106, 231281, '羊草镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281107, 231281, '老虎岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281108, 231281, '中本镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281109, 231281, '太平庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281110, 231281, '吉兴岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281111, 231281, '卧里屯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281112, 231281, '火石山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281113, 231281, '古大湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281209, 231281, '先源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281500, 231281, '安达畜牧场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281581, 231281, '原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281583, 231281, '红旗泡水库管理所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231281584, 231281, '东湖水库管理站', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282001, 231282, '朝阳区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282002, 231282, '东升区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282003, 231282, '西园区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282004, 231282, '正阳区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282100, 231282, '肇东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282101, 231282, '昌五镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282102, 231282, '宋站镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282103, 231282, '五站镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282104, 231282, '尚家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282105, 231282, '姜家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282106, 231282, '里木店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282107, 231282, '四站镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282108, 231282, '涝洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282109, 231282, '五里明镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282110, 231282, '黎明镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282111, 231282, '西八里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282112, 231282, '海城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282201, 231282, '太平乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282204, 231282, '向阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282205, 231282, '洪河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282206, 231282, '跃进乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282212, 231282, '德昌乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282213, 231282, '宣化乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282214, 231282, '安民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282215, 231282, '明久乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282500, 231282, '四方山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231282501, 231282, '涝洲鱼种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283100, 231283, '海伦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283101, 231283, '海北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283102, 231283, '伦河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283103, 231283, '共合镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283104, 231283, '海兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283105, 231283, '祥富镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283106, 231283, '东风镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283107, 231283, '百祥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283108, 231283, '向荣镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283109, 231283, '永富镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283110, 231283, '长发镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283111, 231283, '联发镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283112, 231283, '前进镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283113, 231283, '共荣镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283114, 231283, '东林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283115, 231283, '永和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283208, 231283, '海南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283210, 231283, '乐业乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283211, 231283, '福民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283212, 231283, '丰山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283218, 231283, '爱民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283220, 231283, '扎音河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283221, 231283, '双录乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283400, 231283, '海伦市森林资源保护中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283401, 231283, '东方红水库地区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283500, 231283, '海伦农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283501, 231283, '红光农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283581, 231283, '海伦市董家农作物种植场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (231283582, 231283, '海伦市东方农牧场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232701100, 232701, '西林吉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232701101, 232701, '图强镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232701102, 232701, '阿木尔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232701103, 232701, '兴安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232701104, 232701, '北极镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232701105, 232701, '古莲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721100, 232721, '呼玛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721101, 232721, '韩家园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721200, 232721, '三卡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721201, 232721, '金山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721202, 232721, '兴华乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721203, 232721, '鸥浦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721204, 232721, '白银纳鄂伦春族民族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232721205, 232721, '北疆乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722100, 232722, '塔河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722101, 232722, '瓦拉干镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722102, 232722, '盘古镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722103, 232722, '古驿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722200, 232722, '十八站鄂伦春族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722201, 232722, '依西肯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232722202, 232722, '开库康乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761001, 232761, '东山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761002, 232761, '卫东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761003, 232761, '红旗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761004, 232761, '长虹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761005, 232761, '曙光街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761006, 232761, '光明街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761200, 232761, '加北乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232761201, 232761, '白桦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232762100, 232762, '小扬气镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232762101, 232762, '劲松镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232762102, 232762, '古源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763100, 232763, '新林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763101, 232763, '翠岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763102, 232763, '塔源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763103, 232763, '大乌苏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763104, 232763, '塔尔根镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763105, 232763, '碧洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232763106, 232763, '宏图镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232764100, 232764, '呼中镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232764101, 232764, '碧水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232764102, 232764, '呼源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (232764103, 232764, '宏伟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101002, 310101, '南京东路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101013, 310101, '外滩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101015, 310101, '半淞园路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101017, 310101, '小东门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101018, 310101, '豫园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101019, 310101, '老西门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101020, 310101, '五里桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101021, 310101, '打浦桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101022, 310101, '淮海中路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310101023, 310101, '瑞金二路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104003, 310104, '天平路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104004, 310104, '湖南路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104007, 310104, '斜土路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104008, 310104, '枫林路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104010, 310104, '长桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104011, 310104, '田林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104012, 310104, '虹梅路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104013, 310104, '康健新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104014, 310104, '徐家汇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104015, 310104, '凌云路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104016, 310104, '龙华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104017, 310104, '漕河泾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104103, 310104, '华泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310104501, 310104, '漕河泾新兴技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105001, 310105, '华阳路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105002, 310105, '江苏路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105004, 310105, '新华路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105005, 310105, '周家桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105006, 310105, '天山路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105008, 310105, '仙霞新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105009, 310105, '虹桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105010, 310105, '程家桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105011, 310105, '北新泾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310105102, 310105, '新泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106006, 310106, '江宁路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106011, 310106, '石门二路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106012, 310106, '南京西路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106013, 310106, '静安寺街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106014, 310106, '曹家渡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106015, 310106, '天目西路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106016, 310106, '北站街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106017, 310106, '宝山路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106018, 310106, '共和新路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106019, 310106, '大宁路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106020, 310106, '彭浦新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106021, 310106, '临汾路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106022, 310106, '芷江西路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310106101, 310106, '彭浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107005, 310107, '曹杨新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107014, 310107, '长风新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107015, 310107, '长寿路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107016, 310107, '甘泉路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107017, 310107, '石泉路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107020, 310107, '宜川路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107021, 310107, '万里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107022, 310107, '真如镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107102, 310107, '长征镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310107103, 310107, '桃浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109009, 310109, '欧阳路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109010, 310109, '曲阳路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109011, 310109, '广中路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109014, 310109, '嘉兴路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109016, 310109, '凉城新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109017, 310109, '四川北路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109018, 310109, '北外滩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310109019, 310109, '江湾镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110001, 310110, '定海路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110006, 310110, '平凉路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110008, 310110, '江浦路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110009, 310110, '四平路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110012, 310110, '控江路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110013, 310110, '长白新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110015, 310110, '延吉新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110016, 310110, '殷行街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110018, 310110, '大桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110019, 310110, '五角场街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110020, 310110, '新江湾城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310110021, 310110, '长海路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112001, 310112, '江川路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112006, 310112, '古美街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112008, 310112, '新虹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112009, 310112, '浦锦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112101, 310112, '莘庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112102, 310112, '七宝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112103, 310112, '颛桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112106, 310112, '华漕镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112107, 310112, '虹桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112108, 310112, '梅陇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112110, 310112, '吴泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112112, 310112, '马桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112114, 310112, '浦江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310112501, 310112, '莘庄工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113003, 310113, '友谊路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113007, 310113, '吴淞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113008, 310113, '张庙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113101, 310113, '罗店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113102, 310113, '大场镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113103, 310113, '杨行镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113104, 310113, '月浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113106, 310113, '罗泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113109, 310113, '顾村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113111, 310113, '高境镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113112, 310113, '庙行镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113113, 310113, '淞南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310113501, 310113, '宝山城市工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114001, 310114, '新成路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114002, 310114, '真新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114004, 310114, '嘉定镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114102, 310114, '南翔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114103, 310114, '安亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114106, 310114, '马陆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114109, 310114, '徐行镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114111, 310114, '华亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114114, 310114, '外冈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114118, 310114, '江桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114401, 310114, '菊园新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310114501, 310114, '嘉定工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115004, 310115, '潍坊新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115005, 310115, '陆家嘴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115007, 310115, '周家渡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115008, 310115, '塘桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115009, 310115, '上钢新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115010, 310115, '南码头路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115011, 310115, '沪东新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115012, 310115, '金杨新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115013, 310115, '洋泾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115014, 310115, '浦兴路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115015, 310115, '东明路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115016, 310115, '花木街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115103, 310115, '川沙新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115104, 310115, '高桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115105, 310115, '北蔡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115110, 310115, '合庆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115114, 310115, '唐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115117, 310115, '曹路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115120, 310115, '金桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115121, 310115, '高行镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115123, 310115, '高东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115125, 310115, '张江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115130, 310115, '三林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115131, 310115, '惠南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115132, 310115, '周浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115133, 310115, '新场镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115134, 310115, '大团镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115136, 310115, '康桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115137, 310115, '航头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115139, 310115, '祝桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115140, 310115, '泥城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115141, 310115, '宣桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115142, 310115, '书院镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115143, 310115, '万祥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115144, 310115, '老港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115145, 310115, '南汇新城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115401, 310115, '芦潮港农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115402, 310115, '东海农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115403, 310115, '朝阳农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115501, 310115, '中国(上海)自由贸易试验区(保税片区)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115502, 310115, '金桥经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310115503, 310115, '张江高科技园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116001, 310116, '石化街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116101, 310116, '朱泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116102, 310116, '枫泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116103, 310116, '张堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116104, 310116, '亭林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116105, 310116, '吕巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116107, 310116, '廊下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116109, 310116, '金山卫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116112, 310116, '漕泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116113, 310116, '山阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310116503, 310116, '金山工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117001, 310117, '岳阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117002, 310117, '永丰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117003, 310117, '方松街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117004, 310117, '中山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117005, 310117, '广富林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117006, 310117, '九里亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117102, 310117, '泗泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117103, 310117, '佘山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117104, 310117, '车墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117105, 310117, '新桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117106, 310117, '洞泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117107, 310117, '九亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117109, 310117, '泖港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117116, 310117, '石湖荡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117117, 310117, '新浜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117120, 310117, '叶榭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117121, 310117, '小昆山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117501, 310117, '松江工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117504, 310117, '佘山度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310117507, 310117, '上海松江出口加工区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118001, 310118, '夏阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118002, 310118, '盈浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118003, 310118, '香花桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118102, 310118, '朱家角镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118103, 310118, '练塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118104, 310118, '金泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118105, 310118, '赵巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118106, 310118, '徐泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118107, 310118, '华新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118109, 310118, '重固镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310118110, 310118, '白鹤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120001, 310120, '西渡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120002, 310120, '奉浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120003, 310120, '金海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120101, 310120, '南桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120102, 310120, '奉城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120104, 310120, '庄行镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120106, 310120, '金汇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120109, 310120, '四团镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120111, 310120, '青村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120118, 310120, '柘林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120123, 310120, '海湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310120503, 310120, '海湾旅游区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151101, 310151, '城桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151102, 310151, '堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151103, 310151, '新河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151104, 310151, '庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151105, 310151, '竖新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151106, 310151, '向化镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151107, 310151, '三星镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151108, 310151, '港沿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151109, 310151, '中兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151110, 310151, '陈家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151111, 310151, '绿华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151112, 310151, '港西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151113, 310151, '建设镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151114, 310151, '新海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151115, 310151, '东平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151116, 310151, '长兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151201, 310151, '新村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151202, 310151, '横沙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151401, 310151, '前卫农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151402, 310151, '东平林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (310151501, 310151, '上实现代农业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102002, 320102, '梅园新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102003, 320102, '新街口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102005, 320102, '玄武门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102007, 320102, '锁金村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102008, 320102, '红山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102009, 320102, '孝陵卫街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102010, 320102, '玄武湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320102400, 320102, '徐庄高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104001, 320104, '秦虹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104002, 320104, '夫子庙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104003, 320104, '红花街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104004, 320104, '双塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104005, 320104, '中华门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104006, 320104, '五老村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104007, 320104, '洪武路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104008, 320104, '大光路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104009, 320104, '瑞金路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104010, 320104, '月牙湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104011, 320104, '光华路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104012, 320104, '朝天宫街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104400, 320104, '夫子庙秦淮风光带', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104401, 320104, '高新园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104402, 320104, '新城发展服务', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320104403, 320104, '新街口商务商贸街区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105001, 320105, '莫愁湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105002, 320105, '沙洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105003, 320105, '双闸街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105004, 320105, '江心洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105006, 320105, '兴隆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105007, 320105, '南苑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105400, 320105, '建邺区新城科技园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105401, 320105, '建邺区河西中央商务区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105402, 320105, '建邺区江东商业文化旅游中心区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320105403, 320105, '中新南京生态科技岛', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106001, 320106, '宁海路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106002, 320106, '华侨路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106003, 320106, '湖南路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106004, 320106, '中央门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106005, 320106, '挹江门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106006, 320106, '江东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106007, 320106, '凤凰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106008, 320106, '下关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106009, 320106, '热河南路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106010, 320106, '幕府山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106011, 320106, '建宁路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106012, 320106, '宝塔桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320106013, 320106, '小市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111001, 320111, '泰山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111002, 320111, '顶山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111003, 320111, '沿江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111004, 320111, '江浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111005, 320111, '桥林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111006, 320111, '汤泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111007, 320111, '盘城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111008, 320111, '星甸街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111009, 320111, '永宁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111400, 320111, '老山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111401, 320111, '汤泉农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111402, 320111, '珍珠泉旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111403, 320111, '浦口经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111404, 320111, '南京浦口高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320111450, 320111, '高新技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113001, 320113, '尧化街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113002, 320113, '马群街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113003, 320113, '迈皋桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113004, 320113, '燕子矶街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113005, 320113, '栖霞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113006, 320113, '龙潭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113007, 320113, '仙林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113009, 320113, '八卦洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113010, 320113, '西岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113400, 320113, '龙潭监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113401, 320113, '栖霞经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113402, 320113, '南京龙潭物流园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113403, 320113, '南京市靖安三江口工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113405, 320113, '南京市马群科技园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113406, 320113, '南京仙林大学城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113407, 320113, '江苏生命科技创新园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113409, 320113, '南大科学园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113410, 320113, '南京紫东国际创意园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113411, 320113, '南京金港科技创业中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113413, 320113, '仙林智谷', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320113450, 320113, '南京经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114001, 320114, '雨花街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114002, 320114, '赛虹桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114004, 320114, '西善桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114005, 320114, '板桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114006, 320114, '铁心桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114007, 320114, '梅山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114008, 320114, '古雄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114400, 320114, '雨花经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320114402, 320114, '中国(南京)软件谷', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115001, 320115, '东山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115002, 320115, '秣陵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115003, 320115, '汤山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115004, 320115, '淳化街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115005, 320115, '禄口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115006, 320115, '江宁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115007, 320115, '谷里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115008, 320115, '湖熟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115009, 320115, '横溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115010, 320115, '麒麟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115401, 320115, '青龙山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115402, 320115, '江宁开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115403, 320115, '江宁滨江开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115404, 320115, '江宁高新技术产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320115405, 320115, '麒麟科技创新园(生态科技城)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116001, 320116, '大厂街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116004, 320116, '葛塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116005, 320116, '长芦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116006, 320116, '雄州街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116007, 320116, '龙池街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116008, 320116, '程桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116009, 320116, '金牛湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116010, 320116, '横梁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116011, 320116, '龙袍街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116012, 320116, '马鞍街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116013, 320116, '冶山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116110, 320116, '竹镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116400, 320116, '六合开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116401, 320116, '新材料产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320116450, 320116, '化工园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117001, 320117, '永阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117002, 320117, '柘塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117003, 320117, '东屏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117004, 320117, '石湫街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117005, 320117, '洪蓝街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117101, 320117, '白马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117106, 320117, '晶桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117107, 320117, '和凤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320117400, 320117, '溧水开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118001, 320118, '淳溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118002, 320118, '古柏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118003, 320118, '漆桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118004, 320118, '固城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118005, 320118, '东坝街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118006, 320118, '桠溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118101, 320118, '阳江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118102, 320118, '砖墙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118400, 320118, '高淳县团结圩良种繁育场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118401, 320118, '高淳县茶叶实验场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118402, 320118, '高淳监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320118403, 320118, '高淳县傅家坛林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205001, 320205, '东亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205002, 320205, '安镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205003, 320205, '东北塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205102, 320205, '羊尖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205103, 320205, '鹅湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205105, 320205, '锡北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205106, 320205, '东港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205400, 320205, '无锡锡山开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320205401, 320205, '锡山台湾农民创业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206001, 320206, '堰桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206002, 320206, '长安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206003, 320206, '钱桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206004, 320206, '前洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206005, 320206, '玉祁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206102, 320206, '洛社镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206103, 320206, '阳山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206401, 320206, '无锡惠山经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320206500, 320206, '无锡惠山工业转型集聚区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211001, 320211, '河埒街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211002, 320211, '荣巷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211003, 320211, '蠡园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211004, 320211, '蠡湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211006, 320211, '华庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211007, 320211, '太湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211008, 320211, '雪浪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211009, 320211, '马山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320211101, 320211, '胡埭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213021, 320213, '崇安寺街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213022, 320213, '清名桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213023, 320213, '惠山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213024, 320213, '北大街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213025, 320213, '广益街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213026, 320213, '扬名街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213027, 320213, '山北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213028, 320213, '黄巷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320213029, 320213, '瞻江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214050, 320214, '旺庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214051, 320214, '硕放街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214052, 320214, '江溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214053, 320214, '新安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214054, 320214, '梅村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214055, 320214, '鸿山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214450, 320214, '无锡新加坡工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214451, 320214, '无锡高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214452, 320214, '无锡高新区综合保税区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320214453, 320214, '无锡太湖国际科技园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281001, 320281, '澄江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281004, 320281, '南闸街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281005, 320281, '云亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281007, 320281, '申港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281008, 320281, '利港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281009, 320281, '夏港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281100, 320281, '璜土镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281102, 320281, '月城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281103, 320281, '青阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281104, 320281, '徐霞客镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281107, 320281, '华士镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281108, 320281, '周庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281109, 320281, '新桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281110, 320281, '长泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281111, 320281, '顾山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281112, 320281, '祝塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281400, 320281, '江阴高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281403, 320281, '江苏江阴靖江工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281404, 320281, '临港经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281405, 320281, '青阳园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320281406, 320281, '月城园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282001, 320282, '宜城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282002, 320282, '屺亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282003, 320282, '新庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282004, 320282, '新街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282005, 320282, '芳桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282100, 320282, '张渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282101, 320282, '西渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282102, 320282, '太华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282103, 320282, '徐舍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282104, 320282, '官林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282105, 320282, '杨巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282106, 320282, '新建镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282107, 320282, '和桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282108, 320282, '高塍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282109, 320282, '万石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282110, 320282, '周铁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282112, 320282, '丁蜀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282113, 320282, '湖父镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282400, 320282, '环科园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320282401, 320282, '宜兴经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302001, 320302, '黄楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302002, 320302, '丰财街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302003, 320302, '琵琶街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302004, 320302, '牌楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302005, 320302, '铜沛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302006, 320302, '环城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302007, 320302, '九里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320302008, 320302, '拾屯街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303001, 320303, '彭城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303002, 320303, '子房街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303003, 320303, '黄山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303004, 320303, '骆驼山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303005, 320303, '大郭庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303006, 320303, '翠屏山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303007, 320303, '大龙湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303008, 320303, '潘塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303009, 320303, '汉风街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303400, 320303, '淮海食品城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320303401, 320303, '户部山回龙窝历史文化街区管理中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305001, 320305, '老矿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305003, 320305, '大泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305004, 320305, '大吴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305005, 320305, '潘安湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305006, 320305, '茱萸山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305102, 320305, '青山泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305104, 320305, '紫庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305105, 320305, '塔山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305106, 320305, '汴塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305107, 320305, '江庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305401, 320305, '鹿庄粮棉原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320305402, 320305, '工业园区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311001, 320311, '王陵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311002, 320311, '七里沟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311003, 320311, '永安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311004, 320311, '湖滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311005, 320311, '段庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311006, 320311, '翟山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311007, 320311, '奎山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311008, 320311, '和平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311009, 320311, '金山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311010, 320311, '泰山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311011, 320311, '庞庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311012, 320311, '火花街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311013, 320311, '桃园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311014, 320311, '苏山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311401, 320311, '徐州泉山经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320311402, 320311, '徐州软件园管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312001, 320312, '三河尖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312002, 320312, '张双楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312003, 320312, '垞城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312004, 320312, '张集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312006, 320312, '利国街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312007, 320312, '电厂街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312009, 320312, '铜山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312010, 320312, '沿湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312051, 320312, '新区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312052, 320312, '三堡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312102, 320312, '何桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312103, 320312, '黄集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312104, 320312, '马坡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312105, 320312, '郑集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312106, 320312, '柳新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312107, 320312, '刘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312108, 320312, '大彭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312109, 320312, '汉王镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312111, 320312, '棠张镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312112, 320312, '张集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312113, 320312, '房村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312114, 320312, '伊庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312115, 320312, '单集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312116, 320312, '利国镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312118, 320312, '大许镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312119, 320312, '茅村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312120, 320312, '柳泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312402, 320312, '徐州高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320312403, 320312, '江苏铜山经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321001, 320321, '中阳里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321002, 320321, '凤城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321003, 320321, '孙楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321102, 320321, '首羡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321103, 320321, '顺河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321104, 320321, '常店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321105, 320321, '欢口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321106, 320321, '师寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321107, 320321, '华山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321108, 320321, '梁寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321109, 320321, '范楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321111, 320321, '宋楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321112, 320321, '大沙河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321113, 320321, '王沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321114, 320321, '赵庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320321401, 320321, '大沙河林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322001, 320322, '沛城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322002, 320322, '大屯街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322003, 320322, '汉源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322004, 320322, '汉兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322101, 320322, '龙固镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322102, 320322, '杨屯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322105, 320322, '胡寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322106, 320322, '魏庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322107, 320322, '五段镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322108, 320322, '张庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322109, 320322, '张寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322110, 320322, '敬安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322111, 320322, '河口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322112, 320322, '栖山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322113, 320322, '鹿楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322114, 320322, '朱寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322115, 320322, '安国镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320322403, 320322, '沛县湖西农场管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324001, 320324, '睢城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324002, 320324, '金城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324003, 320324, '睢河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324102, 320324, '王集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324103, 320324, '双沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324104, 320324, '岚山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324105, 320324, '李集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324106, 320324, '桃园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324107, 320324, '官山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324108, 320324, '高作镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324109, 320324, '沙集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324110, 320324, '凌城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324111, 320324, '邱集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324112, 320324, '古邳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324113, 320324, '姚集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324114, 320324, '魏集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324115, 320324, '梁集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324116, 320324, '庆安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324401, 320324, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320324405, 320324, '空港经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320371001, 320371, '金山桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320371002, 320371, '东环街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320371003, 320371, '大黄山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320371004, 320371, '大庙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320371005, 320371, '金龙湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320371101, 320371, '徐庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381001, 320381, '新安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381002, 320381, '北沟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381003, 320381, '墨河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381004, 320381, '唐店街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381005, 320381, '钟吾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381102, 320381, '瓦窑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381103, 320381, '港头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381105, 320381, '合沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381106, 320381, '草桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381107, 320381, '窑湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381108, 320381, '棋盘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381109, 320381, '马陵山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381110, 320381, '新店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381111, 320381, '邵店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381113, 320381, '时集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381114, 320381, '高流镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381115, 320381, '阿湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381116, 320381, '双塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381401, 320381, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381402, 320381, '锡沂高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320381403, 320381, '马陵山风景名胜区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382001, 320382, '东湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382002, 320382, '运河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382003, 320382, '戴圩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382004, 320382, '炮车街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382102, 320382, '邳城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382103, 320382, '官湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382104, 320382, '四户镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382105, 320382, '宿羊山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382106, 320382, '八义集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382107, 320382, '土山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382108, 320382, '碾庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382109, 320382, '港上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382110, 320382, '邹庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382111, 320382, '占城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382112, 320382, '新河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382113, 320382, '八路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382115, 320382, '铁富镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382116, 320382, '岔河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382118, 320382, '陈楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382119, 320382, '邢楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382120, 320382, '戴庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382121, 320382, '车辐山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382122, 320382, '燕子埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382123, 320382, '赵墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382124, 320382, '议堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382401, 320382, '邳城农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382402, 320382, '张楼农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320382403, 320382, '江苏邳州经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402001, 320402, '雕庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402002, 320402, '青龙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402003, 320402, '茶山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402004, 320402, '红梅街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402005, 320402, '天宁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402006, 320402, '兰陵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320402109, 320402, '郑陆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404001, 320404, '五星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404002, 320404, '永红街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404003, 320404, '北港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404004, 320404, '西林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404005, 320404, '南大街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404006, 320404, '荷花池街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404007, 320404, '新闸街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320404116, 320404, '邹区镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411002, 320411, '三井街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411003, 320411, '龙虎塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411004, 320411, '春江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411005, 320411, '魏村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411006, 320411, '新桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411101, 320411, '孟河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411103, 320411, '薛家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411104, 320411, '罗溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411105, 320411, '西夏墅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320411122, 320411, '奔牛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412001, 320412, '戚墅堰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412002, 320412, '丁堰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412003, 320412, '潞城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412100, 320412, '湖塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412102, 320412, '牛塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412103, 320412, '洛阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412104, 320412, '遥观镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412105, 320412, '横林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412106, 320412, '横山桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412110, 320412, '雪堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412113, 320412, '前黄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412114, 320412, '礼嘉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412119, 320412, '嘉泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412120, 320412, '湟里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412400, 320412, '武进经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412411, 320412, '高新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412412, 320412, '西太湖生态休闲区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320412413, 320412, '太湖旅游度假区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413001, 320413, '西城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413100, 320413, '金城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413104, 320413, '儒林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413106, 320413, '直溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413108, 320413, '朱林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413109, 320413, '薛埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413112, 320413, '指前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413400, 320413, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413401, 320413, '茅山旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320413402, 320413, '华罗庚高新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481001, 320481, '昆仑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481002, 320481, '溧城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481003, 320481, '古县街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481101, 320481, '埭头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481102, 320481, '上黄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481103, 320481, '戴埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481106, 320481, '天目湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481107, 320481, '别桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481109, 320481, '上兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481111, 320481, '竹箦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481114, 320481, '南渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481116, 320481, '社渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481400, 320481, '常州监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320481401, 320481, '溧阳监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505001, 320505, '横塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505002, 320505, '狮山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505003, 320505, '枫桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505004, 320505, '镇湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505101, 320505, '通安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505400, 320505, '浒墅关经开区(镇)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505405, 320505, '苏州高新技术创业服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505407, 320505, '科技城(东渚街道)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320505408, 320505, '苏州高新区综合保税区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506001, 320506, '长桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506003, 320506, '越溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506004, 320506, '郭巷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506005, 320506, '横泾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506006, 320506, '香山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506009, 320506, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506010, 320506, '太湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506100, 320506, '甪直镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506103, 320506, '木渎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506104, 320506, '胥口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506107, 320506, '东山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506108, 320506, '光福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506109, 320506, '金庭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506110, 320506, '临湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506400, 320506, '江苏省太湖采石公司', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506401, 320506, '吴中区林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506402, 320506, '西山农业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506403, 320506, '穹窿山风景区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506404, 320506, '开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320506405, 320506, '国家苏州太湖旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507001, 320507, '元和街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507002, 320507, '太平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507003, 320507, '黄桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507004, 320507, '北桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507005, 320507, '北河泾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507006, 320507, '漕湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507007, 320507, '澄阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507100, 320507, '望亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507102, 320507, '黄埭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507105, 320507, '渭塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507109, 320507, '阳澄湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507401, 320507, '阳澄湖生态休闲旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320507402, 320507, '苏州高铁新城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508017, 320508, '白洋湾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508018, 320508, '平江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508019, 320508, '金阊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508020, 320508, '沧浪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508021, 320508, '双塔街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508022, 320508, '虎丘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508023, 320508, '苏锦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320508024, 320508, '吴门桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509001, 320509, '松陵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509002, 320509, '横扇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509003, 320509, '八坼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509004, 320509, '江陵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509104, 320509, '平望镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509105, 320509, '盛泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509107, 320509, '七都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509108, 320509, '震泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509109, 320509, '桃源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509110, 320509, '黎里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509111, 320509, '同里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509400, 320509, '吴江经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509401, 320509, '东方丝绸市场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320509402, 320509, '东太湖生态旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571050, 320571, '娄葑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571051, 320571, '斜塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571052, 320571, '唯亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571053, 320571, '胜浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571400, 320571, '湖西社区工作委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571401, 320571, '湖东社区工作委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571402, 320571, '月亮湾社区工作委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320571403, 320571, '东沙湖社区工作委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581001, 320581, '虞山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581002, 320581, '常福街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581003, 320581, '琴川街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581004, 320581, '莫城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581005, 320581, '碧溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581006, 320581, '东南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581101, 320581, '梅李镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581102, 320581, '海虞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581104, 320581, '古里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581105, 320581, '沙家浜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581106, 320581, '支塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581107, 320581, '董浜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581110, 320581, '辛庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581111, 320581, '尚湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581401, 320581, '常熟经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581402, 320581, '常熟高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581406, 320581, '常熟昆承湖管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320581407, 320581, '常熟国家大学科技园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582001, 320582, '金港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582002, 320582, '后塍街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582003, 320582, '德积街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582100, 320582, '杨舍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582101, 320582, '塘桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582103, 320582, '锦丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582104, 320582, '乐余镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582105, 320582, '凤凰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582106, 320582, '南丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582107, 320582, '大新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582400, 320582, '张家港市现代农业示范园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582401, 320582, '张家港经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582403, 320582, '张家港保税区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582406, 320582, '张家港市冶金工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320582407, 320582, '双山岛旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583100, 320583, '玉山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583101, 320583, '巴城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583102, 320583, '周市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583103, 320583, '陆家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583104, 320583, '花桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583106, 320583, '张浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583108, 320583, '千灯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583400, 320583, '昆山开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320583401, 320583, '昆山旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585100, 320585, '城厢镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585101, 320585, '沙溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585102, 320585, '浏河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585103, 320585, '浮桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585104, 320585, '璜泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585105, 320585, '双凤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585400, 320585, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320585403, 320585, '科教新城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612001, 320612, '金沙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612002, 320612, '兴东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612003, 320612, '先锋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612004, 320612, '金新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612101, 320612, '西亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612102, 320612, '二甲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612103, 320612, '东社镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612104, 320612, '三余镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612107, 320612, '十总镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612110, 320612, '石港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612112, 320612, '刘桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612114, 320612, '平潮镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612116, 320612, '五接镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612117, 320612, '兴仁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612119, 320612, '张芝山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612120, 320612, '川姜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320612401, 320612, '环本农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613001, 320613, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613002, 320613, '和平桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613003, 320613, '任港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613004, 320613, '新城桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613005, 320613, '虹桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613006, 320613, '学田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613007, 320613, '钟秀街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613008, 320613, '文峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613009, 320613, '观音山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613010, 320613, '狼山镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613016, 320613, '永兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613017, 320613, '唐闸镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613018, 320613, '天生港镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613019, 320613, '秦灶街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613020, 320613, '陈桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613021, 320613, '幸福街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613401, 320613, '南通崇川经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613402, 320613, '港闸开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320613403, 320613, '市北高新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614102, 320614, '海永镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614103, 320614, '常乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614104, 320614, '悦来镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614105, 320614, '四甲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614106, 320614, '余东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614107, 320614, '正余镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614400, 320614, '南通市海门区经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614401, 320614, '南通市海门区永隆沙农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614403, 320614, '南通市海门区大东农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614404, 320614, '南通市海门区畜禽良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614405, 320614, '南通市海门区种羊场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614406, 320614, '南通市海门区包场渔场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614407, 320614, '南通市海门区长江芦荡养殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614408, 320614, '南通市海门市沿江渔场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614409, 320614, '南通市海门区三厂苗圃', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614410, 320614, '南通市海门区农科所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614412, 320614, '南通市海门区财政局芦荡管理所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614413, 320614, '江苏省国营江心沙农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614414, 320614, '南通市海门区临江新区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614415, 320614, '海门港新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614416, 320614, '三星镇(叠石桥家纺产业园区)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320614418, 320614, '三厂工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623001, 320623, '掘港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623002, 320623, '城中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623003, 320623, '苴镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623100, 320623, '栟茶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623101, 320623, '洋口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623103, 320623, '长沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623104, 320623, '大豫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623107, 320623, '马塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623108, 320623, '丰利镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623109, 320623, '曹埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623110, 320623, '岔河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623111, 320623, '双甸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623112, 320623, '新店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623113, 320623, '河口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623114, 320623, '袁庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623400, 320623, '如东县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623401, 320623, '如东沿海经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623402, 320623, '如东洋口港经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623403, 320623, '如东东安科技园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623404, 320623, '如东沿海旅游经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320623405, 320623, '南通外向型农业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671001, 320671, '中兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671002, 320671, '新开街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671003, 320671, '竹行街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671004, 320671, '小海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671400, 320671, '江海镇区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671401, 320671, '南通市经济技术开发区老洪港', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320671403, 320671, '南通苏通科技产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681100, 320681, '汇龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681101, 320681, '北新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681102, 320681, '惠萍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681104, 320681, '东海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681106, 320681, '南阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681107, 320681, '海复镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681108, 320681, '合作镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681109, 320681, '王鲍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681110, 320681, '吕四港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681400, 320681, '启东经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681401, 320681, '启东滨海工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681402, 320681, '启东生命健康产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681403, 320681, '江苏吕四海洋经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681404, 320681, '启隆生态科技产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681405, 320681, '启东海工船舶工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681406, 320681, '启东江海产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681407, 320681, '圆陀角旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320681408, 320681, '启东生命健康科技园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682001, 320682, '如城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682103, 320682, '东陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682104, 320682, '丁堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682105, 320682, '白蒲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682107, 320682, '下原镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682108, 320682, '九华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682110, 320682, '石庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682111, 320682, '长江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682112, 320682, '吴窑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682113, 320682, '江安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682116, 320682, '搬经镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682117, 320682, '磨头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682400, 320682, '如皋市经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682401, 320682, '如皋高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682402, 320682, '南通市粮棉原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682403, 320682, '如皋市蚕种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682404, 320682, '如皋市良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682406, 320682, '如皋市种猪场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682407, 320682, '如皋市农科所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682408, 320682, '如皋市江滨医院', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320682409, 320682, '如皋市中心沙水产养殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685100, 320685, '海安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685101, 320685, '城东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685102, 320685, '曲塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685103, 320685, '李堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685105, 320685, '角斜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685107, 320685, '大公镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685109, 320685, '雅周镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685111, 320685, '白甸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685112, 320685, '南莫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685113, 320685, '墩头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320685400, 320685, '海安县农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703001, 320703, '墟沟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703003, 320703, '连云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703004, 320703, '云山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703005, 320703, '板桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703006, 320703, '连岛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703007, 320703, '徐圩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703008, 320703, '海州湾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703009, 320703, '宿城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703010, 320703, '高公岛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703203, 320703, '前三岛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703400, 320703, '连云港碱厂', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703401, 320703, '东辛农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320703402, 320703, '连云经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706001, 320706, '朐阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706006, 320706, '新海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706009, 320706, '云台街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706010, 320706, '新浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706011, 320706, '海州街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706012, 320706, '幸福路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706013, 320706, '洪门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706014, 320706, '宁海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706016, 320706, '浦西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706017, 320706, '新东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706018, 320706, '新南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706019, 320706, '路南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706020, 320706, '花果山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706021, 320706, '南城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706022, 320706, '郁州街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706100, 320706, '锦屏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706102, 320706, '新坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706103, 320706, '板浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706104, 320706, '浦南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706402, 320706, '岗埠农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706403, 320706, '新浦经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706404, 320706, '海州经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706405, 320706, '高新技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320706406, 320706, '云台农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707100, 320707, '青口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707101, 320707, '柘汪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707102, 320707, '石桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707103, 320707, '金山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707104, 320707, '黑林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707105, 320707, '厉庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707106, 320707, '海头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707107, 320707, '塔山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707108, 320707, '赣马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707109, 320707, '班庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707110, 320707, '城头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707112, 320707, '城西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707114, 320707, '宋庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707115, 320707, '沙河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707116, 320707, '墩尚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707400, 320707, '沙河子园艺场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707402, 320707, '赣榆海洋经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320707403, 320707, '赣榆经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722001, 320722, '牛山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722002, 320722, '石榴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722101, 320722, '白塔埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722103, 320722, '黄川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722104, 320722, '石梁河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722105, 320722, '青湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722107, 320722, '温泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722108, 320722, '双店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722109, 320722, '桃林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722110, 320722, '洪庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722111, 320722, '安峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722112, 320722, '房山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722113, 320722, '平明镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722200, 320722, '驼峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722203, 320722, '李埝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722204, 320722, '山左口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722205, 320722, '石湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722206, 320722, '曲阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722207, 320722, '张湾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722401, 320722, '江苏东海经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320722402, 320722, '江苏东海高新技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723001, 320723, '侍庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723100, 320723, '伊山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723102, 320723, '杨集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723103, 320723, '燕尾港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723104, 320723, '同兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723105, 320723, '四队镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723106, 320723, '圩丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723107, 320723, '龙苴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723108, 320723, '下车镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723109, 320723, '图河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723110, 320723, '东王集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723111, 320723, '小伊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723112, 320723, '南岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723401, 320723, '五图河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723402, 320723, '灌西盐场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723403, 320723, '灌云经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320723404, 320723, '灌云临港产业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724100, 320724, '新安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724101, 320724, '堆沟港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724102, 320724, '田楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724103, 320724, '北陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724104, 320724, '张店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724105, 320724, '三口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724106, 320724, '孟兴庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724107, 320724, '汤沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724108, 320724, '百禄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724109, 320724, '新集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320724110, 320724, '李集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320771001, 320771, '中云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320771002, 320771, '猴嘴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320771003, 320771, '朝阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320771450, 320771, '青口盐场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320772401, 320772, '南云台林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803001, 320803, '淮城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803002, 320803, '河下街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803004, 320803, '山阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803101, 320803, '平桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803104, 320803, '朱桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803106, 320803, '施河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803107, 320803, '车桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803109, 320803, '流均镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803110, 320803, '博里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803112, 320803, '复兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803113, 320803, '苏嘴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803114, 320803, '钦工镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803115, 320803, '顺河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803121, 320803, '漕运镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803122, 320803, '石塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803123, 320803, '范集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803400, 320803, '白马湖农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803401, 320803, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320803402, 320803, '淮安新材料产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804001, 320804, '长江路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804002, 320804, '王家营街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804003, 320804, '新渡口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804004, 320804, '古清口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804103, 320804, '南陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804107, 320804, '丁集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804109, 320804, '徐溜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804110, 320804, '渔沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804113, 320804, '三树镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804114, 320804, '高家堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804115, 320804, '马头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804116, 320804, '刘老庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804117, 320804, '淮高镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320804400, 320804, '淮安高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812001, 320812, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812002, 320812, '清江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812003, 320812, '浦楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812004, 320812, '闸口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812005, 320812, '清浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812006, 320812, '府前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812007, 320812, '长西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812008, 320812, '淮海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812009, 320812, '长东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812010, 320812, '柳树湾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812011, 320812, '水渡口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812012, 320812, '清河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812013, 320812, '武墩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812014, 320812, '盐河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812100, 320812, '和平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812103, 320812, '黄码镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320812450, 320812, '宁连路办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813001, 320813, '高良涧街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813002, 320813, '朱坝街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813003, 320813, '黄集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813101, 320813, '蒋坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813103, 320813, '岔河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813104, 320813, '西顺河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813105, 320813, '老子山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813106, 320813, '三河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813110, 320813, '东双沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320813400, 320813, '洪泽经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826001, 320826, '涟城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826002, 320826, '朱码街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826003, 320826, '陈师街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826004, 320826, '保滩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826101, 320826, '高沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826102, 320826, '唐集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826104, 320826, '大东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826105, 320826, '五港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826106, 320826, '梁岔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826107, 320826, '石湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826109, 320826, '岔庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826110, 320826, '东胡集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826111, 320826, '南集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826113, 320826, '成集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826114, 320826, '红窑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320826117, 320826, '黄营镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830001, 320830, '盱城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830002, 320830, '太和街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830003, 320830, '古桑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830101, 320830, '马坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830102, 320830, '官滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830104, 320830, '桂五镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830106, 320830, '河桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830107, 320830, '鲍集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830108, 320830, '黄花塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830111, 320830, '淮河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830114, 320830, '天泉湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830115, 320830, '管仲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830116, 320830, '穆店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830400, 320830, '三河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320830401, 320830, '淮化集团', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831001, 320831, '黎城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831002, 320831, '戴楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831003, 320831, '金北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831101, 320831, '金南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831103, 320831, '塔集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831106, 320831, '前锋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831107, 320831, '吕良镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831111, 320831, '银涂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831400, 320831, '宝应湖农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831401, 320831, '复兴圩农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831402, 320831, '粮棉原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320831403, 320831, '金湖经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871001, 320871, '钵池街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871002, 320871, '徐杨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871003, 320871, '南马厂街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871004, 320871, '枚乘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871401, 320871, '新港办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871405, 320871, '金港路办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871410, 320871, '富城路办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871411, 320871, '福地路办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871412, 320871, '高铁商务区办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871420, 320871, '张码办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320871421, 320871, '淮洪路办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902001, 320902, '五星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902002, 320902, '文峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902003, 320902, '先锋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902004, 320902, '毓龙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902007, 320902, '新洋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902008, 320902, '大洋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902050, 320902, '伍佑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902051, 320902, '黄海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902052, 320902, '新河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902100, 320902, '南洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902102, 320902, '新兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902104, 320902, '便仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902107, 320902, '盐东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902108, 320902, '黄尖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902400, 320902, '亭湖新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320902402, 320902, '环保产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903002, 320903, '张庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903003, 320903, '盐龙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903004, 320903, '潘黄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903012, 320903, '盐渎街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903050, 320903, '新都街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903051, 320903, '科城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903100, 320903, '大纵湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903102, 320903, '楼王镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903103, 320903, '学富镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903105, 320903, '尚庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903108, 320903, '秦南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903109, 320903, '龙冈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903111, 320903, '郭猛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903112, 320903, '大冈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903403, 320903, '大纵湖旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320903404, 320903, '台湾农民创业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904001, 320904, '丰华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904002, 320904, '大中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904101, 320904, '草堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904102, 320904, '白驹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904103, 320904, '刘庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904104, 320904, '西团镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904105, 320904, '小海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904106, 320904, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904107, 320904, '草庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904108, 320904, '万盈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904109, 320904, '南阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904110, 320904, '新丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904111, 320904, '三龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904400, 320904, '大中农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904401, 320904, '方强农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904402, 320904, '东坝头农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904403, 320904, '大丰经济开发区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904404, 320904, '大丰港经济开发区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320904405, 320904, '大丰常州高新区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921100, 320921, '响水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921101, 320921, '陈家港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921102, 320921, '小尖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921103, 320921, '黄圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921104, 320921, '大有镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921105, 320921, '双港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921106, 320921, '南河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921107, 320921, '运河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921400, 320921, '县开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921401, 320921, '省属黄海农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320921402, 320921, '省属灌东盐场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922001, 320922, '东坎街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922002, 320922, '坎南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922003, 320922, '坎北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922101, 320922, '五汛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922102, 320922, '蔡桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922103, 320922, '正红镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922104, 320922, '通榆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922105, 320922, '界牌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922106, 320922, '八巨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922107, 320922, '八滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922109, 320922, '滨淮镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922110, 320922, '天场镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922111, 320922, '陈涛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922112, 320922, '滨海港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922400, 320922, '滨淮农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922401, 320922, '新滩盐场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922403, 320922, '开发区沿海工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922404, 320922, '滨海港经济区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320922405, 320922, '滨海县现代农业产业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923001, 320923, '阜城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923002, 320923, '吴滩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923003, 320923, '花园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923004, 320923, '金沙湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923100, 320923, '沟墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923101, 320923, '陈良镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923102, 320923, '三灶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923103, 320923, '郭墅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923104, 320923, '新沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923105, 320923, '陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923106, 320923, '羊寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923107, 320923, '芦蒲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923108, 320923, '板湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923109, 320923, '东沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923110, 320923, '益林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923111, 320923, '古河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923112, 320923, '罗桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320923402, 320923, '现代服务业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924100, 320924, '合德镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924101, 320924, '临海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924102, 320924, '千秋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924104, 320924, '四明镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924106, 320924, '海河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924108, 320924, '海通镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924109, 320924, '兴桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924110, 320924, '新坍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924111, 320924, '长荡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924112, 320924, '盘湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924113, 320924, '特庸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924114, 320924, '洋马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924117, 320924, '黄沙港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924400, 320924, '县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924401, 320924, '淮海农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924402, 320924, '临海农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924403, 320924, '新洋农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924404, 320924, '盐场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320924406, 320924, '射阳港经济区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925001, 320925, '近湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925050, 320925, '钟庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925051, 320925, '塘河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925101, 320925, '建阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925102, 320925, '九龙口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925103, 320925, '恒济镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925104, 320925, '颜单镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925105, 320925, '沿河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925106, 320925, '芦沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925107, 320925, '庆丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925108, 320925, '上冈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925111, 320925, '冈西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925113, 320925, '宝塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320925114, 320925, '高作镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320971001, 320971, '新城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320971100, 320971, '步凤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981100, 320981, '溱东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981101, 320981, '时堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981106, 320981, '五烈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981107, 320981, '梁垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981108, 320981, '安丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981109, 320981, '南沈灶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981110, 320981, '富安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981112, 320981, '唐洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981113, 320981, '新街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981114, 320981, '许河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981115, 320981, '三仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981118, 320981, '头灶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981121, 320981, '弶港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981122, 320981, '东台镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981400, 320981, '江苏省新曹农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981401, 320981, '江苏省弶港农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981409, 320981, '开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981410, 320981, '沿海经济区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981411, 320981, '高新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981412, 320981, '西溪景区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (320981413, 320981, '黄海森林公园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002001, 321002, '东关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002002, 321002, '汶河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002003, 321002, '文峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002004, 321002, '曲江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002005, 321002, '汤汪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002102, 321002, '李典镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002103, 321002, '沙头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002104, 321002, '头桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002106, 321002, '湾头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002400, 321002, '广陵经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002401, 321002, '扬州市生态科技新城杭集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321002402, 321002, '扬州市生态科技新城泰安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003001, 321003, '邗上街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003002, 321003, '蒋王街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003003, 321003, '汊河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003005, 321003, '双桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003006, 321003, '梅岭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003007, 321003, '甘泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003009, 321003, '新盛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003010, 321003, '竹西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003011, 321003, '西湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003052, 321003, '瘦西湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003053, 321003, '城北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003100, 321003, '公道镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003101, 321003, '方巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003102, 321003, '槐泗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003103, 321003, '瓜洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003108, 321003, '杨寿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003110, 321003, '杨庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003201, 321003, '双桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003350, 321003, '平山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003401, 321003, '江苏省扬州高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003402, 321003, '维扬经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321003403, 321003, '物流园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012100, 321012, '仙女镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012101, 321012, '小纪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012103, 321012, '武坚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012106, 321012, '樊川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012108, 321012, '真武镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012109, 321012, '宜陵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012110, 321012, '丁沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012112, 321012, '郭村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012114, 321012, '邵伯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012116, 321012, '丁伙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012118, 321012, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012119, 321012, '吴桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012120, 321012, '浦头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321012400, 321012, '立新农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023100, 321023, '安宜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023101, 321023, '氾水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023102, 321023, '夏集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023103, 321023, '柳堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023104, 321023, '射阳湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023105, 321023, '广洋湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023106, 321023, '鲁垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023107, 321023, '小官庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023108, 321023, '望直港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023109, 321023, '曹甸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023110, 321023, '西安丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023111, 321023, '山阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023112, 321023, '黄塍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023113, 321023, '泾河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321023400, 321023, '开发区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321071050, 321071, '扬子津街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321071051, 321071, '文汇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321071150, 321071, '施桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321071151, 321071, '八里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321071152, 321071, '朴席镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081100, 321081, '真州镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081103, 321081, '新集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081104, 321081, '新城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081105, 321081, '马集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081106, 321081, '刘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081107, 321081, '陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081108, 321081, '大仪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081109, 321081, '月塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081150, 321081, '青山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081401, 321081, '原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081402, 321081, '蚕种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081403, 321081, '园艺试验场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081404, 321081, '水产试验场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081405, 321081, '捺山茶场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081407, 321081, '汽车工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081410, 321081, '开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081412, 321081, '枣林湾旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321081454, 321081, '化学工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084001, 321084, '高邮街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084101, 321084, '龙虬镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084106, 321084, '汤庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084107, 321084, '卸甲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084108, 321084, '三垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084109, 321084, '甘垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084112, 321084, '界首镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084113, 321084, '周山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084115, 321084, '临泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084116, 321084, '送桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084200, 321084, '菱塘回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084401, 321084, '城南经济新区(车逻镇)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321084406, 321084, '经济开发区(马棚街道)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102001, 321102, '正东路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102002, 321102, '健康路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102003, 321102, '大市口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102004, 321102, '四牌楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102005, 321102, '象山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102006, 321102, '谏壁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102400, 321102, '京口经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321102401, 321102, '新民洲临港产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111001, 321111, '宝塔路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111002, 321111, '和平路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111003, 321111, '金山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111004, 321111, '七里甸街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111005, 321111, '蒋乔街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111006, 321111, '官塘桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111007, 321111, '韦岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321111008, 321111, '南山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112001, 321112, '高资街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112002, 321112, '宜城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112100, 321112, '高桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112101, 321112, '辛丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112102, 321112, '谷阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112103, 321112, '上党镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112104, 321112, '宝堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112105, 321112, '世业镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112401, 321112, '江心洲生态农业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321112402, 321112, '荣炳盐资源区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321171001, 321171, '丁卯街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321171002, 321171, '大港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321171100, 321171, '姚桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321171101, 321171, '大路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321171102, 321171, '丁岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181001, 321181, '云阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181002, 321181, '曲阿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181100, 321181, '司徒镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181101, 321181, '延陵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181102, 321181, '珥陵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181103, 321181, '导墅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181104, 321181, '皇塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181105, 321181, '吕城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181106, 321181, '陵口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181107, 321181, '访仙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181108, 321181, '界牌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321181113, 321181, '丹北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321182001, 321182, '三茅街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321182101, 321182, '新坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321182102, 321182, '油坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321182103, 321182, '八桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321182104, 321182, '西来桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321182400, 321182, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183002, 321183, '华阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183003, 321183, '黄梅街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183102, 321183, '下蜀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183103, 321183, '白兔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183104, 321183, '边城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183105, 321183, '茅山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183106, 321183, '后白镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183107, 321183, '郭庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183108, 321183, '天王镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183109, 321183, '宝华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321183429, 321183, '茅山管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202001, 321202, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202002, 321202, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202003, 321202, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202004, 321202, '城中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202005, 321202, '城北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202007, 321202, '京泰路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202050, 321202, '红旗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202100, 321202, '九龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202101, 321202, '罡杨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202102, 321202, '苏陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202103, 321202, '华港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202406, 321202, '海陵工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202407, 321202, '农业示范园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321202408, 321202, '火车站街区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203001, 321203, '口岸街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203002, 321203, '刁铺街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203003, 321203, '许庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203004, 321203, '凤凰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203005, 321203, '寺巷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203006, 321203, '明珠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203007, 321203, '沿江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203100, 321203, '永安洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203101, 321203, '白马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203103, 321203, '胡庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203104, 321203, '大泗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203105, 321203, '野徐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203400, 321203, '泰州港经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203401, 321203, '医药产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203402, 321203, '电子信息产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321203403, 321203, '数据产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204001, 321204, '罗塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204002, 321204, '三水街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204003, 321204, '天目山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204004, 321204, '梁徐街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204101, 321204, '溱潼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204102, 321204, '蒋垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204103, 321204, '顾高镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204104, 321204, '大伦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204105, 321204, '张甸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204110, 321204, '淤溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204111, 321204, '白米镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204112, 321204, '娄庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204115, 321204, '俞垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204401, 321204, '溱湖风景区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204403, 321204, '林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204404, 321204, '种猪场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204405, 321204, '林业站', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321204406, 321204, '渔业社', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321271400, 321271, '泰州经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281001, 321281, '昭阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281002, 321281, '临城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281003, 321281, '垛田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281100, 321281, '戴窑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281101, 321281, '合陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281102, 321281, '永丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281103, 321281, '新垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281104, 321281, '安丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281105, 321281, '海南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281106, 321281, '钓鱼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281107, 321281, '大邹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281108, 321281, '沙沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281109, 321281, '中堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281114, 321281, '竹泓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281115, 321281, '沈伦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281116, 321281, '大垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281117, 321281, '荻垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281118, 321281, '陶庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281119, 321281, '昌荣镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281121, 321281, '周庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281122, 321281, '陈堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281123, 321281, '戴南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281126, 321281, '大营镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281129, 321281, '兴东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281130, 321281, '千垛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281204, 321281, '林湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281400, 321281, '开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321281401, 321281, '良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282001, 321282, '靖城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282101, 321282, '新桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282102, 321282, '东兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282103, 321282, '斜桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282104, 321282, '西来镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282105, 321282, '季市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282106, 321282, '孤山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282108, 321282, '生祠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282109, 321282, '马桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282401, 321282, '城南办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282402, 321282, '新港城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282403, 321282, '城北园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282404, 321282, '江阴园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321282406, 321282, '滨江新城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283001, 321283, '济川街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283002, 321283, '延令街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283003, 321283, '姚王街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283100, 321283, '黄桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283101, 321283, '分界镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283102, 321283, '古溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283104, 321283, '元竹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283105, 321283, '珊瑚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283106, 321283, '广陵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283108, 321283, '曲霞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283109, 321283, '张桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283112, 321283, '河失镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283113, 321283, '新街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283115, 321283, '宣堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283123, 321283, '滨江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283124, 321283, '虹桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283200, 321283, '根思乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283401, 321283, '市农科所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283402, 321283, '城东高新技术产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321283403, 321283, '农产品加工园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302001, 321302, '幸福街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302002, 321302, '项里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302003, 321302, '河滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302004, 321302, '古城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302005, 321302, '双庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302006, 321302, '支口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302007, 321302, '洋北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302101, 321302, '耿车镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302102, 321302, '埠子镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302103, 321302, '龙河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302107, 321302, '中扬镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302109, 321302, '陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302110, 321302, '蔡集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302111, 321302, '王官集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302112, 321302, '屠园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302150, 321302, '洋河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302400, 321302, '宿城开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321302450, 321302, '苏州宿迁工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311001, 321311, '顺河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311002, 321311, '豫新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311003, 321311, '下相街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311004, 321311, '晓店街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311005, 321311, '井头街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311006, 321311, '陆集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311105, 321311, '仰化镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311106, 321311, '大兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311108, 321311, '来龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311111, 321311, '关庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311113, 321311, '新庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311151, 321311, '皂河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311201, 321311, '曹集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311401, 321311, '宿豫经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311402, 321311, '宿迁生态化工科技产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311403, 321311, '张家港宿豫工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311450, 321311, '嶂山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321311451, 321311, '宿迁市软件与服务外包产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322001, 321322, '沭城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322002, 321322, '南湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322003, 321322, '梦溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322004, 321322, '十字街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322005, 321322, '章集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322006, 321322, '七雄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322101, 321322, '陇集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322102, 321322, '胡集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322103, 321322, '钱集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322104, 321322, '塘沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322105, 321322, '马厂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322106, 321322, '沂涛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322107, 321322, '庙头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322108, 321322, '韩山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322109, 321322, '华冲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322110, 321322, '桑墟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322111, 321322, '悦来镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322112, 321322, '刘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322114, 321322, '李恒镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322115, 321322, '扎下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322116, 321322, '颜集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322117, 321322, '潼阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322118, 321322, '龙庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322119, 321322, '高墟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322120, 321322, '耿圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322124, 321322, '新河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322125, 321322, '贤官镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322126, 321322, '吴集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322128, 321322, '青伊湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322205, 321322, '西圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322401, 321322, '沭阳经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321322402, 321322, '昆山(沭阳)工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323001, 321323, '众兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323002, 321323, '城厢街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323003, 321323, '来安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323101, 321323, '爱园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323102, 321323, '王集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323103, 321323, '裴圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323104, 321323, '新袁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323105, 321323, '李口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323106, 321323, '临河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323107, 321323, '穿城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323110, 321323, '卢集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323111, 321323, '三庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323200, 321323, '庄圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323400, 321323, '棉花原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323401, 321323, '泗阳农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321323402, 321323, '江苏泗阳开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324001, 321324, '青阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324002, 321324, '大楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324003, 321324, '重岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324101, 321324, '双沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324102, 321324, '上塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324103, 321324, '魏营镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324104, 321324, '临淮镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324105, 321324, '半城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324106, 321324, '孙园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324107, 321324, '梅花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324108, 321324, '归仁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324109, 321324, '金锁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324110, 321324, '朱湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324111, 321324, '界集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324113, 321324, '龙集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324202, 321324, '天岗湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324203, 321324, '车门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324204, 321324, '瑶沟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324205, 321324, '石集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324400, 321324, '五里江农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321324401, 321324, '洪泽湖农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321371050, 321371, '黄河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321371052, 321371, '三棵树街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321371351, 321371, '南蔡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (321371400, 321371, '古楚街道办', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102001, 330102, '清波街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102003, 330102, '湖滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102004, 330102, '小营街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102008, 330102, '南星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102009, 330102, '紫阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102010, 330102, '望江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102011, 330102, '凯旋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102012, 330102, '采荷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102013, 330102, '闸弄口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102014, 330102, '四季青街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102015, 330102, '彭埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102016, 330102, '笕桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102017, 330102, '丁兰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330102018, 330102, '九堡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105001, 330105, '米市巷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105002, 330105, '湖墅街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105003, 330105, '小河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105004, 330105, '和睦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105005, 330105, '拱宸桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105007, 330105, '大关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105008, 330105, '上塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105009, 330105, '祥符街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105010, 330105, '康桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105011, 330105, '半山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105012, 330105, '天水街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105013, 330105, '武林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105014, 330105, '长庆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105015, 330105, '潮鸣街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105016, 330105, '朝晖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105017, 330105, '文晖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105018, 330105, '东新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330105019, 330105, '石桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106002, 330106, '北山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106004, 330106, '西溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106005, 330106, '翠苑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106007, 330106, '古荡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106008, 330106, '西湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106009, 330106, '留下街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106010, 330106, '转塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106011, 330106, '蒋村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106012, 330106, '灵隐街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106013, 330106, '文新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106109, 330106, '三墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330106110, 330106, '双浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330108001, 330108, '西兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330108002, 330108, '长河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330108003, 330108, '浦沿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109001, 330109, '城厢街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109002, 330109, '北干街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109003, 330109, '蜀山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109004, 330109, '新塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109005, 330109, '靖江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109006, 330109, '南阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109012, 330109, '闻堰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109013, 330109, '宁围街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109014, 330109, '新街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109015, 330109, '盈丰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109100, 330109, '楼塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109101, 330109, '河上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109102, 330109, '戴村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109103, 330109, '浦阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109104, 330109, '进化镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109105, 330109, '临浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109106, 330109, '义桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109107, 330109, '所前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109108, 330109, '衙前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109113, 330109, '瓜沥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109115, 330109, '益农镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109120, 330109, '党湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109401, 330109, '萧山经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109403, 330109, '萧山商业城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109501, 330109, '围垦区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109503, 330109, '红山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330109505, 330109, '萧山钱江世纪城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110005, 330110, '五常街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110009, 330110, '仁和街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110010, 330110, '良渚街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110011, 330110, '闲林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110012, 330110, '仓前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110013, 330110, '余杭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110014, 330110, '中泰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110109, 330110, '径山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110110, 330110, '瓶窑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110111, 330110, '鸬鸟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110112, 330110, '百丈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330110113, 330110, '黄湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111001, 330111, '富春街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111002, 330111, '春江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111004, 330111, '鹿山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111005, 330111, '东洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111006, 330111, '银湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111100, 330111, '万市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111101, 330111, '洞桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111103, 330111, '渌渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111105, 330111, '永昌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111108, 330111, '里山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111109, 330111, '常绿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111110, 330111, '场口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111111, 330111, '常安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111112, 330111, '龙门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111115, 330111, '新登镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111116, 330111, '胥口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111117, 330111, '大源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111118, 330111, '灵桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111200, 330111, '新桐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111201, 330111, '上官乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111204, 330111, '环山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111205, 330111, '湖源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111206, 330111, '春建乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330111207, 330111, '渔山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112002, 330112, '玲珑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112005, 330112, '锦南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112006, 330112, '锦城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112007, 330112, '锦北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112008, 330112, '青山湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112102, 330112, '高虹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112103, 330112, '太湖源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112104, 330112, '於潜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112106, 330112, '太阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112107, 330112, '潜川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112108, 330112, '昌化镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112109, 330112, '河桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112111, 330112, '湍口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112112, 330112, '清凉峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112113, 330112, '岛石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112115, 330112, '板桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112116, 330112, '天目山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330112117, 330112, '龙岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113001, 330113, '临平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113002, 330113, '南苑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113003, 330113, '东湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113004, 330113, '星桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113005, 330113, '乔司街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113006, 330113, '运河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113007, 330113, '崇贤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330113100, 330113, '塘栖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114001, 330114, '下沙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114002, 330114, '白杨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114003, 330114, '河庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114004, 330114, '义蓬街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114005, 330114, '新湾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114006, 330114, '临江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330114007, 330114, '前进街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122002, 330122, '旧县街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122003, 330122, '桐君街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122004, 330122, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122005, 330122, '凤川街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122101, 330122, '富春江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122102, 330122, '横村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122109, 330122, '分水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122110, 330122, '瑶琳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122112, 330122, '百江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122113, 330122, '江南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122201, 330122, '莪山畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122202, 330122, '钟山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122204, 330122, '新合乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330122210, 330122, '合村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127100, 330127, '千岛湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127101, 330127, '文昌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127102, 330127, '石林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127103, 330127, '临岐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127104, 330127, '威坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127106, 330127, '姜家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127107, 330127, '梓桐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127108, 330127, '汾口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127109, 330127, '中洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127110, 330127, '大墅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127111, 330127, '枫树岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127200, 330127, '里商乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127201, 330127, '金峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127202, 330127, '富文乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127203, 330127, '左口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127205, 330127, '屏门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127206, 330127, '瑶山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127208, 330127, '王阜乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127210, 330127, '宋村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127211, 330127, '鸠坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127212, 330127, '浪川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127214, 330127, '界首乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330127216, 330127, '安阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182001, 330182, '新安江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182002, 330182, '洋溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182003, 330182, '更楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182101, 330182, '莲花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182102, 330182, '乾潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182104, 330182, '梅城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182105, 330182, '杨村桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182106, 330182, '下涯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182107, 330182, '大洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182108, 330182, '三都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182109, 330182, '寿昌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182110, 330182, '航头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182111, 330182, '大慈岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182112, 330182, '大同镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182113, 330182, '李家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330182202, 330182, '钦堂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203001, 330203, '南门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203002, 330203, '江厦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203003, 330203, '西门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203004, 330203, '月湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203005, 330203, '鼓楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203006, 330203, '白云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203007, 330203, '段塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203008, 330203, '望春街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203009, 330203, '石碶街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203100, 330203, '高桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203101, 330203, '横街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203102, 330203, '集士港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203103, 330203, '古林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203104, 330203, '洞桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203105, 330203, '鄞江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203106, 330203, '章水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330203200, 330203, '龙观乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205001, 330205, '外滩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205003, 330205, '孔浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205004, 330205, '文教街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205005, 330205, '甬江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205006, 330205, '庄桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205007, 330205, '洪塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205008, 330205, '前江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330205103, 330205, '慈城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206001, 330206, '大榭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206002, 330206, '新碶街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206003, 330206, '小港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206004, 330206, '大碶街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206005, 330206, '霞浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206006, 330206, '柴桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206007, 330206, '戚家山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206008, 330206, '春晓街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206009, 330206, '梅山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206010, 330206, '郭巨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206011, 330206, '白峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330206401, 330206, '保税区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211001, 330211, '招宝山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211002, 330211, '蛟川街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211003, 330211, '骆驼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211004, 330211, '庄市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211005, 330211, '贵驷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211100, 330211, '澥浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330211101, 330211, '九龙湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212001, 330212, '下应街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212002, 330212, '钟公庙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212004, 330212, '梅墟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212005, 330212, '中河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212006, 330212, '首南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212007, 330212, '潘火街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212008, 330212, '百丈街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212009, 330212, '东胜街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212010, 330212, '明楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212011, 330212, '白鹤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212012, 330212, '东柳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212013, 330212, '东郊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212014, 330212, '福明街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212015, 330212, '新明街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212016, 330212, '聚贤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212100, 330212, '瞻岐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212101, 330212, '咸祥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212102, 330212, '塘溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212103, 330212, '东钱湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212104, 330212, '东吴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212105, 330212, '五乡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212106, 330212, '邱隘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212108, 330212, '云龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212109, 330212, '横溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330212110, 330212, '姜山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213001, 330213, '锦屏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213002, 330213, '岳林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213003, 330213, '江口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213004, 330213, '西坞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213005, 330213, '萧王庙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213006, 330213, '方桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213007, 330213, '尚田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213008, 330213, '莼湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213100, 330213, '溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213106, 330213, '裘村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213107, 330213, '大堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330213108, 330213, '松岙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225001, 330225, '丹东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225002, 330225, '丹西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225003, 330225, '爵溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225101, 330225, '石浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225102, 330225, '西周镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225103, 330225, '鹤浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225104, 330225, '贤庠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225105, 330225, '墙头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225106, 330225, '泗洲头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225107, 330225, '定塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225108, 330225, '涂茨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225109, 330225, '大徐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225110, 330225, '新桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225200, 330225, '东陈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225201, 330225, '晓塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225202, 330225, '黄避岙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225203, 330225, '茅洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330225204, 330225, '高塘岛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226001, 330226, '跃龙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226002, 330226, '桃源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226003, 330226, '梅林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226004, 330226, '桥头胡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226101, 330226, '长街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226102, 330226, '力洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226104, 330226, '一市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226105, 330226, '岔路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226106, 330226, '前童镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226107, 330226, '桑洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226108, 330226, '黄坛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226109, 330226, '大佳何镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226110, 330226, '强蛟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226111, 330226, '西店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226112, 330226, '深甽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226200, 330226, '胡陈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226201, 330226, '茶院乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330226202, 330226, '越溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281001, 330281, '梨洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281002, 330281, '凤山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281003, 330281, '兰江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281004, 330281, '阳明街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281005, 330281, '低塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281006, 330281, '朗霞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281100, 330281, '临山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281101, 330281, '黄家埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281102, 330281, '小曹娥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281103, 330281, '泗门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281106, 330281, '马渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281108, 330281, '牟山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281109, 330281, '丈亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281110, 330281, '三七市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281111, 330281, '河姆渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281112, 330281, '大隐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281113, 330281, '陆埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281114, 330281, '梁弄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281115, 330281, '大岚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281116, 330281, '四明山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330281201, 330281, '鹿亭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282002, 330282, '宗汉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282003, 330282, '坎墩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282004, 330282, '浒山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282005, 330282, '白沙路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282006, 330282, '古塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282104, 330282, '掌起镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282107, 330282, '观海卫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282108, 330282, '附海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282109, 330282, '桥头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282110, 330282, '匡堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282111, 330282, '逍林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282112, 330282, '新浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282113, 330282, '胜山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282114, 330282, '横河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282116, 330282, '崇寿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282118, 330282, '庵东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282120, 330282, '长河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282121, 330282, '周巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282123, 330282, '龙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330282402, 330282, '滨海经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302006, 330302, '五马街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302023, 330302, '七都街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302024, 330302, '滨江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302025, 330302, '南汇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302026, 330302, '松台街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302027, 330302, '双屿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302028, 330302, '仰义街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302029, 330302, '大南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302030, 330302, '蒲鞋市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302031, 330302, '南郊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302032, 330302, '广化街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302033, 330302, '丰门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302102, 330302, '藤桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330302105, 330302, '山福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330303001, 330303, '永中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330303002, 330303, '蒲州街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330303003, 330303, '海滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330303004, 330303, '永兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330303006, 330303, '状元街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330303007, 330303, '瑶溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304001, 330304, '景山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304002, 330304, '梧田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304003, 330304, '南白象街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304004, 330304, '茶山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304005, 330304, '娄桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304006, 330304, '新桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304007, 330304, '三垟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304008, 330304, '瞿溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304009, 330304, '郭溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304010, 330304, '潘桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304011, 330304, '丽岙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304012, 330304, '仙岩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330304108, 330304, '泽雅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305001, 330305, '北岙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305002, 330305, '灵昆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305003, 330305, '东屏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305004, 330305, '元觉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305005, 330305, '霓屿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305006, 330305, '昆鹏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305101, 330305, '大门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330305202, 330305, '鹿西乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324001, 330324, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324002, 330324, '北城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324003, 330324, '南城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324006, 330324, '三江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324007, 330324, '黄田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324008, 330324, '乌牛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324009, 330324, '瓯北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324102, 330324, '桥头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324104, 330324, '桥下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324105, 330324, '大若岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324106, 330324, '碧莲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324107, 330324, '巽宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324108, 330324, '岩头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324109, 330324, '枫林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324110, 330324, '岩坦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324111, 330324, '沙头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324112, 330324, '鹤盛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324113, 330324, '金溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324226, 330324, '云岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324227, 330324, '茗岙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324228, 330324, '溪下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324229, 330324, '界坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324400, 330324, '县特产场场区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324401, 330324, '四海山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330324402, 330324, '正江山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326100, 330326, '昆阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326101, 330326, '鳌江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326102, 330326, '水头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326103, 330326, '萧江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326105, 330326, '腾蛟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326107, 330326, '山门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326108, 330326, '顺溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326109, 330326, '南雁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326117, 330326, '万全镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326118, 330326, '海西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326119, 330326, '南麂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326120, 330326, '麻步镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326121, 330326, '凤卧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326122, 330326, '怀溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326214, 330326, '青街畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326217, 330326, '闹村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330326401, 330326, '滨海新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327100, 330327, '灵溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327103, 330327, '宜山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327104, 330327, '钱库镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327107, 330327, '金乡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327112, 330327, '藻溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327113, 330327, '桥墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327116, 330327, '矾山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327117, 330327, '赤溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327118, 330327, '马站镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327122, 330327, '望里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327123, 330327, '炎亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327124, 330327, '大渔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327125, 330327, '莒溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327126, 330327, '南宋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327127, 330327, '霞关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327128, 330327, '沿浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327216, 330327, '凤阳畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330327218, 330327, '岱岭畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328100, 330328, '大峃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328101, 330328, '百丈漈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328102, 330328, '南田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328103, 330328, '西坑畲族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328104, 330328, '黄坦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328105, 330328, '珊溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328106, 330328, '巨屿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328107, 330328, '玉壶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328108, 330328, '峃口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328109, 330328, '周壤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328110, 330328, '铜铃山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328111, 330328, '二源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328217, 330328, '周山畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328225, 330328, '桂山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328226, 330328, '双桂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328227, 330328, '平和乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330328228, 330328, '公阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329100, 330329, '罗阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329101, 330329, '司前畲族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329102, 330329, '百丈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329103, 330329, '筱村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329104, 330329, '泗溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329105, 330329, '彭溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329106, 330329, '雅阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329107, 330329, '仕阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329109, 330329, '三魁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329111, 330329, '南浦溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329112, 330329, '龟湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329113, 330329, '西旸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329204, 330329, '竹里畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329225, 330329, '包垟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329226, 330329, '凤垟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329227, 330329, '东溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329228, 330329, '柳峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329229, 330329, '雪溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329230, 330329, '大安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330329400, 330329, '乌岩岭自然保护区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330371005, 330371, '海城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330371008, 330371, '沙城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330371009, 330371, '天河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330371011, 330371, '星海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381001, 330381, '安阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381002, 330381, '玉海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381003, 330381, '锦湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381004, 330381, '东山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381005, 330381, '上望街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381007, 330381, '莘塍街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381008, 330381, '汀田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381009, 330381, '飞云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381010, 330381, '仙降街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381011, 330381, '南滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381012, 330381, '潘岱街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381013, 330381, '云周街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381101, 330381, '塘下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381116, 330381, '马屿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381120, 330381, '陶山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381122, 330381, '湖岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381125, 330381, '高楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381126, 330381, '桐浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381127, 330381, '林川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381128, 330381, '曹村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381129, 330381, '平阳坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381221, 330381, '芳庄乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330381222, 330381, '北麂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382001, 330382, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382002, 330382, '乐成街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382003, 330382, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382004, 330382, '盐盆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382005, 330382, '翁垟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382006, 330382, '白石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382007, 330382, '石帆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382008, 330382, '天成街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382101, 330382, '大荆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382102, 330382, '仙溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382104, 330382, '雁荡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382105, 330382, '芙蓉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382106, 330382, '清江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382108, 330382, '虹桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382111, 330382, '淡溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382114, 330382, '柳市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382115, 330382, '北白象镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382121, 330382, '湖雾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382122, 330382, '南塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382123, 330382, '南岳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382124, 330382, '蒲岐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382125, 330382, '磐石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382210, 330382, '智仁乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382211, 330382, '龙西乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330382212, 330382, '岭底乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330383198, 330383, '龙港县直辖村级区划', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402007, 330402, '建设街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402008, 330402, '解放街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402009, 330402, '新嘉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402010, 330402, '南湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402011, 330402, '新兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402012, 330402, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402013, 330402, '东栅街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402014, 330402, '长水街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402015, 330402, '七星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402100, 330402, '凤桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402101, 330402, '余新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402103, 330402, '新丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330402105, 330402, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411002, 330411, '新城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411003, 330411, '嘉北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411004, 330411, '塘汇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411005, 330411, '高照街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411101, 330411, '王江泾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411103, 330411, '油车港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411104, 330411, '新塍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411105, 330411, '王店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330411106, 330411, '洪合镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421001, 330421, '魏塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421002, 330421, '罗星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421003, 330421, '惠民街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421102, 330421, '大云镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421103, 330421, '西塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421105, 330421, '干窑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421107, 330421, '陶庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421111, 330421, '姚庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330421112, 330421, '天凝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424001, 330424, '武原街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424002, 330424, '西塘桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424004, 330424, '秦山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424005, 330424, '望海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424101, 330424, '沈荡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424102, 330424, '百步镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424103, 330424, '于城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424105, 330424, '澉浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330424106, 330424, '通元镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481001, 330481, '硖石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481002, 330481, '海洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481003, 330481, '海昌街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481004, 330481, '马桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481101, 330481, '许村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481103, 330481, '长安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481105, 330481, '周王庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481106, 330481, '丁桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481107, 330481, '斜桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481108, 330481, '黄湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481110, 330481, '盐官镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330481112, 330481, '袁花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482001, 330482, '当湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482002, 330482, '钟埭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482003, 330482, '曹桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482101, 330482, '乍浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482102, 330482, '新埭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482103, 330482, '新仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482106, 330482, '广陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482107, 330482, '林埭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330482108, 330482, '独山港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483001, 330483, '梧桐街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483003, 330483, '凤鸣街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483004, 330483, '高桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483100, 330483, '乌镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483101, 330483, '濮院镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483102, 330483, '屠甸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483103, 330483, '石门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483104, 330483, '河山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483105, 330483, '洲泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483106, 330483, '大麻镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330483107, 330483, '崇福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502001, 330502, '月河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502002, 330502, '朝阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502003, 330502, '爱山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502004, 330502, '飞英街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502005, 330502, '龙泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502006, 330502, '凤凰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502007, 330502, '康山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502008, 330502, '仁皇山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502009, 330502, '滨湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502010, 330502, '龙溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502011, 330502, '杨家埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502012, 330502, '环渚街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502013, 330502, '湖东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502100, 330502, '织里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502101, 330502, '八里店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502102, 330502, '妙西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502104, 330502, '埭溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502105, 330502, '东林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330502200, 330502, '道场乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503001, 330503, '东迁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503002, 330503, '旧馆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503100, 330503, '南浔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503101, 330503, '双林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503102, 330503, '练市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503103, 330503, '善琏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503105, 330503, '菱湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503106, 330503, '和孚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503107, 330503, '千金镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330503108, 330503, '石淙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521001, 330521, '武康街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521002, 330521, '舞阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521003, 330521, '阜溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521004, 330521, '下渚湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521005, 330521, '康乾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521101, 330521, '乾元镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521102, 330521, '新市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521103, 330521, '洛舍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521104, 330521, '钟管镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521110, 330521, '雷甸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521113, 330521, '禹越镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521114, 330521, '新安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330521115, 330521, '莫干山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522001, 330522, '雉城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522002, 330522, '画溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522003, 330522, '太湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522004, 330522, '龙山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522101, 330522, '洪桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522102, 330522, '李家巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522103, 330522, '夹浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522104, 330522, '林城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522106, 330522, '虹星桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522108, 330522, '小浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522110, 330522, '和平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522111, 330522, '泗安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522112, 330522, '煤山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522200, 330522, '水口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330522202, 330522, '吕山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523001, 330523, '递铺街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523002, 330523, '昌硕街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523003, 330523, '灵峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523004, 330523, '孝源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523103, 330523, '鄣吴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523104, 330523, '杭垓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523105, 330523, '孝丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523106, 330523, '报福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523107, 330523, '章村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523108, 330523, '天荒坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523110, 330523, '梅溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523111, 330523, '天子湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523201, 330523, '溪龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523205, 330523, '上墅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330523206, 330523, '山川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602001, 330602, '塔山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602002, 330602, '府山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602004, 330602, '北海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602005, 330602, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602006, 330602, '稽山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602007, 330602, '迪荡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602008, 330602, '东湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602009, 330602, '灵芝街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602010, 330602, '东浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602011, 330602, '鉴湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602012, 330602, '斗门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602013, 330602, '皋埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602014, 330602, '马山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602015, 330602, '孙端街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602016, 330602, '陶堰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602017, 330602, '沥海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330602108, 330602, '富盛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603001, 330603, '柯桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603002, 330603, '柯岩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603003, 330603, '华舍街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603004, 330603, '湖塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603005, 330603, '齐贤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603006, 330603, '福全街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603007, 330603, '安昌街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603008, 330603, '兰亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603009, 330603, '钱清街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603010, 330603, '杨汛桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603011, 330603, '马鞍街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603105, 330603, '平水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603107, 330603, '王坛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603109, 330603, '稽东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603111, 330603, '漓渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330603114, 330603, '夏履镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604001, 330604, '百官街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604002, 330604, '曹娥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604003, 330604, '东关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604004, 330604, '道墟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604005, 330604, '梁湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604006, 330604, '小越街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604007, 330604, '崧厦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604101, 330604, '长塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604102, 330604, '上浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604103, 330604, '汤浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604104, 330604, '章镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604105, 330604, '下管镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604106, 330604, '丰惠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604107, 330604, '永和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604109, 330604, '驿亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604111, 330604, '谢塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604112, 330604, '盖北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604200, 330604, '岭南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604201, 330604, '陈溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330604202, 330604, '丁宅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624001, 330624, '羽林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624002, 330624, '南明街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624003, 330624, '七星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624004, 330624, '澄潭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624104, 330624, '回山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624107, 330624, '小将镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624108, 330624, '沙溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624109, 330624, '镜岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624110, 330624, '儒岙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624112, 330624, '沃洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624200, 330624, '城南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330624201, 330624, '东茗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681001, 330681, '暨阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681002, 330681, '浣东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681003, 330681, '陶朱街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681004, 330681, '暨南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681005, 330681, '大唐街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681102, 330681, '应店街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681103, 330681, '次坞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681104, 330681, '店口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681106, 330681, '姚江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681108, 330681, '山下湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681109, 330681, '枫桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681110, 330681, '赵家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681111, 330681, '马剑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681112, 330681, '五泄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681115, 330681, '牌头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681116, 330681, '同山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681117, 330681, '安华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681119, 330681, '璜山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681120, 330681, '陈宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681121, 330681, '岭北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681122, 330681, '浬浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681124, 330681, '东白湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330681201, 330681, '东和乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683001, 330683, '剡湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683002, 330683, '三江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683003, 330683, '鹿山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683005, 330683, '浦口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683100, 330683, '甘霖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683101, 330683, '长乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683102, 330683, '崇仁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683103, 330683, '黄泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683104, 330683, '三界镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683105, 330683, '石璜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683106, 330683, '谷来镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683107, 330683, '仙岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683108, 330683, '金庭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683110, 330683, '下王镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330683200, 330683, '贵门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702001, 330702, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702002, 330702, '城中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702003, 330702, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702004, 330702, '城北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702005, 330702, '江南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702006, 330702, '三江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702007, 330702, '西关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702008, 330702, '秋滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702009, 330702, '新狮街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702100, 330702, '罗店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702101, 330702, '雅畈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702102, 330702, '安地镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702103, 330702, '白龙桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702104, 330702, '琅琊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702105, 330702, '蒋堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702106, 330702, '汤溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702107, 330702, '罗埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702108, 330702, '洋埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702201, 330702, '乾西乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702202, 330702, '竹马乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702203, 330702, '长山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702204, 330702, '箬阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702205, 330702, '沙畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702206, 330702, '塔石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702208, 330702, '莘畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330702209, 330702, '苏孟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703001, 330703, '多湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703002, 330703, '东孝街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703101, 330703, '孝顺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703102, 330703, '傅村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703103, 330703, '曹宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703104, 330703, '澧浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703105, 330703, '岭下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703106, 330703, '江东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703107, 330703, '塘雅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703108, 330703, '赤松镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330703200, 330703, '源东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723001, 330723, '白洋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723002, 330723, '壶山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723003, 330723, '熟溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723100, 330723, '柳城畲族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723101, 330723, '履坦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723102, 330723, '桐琴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723103, 330723, '泉溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723104, 330723, '新宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723105, 330723, '王宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723106, 330723, '桃溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723107, 330723, '茭道镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723200, 330723, '大田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723201, 330723, '白姆乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723202, 330723, '俞源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723203, 330723, '坦洪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723204, 330723, '西联乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723205, 330723, '三港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330723206, 330723, '大溪口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726001, 330726, '浦南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726002, 330726, '仙华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726003, 330726, '浦阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726101, 330726, '黄宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726102, 330726, '白马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726103, 330726, '郑家坞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726104, 330726, '郑宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726105, 330726, '岩头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726106, 330726, '檀溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726107, 330726, '杭坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726200, 330726, '大畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726201, 330726, '中余乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726202, 330726, '前吴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726203, 330726, '花桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330726204, 330726, '虞宅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727001, 330727, '安文街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727002, 330727, '新渥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727103, 330727, '仁川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727104, 330727, '大盘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727105, 330727, '方前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727106, 330727, '玉山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727107, 330727, '尚湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727108, 330727, '冷水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727109, 330727, '尖山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727201, 330727, '双峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727203, 330727, '双溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727205, 330727, '窈川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727211, 330727, '九和乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330727212, 330727, '盘峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781001, 330781, '兰江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781002, 330781, '云山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781004, 330781, '永昌街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781005, 330781, '赤溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781006, 330781, '女埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781007, 330781, '上华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781102, 330781, '游埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781104, 330781, '诸葛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781106, 330781, '黄店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781108, 330781, '香溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781109, 330781, '马涧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781111, 330781, '梅江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781112, 330781, '横溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781200, 330781, '灵洞乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781203, 330781, '水亭畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330781209, 330781, '柏社乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782001, 330782, '稠城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782002, 330782, '江东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782003, 330782, '稠江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782004, 330782, '北苑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782005, 330782, '后宅街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782006, 330782, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782007, 330782, '廿三里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782008, 330782, '福田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782100, 330782, '佛堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782101, 330782, '赤岸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782102, 330782, '义亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782104, 330782, '上溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782105, 330782, '苏溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330782106, 330782, '大陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783001, 330783, '吴宁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783003, 330783, '南市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783004, 330783, '白云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783005, 330783, '江北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783006, 330783, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783007, 330783, '六石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783106, 330783, '巍山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783107, 330783, '虎鹿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783108, 330783, '歌山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783109, 330783, '佐村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783110, 330783, '东阳江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783112, 330783, '湖溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783114, 330783, '马宅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783116, 330783, '千祥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783118, 330783, '南马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783122, 330783, '画水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783123, 330783, '横店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330783201, 330783, '三单乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784001, 330784, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784002, 330784, '西城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784003, 330784, '江南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784105, 330784, '石柱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784106, 330784, '前仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784107, 330784, '舟山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784108, 330784, '古山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784109, 330784, '方岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784110, 330784, '龙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784111, 330784, '西溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784112, 330784, '象珠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784113, 330784, '唐先镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784114, 330784, '花街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330784115, 330784, '芝英镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802005, 330802, '新新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802006, 330802, '府山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802007, 330802, '荷花街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802008, 330802, '信安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802009, 330802, '白云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802010, 330802, '双港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802012, 330802, '衢化街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802013, 330802, '花园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802100, 330802, '石梁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802101, 330802, '航埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802205, 330802, '黄家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802209, 330802, '七里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802210, 330802, '九华乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802211, 330802, '沟溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802212, 330802, '华墅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802213, 330802, '姜家山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802214, 330802, '万田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330802215, 330802, '石室乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803001, 330803, '樟潭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803002, 330803, '浮石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803100, 330803, '上方镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803101, 330803, '峡川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803103, 330803, '莲花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803109, 330803, '全旺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803110, 330803, '大洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803111, 330803, '后溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803112, 330803, '廿里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803113, 330803, '湖南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803114, 330803, '高家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803115, 330803, '杜泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803200, 330803, '灰坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803202, 330803, '太真乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803203, 330803, '双桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803206, 330803, '周家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803207, 330803, '云溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803213, 330803, '举村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803218, 330803, '岭洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330803219, 330803, '黄坛口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822001, 330822, '天马街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822002, 330822, '紫港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822003, 330822, '金川街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822104, 330822, '白石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822108, 330822, '招贤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822109, 330822, '青石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822111, 330822, '球川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822115, 330822, '辉埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822116, 330822, '芳村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822200, 330822, '何家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822211, 330822, '同弓乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822213, 330822, '大桥头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822219, 330822, '新昌乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330822221, 330822, '东案乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824106, 330824, '桐村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824107, 330824, '杨林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824108, 330824, '苏庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824109, 330824, '齐溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824113, 330824, '村头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824115, 330824, '华埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824116, 330824, '马金镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824117, 330824, '池淮镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824202, 330824, '中村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824205, 330824, '长虹乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824208, 330824, '何田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824216, 330824, '林山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824217, 330824, '音坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330824218, 330824, '大溪边乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825001, 330825, '龙洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825002, 330825, '东华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825101, 330825, '湖镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825102, 330825, '小南海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825106, 330825, '詹家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825109, 330825, '溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825110, 330825, '横山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825111, 330825, '塔石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825201, 330825, '罗家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825203, 330825, '庙下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825207, 330825, '石佛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825209, 330825, '社阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825211, 330825, '大街乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825212, 330825, '沐尘畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330825213, 330825, '模环乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881001, 330881, '双塔街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881002, 330881, '虎山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881003, 330881, '清湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881102, 330881, '四都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881105, 330881, '坛石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881106, 330881, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881109, 330881, '新塘边镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881112, 330881, '廿八都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881113, 330881, '长台镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881116, 330881, '上余镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881118, 330881, '凤林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881119, 330881, '峡口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881120, 330881, '石门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881121, 330881, '贺村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881201, 330881, '大陈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881203, 330881, '碗窑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881207, 330881, '保安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881213, 330881, '塘源口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330881214, 330881, '张村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902002, 330902, '昌国街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902003, 330902, '环南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902004, 330902, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902005, 330902, '盐仓街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902006, 330902, '临城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902007, 330902, '岑港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902008, 330902, '马岙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902009, 330902, '双桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902010, 330902, '小沙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902050, 330902, '千岛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902100, 330902, '金塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902104, 330902, '白泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330902105, 330902, '干览镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903001, 330903, '沈家门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903003, 330903, '东港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903004, 330903, '朱家尖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903005, 330903, '展茅街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903100, 330903, '六横镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903102, 330903, '虾峙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903104, 330903, '桃花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903105, 330903, '东极镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330903106, 330903, '普陀山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921100, 330921, '高亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921101, 330921, '东沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921102, 330921, '岱东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921103, 330921, '岱西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921105, 330921, '长涂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921106, 330921, '衢山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330921200, 330921, '秀山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922100, 330922, '菜园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922101, 330922, '嵊山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922102, 330922, '洋山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922200, 330922, '五龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922201, 330922, '黄龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922202, 330922, '枸杞乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (330922203, 330922, '花鸟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002001, 331002, '海门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002002, 331002, '白云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002003, 331002, '葭沚街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002004, 331002, '洪家街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002005, 331002, '三甲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002006, 331002, '下陈街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002007, 331002, '前所街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002008, 331002, '章安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002009, 331002, '海虹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002101, 331002, '大陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002400, 331002, '椒江农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002401, 331002, '滨海工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331002402, 331002, '月湖新城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003001, 331003, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003002, 331003, '南城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003003, 331003, '西城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003004, 331003, '北城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003005, 331003, '新前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003006, 331003, '澄江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003007, 331003, '江口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003008, 331003, '高桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003101, 331003, '宁溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003102, 331003, '北洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003103, 331003, '头陀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003107, 331003, '院桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003108, 331003, '沙埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003200, 331003, '屿头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003201, 331003, '上郑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003202, 331003, '富山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003203, 331003, '茅畲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003204, 331003, '上垟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331003205, 331003, '平田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004001, 331004, '路南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004002, 331004, '路桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004003, 331004, '路北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004004, 331004, '螺洋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004005, 331004, '桐屿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004006, 331004, '峰江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004103, 331004, '新桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004104, 331004, '横街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004106, 331004, '金清镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004107, 331004, '蓬街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004400, 331004, '滨海工业城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331004401, 331004, '滨海新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022001, 331022, '海游街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022002, 331022, '海润街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022003, 331022, '沙柳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022102, 331022, '珠岙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022103, 331022, '亭旁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022105, 331022, '健跳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022106, 331022, '横渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022107, 331022, '浦坝港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022108, 331022, '花桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331022205, 331022, '蛇蟠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023001, 331023, '赤城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023002, 331023, '始丰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023003, 331023, '福溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023101, 331023, '白鹤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023102, 331023, '石梁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023104, 331023, '街头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023105, 331023, '平桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023106, 331023, '坦头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023107, 331023, '三合镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023108, 331023, '洪畴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023200, 331023, '三州乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023203, 331023, '龙溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023204, 331023, '雷峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023207, 331023, '南屏乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331023209, 331023, '泳溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024001, 331024, '安洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024002, 331024, '南峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024003, 331024, '福应街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024101, 331024, '横溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024102, 331024, '埠头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024103, 331024, '白塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024104, 331024, '田市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024105, 331024, '官路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024106, 331024, '下各镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024107, 331024, '朱溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024200, 331024, '安岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024201, 331024, '溪港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024202, 331024, '湫山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024203, 331024, '淡竹乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024204, 331024, '皤滩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024205, 331024, '上张乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024206, 331024, '步路乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024207, 331024, '广度乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024209, 331024, '大战乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331024210, 331024, '双庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081001, 331081, '太平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081002, 331081, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081003, 331081, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081004, 331081, '城北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081005, 331081, '横峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081100, 331081, '泽国镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081101, 331081, '大溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081102, 331081, '松门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081103, 331081, '箬横镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081104, 331081, '新河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081105, 331081, '石塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081106, 331081, '滨海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081107, 331081, '温峤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081108, 331081, '城南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081109, 331081, '石桥头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081110, 331081, '坞根镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331081400, 331081, '东部新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082001, 331082, '古城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082002, 331082, '大洋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082003, 331082, '江南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082004, 331082, '大田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082005, 331082, '邵家渡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082100, 331082, '汛桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082101, 331082, '东塍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082103, 331082, '汇溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082104, 331082, '小芝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082105, 331082, '河头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082106, 331082, '白水洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082107, 331082, '括苍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082108, 331082, '永丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082109, 331082, '尤溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082110, 331082, '涌泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082111, 331082, '沿江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082112, 331082, '杜桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082113, 331082, '上盘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331082114, 331082, '桃渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083001, 331083, '玉城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083002, 331083, '坎门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083003, 331083, '大麦屿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083101, 331083, '清港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083102, 331083, '楚门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083103, 331083, '干江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083105, 331083, '沙门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083106, 331083, '芦浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083107, 331083, '龙溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083201, 331083, '鸡山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083202, 331083, '海山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331083400, 331083, '玉环经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102001, 331102, '紫金街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102002, 331102, '岩泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102003, 331102, '万象街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102004, 331102, '白云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102007, 331102, '联城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102008, 331102, '南明山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102100, 331102, '碧湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102102, 331102, '大港头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102103, 331102, '老竹畲族镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102104, 331102, '雅溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102200, 331102, '太平乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102201, 331102, '仙渡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102202, 331102, '峰源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102204, 331102, '丽新畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331102206, 331102, '黄村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121001, 331121, '鹤城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121002, 331121, '瓯南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121003, 331121, '油竹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121004, 331121, '三溪口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121101, 331121, '温溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121102, 331121, '东源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121103, 331121, '高湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121104, 331121, '船寮镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121105, 331121, '海口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121106, 331121, '腊口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121107, 331121, '北山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121108, 331121, '山口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121109, 331121, '仁庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121110, 331121, '祯埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121200, 331121, '万山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121201, 331121, '黄垟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121202, 331121, '季宅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121203, 331121, '高市乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121204, 331121, '海溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121205, 331121, '章村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121206, 331121, '祯旺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121208, 331121, '舒桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121209, 331121, '巨浦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121211, 331121, '万阜乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121212, 331121, '方山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121213, 331121, '汤垟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121214, 331121, '贵岙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121215, 331121, '小舟山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121216, 331121, '吴坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121217, 331121, '仁宫乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121218, 331121, '章旦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331121219, 331121, '阜山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122001, 331122, '五云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122002, 331122, '新碧街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122003, 331122, '仙都街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122101, 331122, '壶镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122102, 331122, '新建镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122103, 331122, '舒洪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122105, 331122, '大洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122106, 331122, '东渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122107, 331122, '东方镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122108, 331122, '大源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122203, 331122, '七里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122206, 331122, '前路乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122207, 331122, '三溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122208, 331122, '溶江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122209, 331122, '双溪口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122210, 331122, '胡源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122211, 331122, '方溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331122212, 331122, '石笕乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123001, 331123, '妙高街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123002, 331123, '云峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123102, 331123, '新路湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123103, 331123, '北界镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123104, 331123, '金竹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123105, 331123, '大柘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123106, 331123, '石练镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123107, 331123, '王村口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123108, 331123, '黄沙腰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123200, 331123, '三仁畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123201, 331123, '濂竹乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123202, 331123, '应村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123203, 331123, '高坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123204, 331123, '湖山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123205, 331123, '蔡源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123206, 331123, '焦滩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123207, 331123, '龙洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123208, 331123, '柘岱口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123209, 331123, '西畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331123210, 331123, '垵口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124001, 331124, '西屏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124002, 331124, '水南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124003, 331124, '望松街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124101, 331124, '古市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124102, 331124, '玉岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124103, 331124, '象溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124104, 331124, '大东坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124105, 331124, '新兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124201, 331124, '叶村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124202, 331124, '斋坛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124203, 331124, '三都乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124204, 331124, '竹源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124205, 331124, '四都乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124206, 331124, '赤寿乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124208, 331124, '樟溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124211, 331124, '枫坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124212, 331124, '板桥畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124213, 331124, '裕溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331124214, 331124, '安民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125001, 331125, '浮云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125002, 331125, '元和街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125003, 331125, '白龙山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125004, 331125, '凤凰山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125105, 331125, '崇头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125106, 331125, '石塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125107, 331125, '紧水滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125201, 331125, '雾溪畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125202, 331125, '安溪畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331125206, 331125, '赤石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126001, 331126, '松源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126002, 331126, '濛洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126003, 331126, '屏都街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126101, 331126, '黄田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126102, 331126, '竹口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126104, 331126, '荷地镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126105, 331126, '左溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126106, 331126, '贤良镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126107, 331126, '百山祖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126200, 331126, '岭头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126201, 331126, '五大堡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126202, 331126, '淤上乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126203, 331126, '安南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126204, 331126, '张村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126205, 331126, '隆宫乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126206, 331126, '举水乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126207, 331126, '江根乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126209, 331126, '龙溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331126211, 331126, '官塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127001, 331127, '红星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127002, 331127, '鹤溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127101, 331127, '渤海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127102, 331127, '东坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127103, 331127, '英川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127104, 331127, '沙湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127201, 331127, '大均乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127202, 331127, '澄照乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127203, 331127, '梅岐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127205, 331127, '郑坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127208, 331127, '大漈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127209, 331127, '景南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127210, 331127, '雁溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127212, 331127, '鸬鹚乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127213, 331127, '梧桐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127214, 331127, '标溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127215, 331127, '毛垟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127216, 331127, '秋炉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127217, 331127, '大地乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127218, 331127, '家地乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331127219, 331127, '九龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181001, 331181, '龙渊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181002, 331181, '西街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181003, 331181, '剑池街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181004, 331181, '石达石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181100, 331181, '八都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181101, 331181, '上垟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181102, 331181, '小梅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181103, 331181, '查田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181104, 331181, '安仁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181105, 331181, '锦溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181106, 331181, '住龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181107, 331181, '屏南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181200, 331181, '兰巨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181202, 331181, '宝溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181203, 331181, '竹垟畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181204, 331181, '道太乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181205, 331181, '岩樟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181206, 331181, '城北乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (331181207, 331181, '龙南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102001, 340102, '明光路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102003, 340102, '胜利路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102004, 340102, '三里街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102005, 340102, '铜陵路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102006, 340102, '七里站街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102007, 340102, '红光街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102008, 340102, '和平路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102010, 340102, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102011, 340102, '长淮街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102012, 340102, '方庙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102014, 340102, '嘉山路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102100, 340102, '大兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340102401, 340102, '合肥龙岗综合经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103001, 340103, '亳州路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103002, 340103, '双岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103003, 340103, '杏林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103004, 340103, '海棠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103005, 340103, '杏花村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103006, 340103, '逍遥津街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103009, 340103, '三孝口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103012, 340103, '四里河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103100, 340103, '大杨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103200, 340103, '三十岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340103400, 340103, '庐阳工业区(林店街道)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104001, 340104, '三里庵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104002, 340104, '稻香村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104003, 340104, '琥珀街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104004, 340104, '南七街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104005, 340104, '西园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104006, 340104, '五里墩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104007, 340104, '荷叶地街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104008, 340104, '笔架山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104100, 340104, '井岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104101, 340104, '南岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104102, 340104, '小庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340104400, 340104, '蜀山新产业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111001, 340111, '骆岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111002, 340111, '常青街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111003, 340111, '芜湖路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111004, 340111, '包公街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111005, 340111, '望湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111006, 340111, '义城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111007, 340111, '烟墩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111008, 340111, '滨湖世纪社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111009, 340111, '方兴社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111010, 340111, '万年埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111011, 340111, '同安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111100, 340111, '淝河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340111102, 340111, '大圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121100, 340121, '水湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121101, 340121, '庄墓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121102, 340121, '杨庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121103, 340121, '吴山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121104, 340121, '岗集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121105, 340121, '双墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121106, 340121, '下塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121107, 340121, '朱巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121109, 340121, '陶楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121110, 340121, '杜集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121111, 340121, '义井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121112, 340121, '左店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121200, 340121, '罗塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121203, 340121, '造甲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121400, 340121, '双凤开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340121401, 340121, '安徽省水家湖农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122100, 340122, '店埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122101, 340122, '撮镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122102, 340122, '梁园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122103, 340122, '桥头集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122104, 340122, '长临河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122105, 340122, '石塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122106, 340122, '古城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122107, 340122, '八斗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122108, 340122, '元疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122109, 340122, '白龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122110, 340122, '包公镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122111, 340122, '陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122200, 340122, '众兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122201, 340122, '张集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122202, 340122, '马湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122204, 340122, '响导乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122205, 340122, '杨店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122206, 340122, '牌坊回族满族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122401, 340122, '肥东新城开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340122402, 340122, '合肥循环经济示范园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123100, 340123, '上派镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123101, 340123, '三河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123103, 340123, '官亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123105, 340123, '山南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123106, 340123, '花岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123107, 340123, '紫蓬镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123108, 340123, '桃花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123109, 340123, '丰乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123200, 340123, '高店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123201, 340123, '铭传乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123202, 340123, '柿树岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123203, 340123, '严店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123400, 340123, '安徽肥西经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340123401, 340123, '紫蓬山管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124100, 340124, '庐城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124101, 340124, '冶父山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124102, 340124, '万山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124103, 340124, '汤池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124104, 340124, '郭河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124105, 340124, '金牛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124106, 340124, '石头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124107, 340124, '同大镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124108, 340124, '白山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124109, 340124, '盛桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124110, 340124, '白湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124111, 340124, '龙桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124112, 340124, '矾山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124113, 340124, '罗河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124114, 340124, '泥河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124115, 340124, '乐桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124116, 340124, '柯坦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124400, 340124, '安徽庐江经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340124401, 340124, '白湖监狱生活社区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340171401, 340171, '天乐社区服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340171402, 340171, '兴园社区服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340171403, 340171, '蜀麓社区服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340171404, 340171, '长宁社区服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340171405, 340171, '小庙托管区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340172001, 340172, '莲花社区管理委员会街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340172002, 340172, '芙蓉社区管理委员会街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340172003, 340172, '锦绣社区管理委员会街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340172004, 340172, '海恒社区管理委员会街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340172005, 340172, '临湖社区管理委员会街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340172006, 340172, '高刘街道办事处街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340173001, 340173, '七里塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340173002, 340173, '磨店街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340173003, 340173, '三十头街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340173400, 340173, '瑶海社区服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340173401, 340173, '站北社区服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181001, 340181, '中庙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181002, 340181, '亚父街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181003, 340181, '卧牛山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181004, 340181, '凤凰山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181005, 340181, '天河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181006, 340181, '半汤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181100, 340181, '栏杆集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181101, 340181, '苏湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181102, 340181, '柘皋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181103, 340181, '银屏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181104, 340181, '夏阁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181105, 340181, '中垾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181106, 340181, '散兵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181107, 340181, '烔炀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181108, 340181, '黄麓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181109, 340181, '槐林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181110, 340181, '坝镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340181200, 340181, '庙岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202012, 340202, '方村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202013, 340202, '张家山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202014, 340202, '赭麓街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202015, 340202, '范罗山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202016, 340202, '赭山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202017, 340202, '弋矶山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202018, 340202, '汀棠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202019, 340202, '天门山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202020, 340202, '大砻坊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340202021, 340202, '荆山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207001, 340207, '四褐山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207002, 340207, '裕溪口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207003, 340207, '官陡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207004, 340207, '湾里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207005, 340207, '清水街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207101, 340207, '沈巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207102, 340207, '二坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207103, 340207, '汤沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207104, 340207, '白茆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207401, 340207, '安徽省江北产业集中区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207402, 340207, '安徽芜湖鸠江经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340207403, 340207, '鸠江经济开发区二坝园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209001, 340209, '中南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209002, 340209, '马塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209003, 340209, '瀂港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209004, 340209, '火龙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209005, 340209, '白马街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209006, 340209, '南瑞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209007, 340209, '三山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209008, 340209, '保定街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209009, 340209, '龙湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209010, 340209, '高安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209100, 340209, '峨桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340209400, 340209, '芜湖高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340210100, 340210, '湾沚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340210101, 340210, '陶辛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340210102, 340210, '六郎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340210103, 340210, '花桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340210104, 340210, '红杨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340210400, 340210, '安徽新芜经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212100, 340212, '繁阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212101, 340212, '荻港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212102, 340212, '孙村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212103, 340212, '平铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212104, 340212, '新港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212105, 340212, '峨山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340212401, 340212, '安徽繁昌工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223100, 340223, '籍山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223101, 340223, '许镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223102, 340223, '弋江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223103, 340223, '三里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223104, 340223, '何湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223105, 340223, '工山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223106, 340223, '烟墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223107, 340223, '家发镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340223400, 340223, '安徽南陵工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340271001, 340271, '龙山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340271002, 340271, '万春街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340272400, 340272, '三山经济开发区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281100, 340281, '无城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281101, 340281, '襄安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281104, 340281, '陡沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281105, 340281, '石涧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281106, 340281, '严桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281107, 340281, '开城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281108, 340281, '蜀山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281109, 340281, '牛埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281110, 340281, '刘渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281111, 340281, '姚沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281112, 340281, '泥汊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281114, 340281, '福渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281115, 340281, '泉塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281116, 340281, '赫店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281117, 340281, '红庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281118, 340281, '高沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281119, 340281, '鹤毛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281120, 340281, '十里墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281121, 340281, '昆山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281122, 340281, '洪巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340281400, 340281, '安徽无为经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302001, 340302, '东风街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302002, 340302, '延安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302003, 340302, '治淮街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302004, 340302, '东升街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302005, 340302, '解放街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302006, 340302, '曹山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302100, 340302, '长淮卫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340302200, 340302, '李楼乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303001, 340303, '天桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303002, 340303, '青年街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303003, 340303, '纬二路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303004, 340303, '黄庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303005, 340303, '宏业村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303200, 340303, '燕山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340303201, 340303, '雪华乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304001, 340304, '大庆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304002, 340304, '纬四街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304003, 340304, '钓鱼台街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304004, 340304, '张公山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304005, 340304, '朝阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304100, 340304, '秦集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304101, 340304, '马城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304200, 340304, '长青乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340304401, 340304, '安徽怀远马城经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311001, 340311, '淮滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311100, 340311, '小蚌埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311101, 340311, '吴小街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311102, 340311, '曹老集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311103, 340311, '梅桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311104, 340311, '沫河口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340311402, 340311, '安徽蚌埠淮上经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321100, 340321, '榴城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321101, 340321, '包集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321102, 340321, '龙亢镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321103, 340321, '河溜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321104, 340321, '常坟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321106, 340321, '双桥集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321107, 340321, '魏庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321108, 340321, '万福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321109, 340321, '唐集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321110, 340321, '白莲坡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321111, 340321, '褚集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321112, 340321, '古城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321113, 340321, '荆山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321114, 340321, '淝南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321115, 340321, '陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321116, 340321, '淝河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321117, 340321, '兰桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321205, 340321, '徐圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321400, 340321, '龙亢农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340321401, 340321, '安徽怀远经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322100, 340322, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322101, 340322, '新集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322103, 340322, '小溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322104, 340322, '双忠庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322105, 340322, '小圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322106, 340322, '东刘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322107, 340322, '头铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322108, 340322, '大新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322109, 340322, '武桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322110, 340322, '朱顶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322111, 340322, '浍南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322112, 340322, '申集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322200, 340322, '沱湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322201, 340322, '临北回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340322400, 340322, '安徽五河经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323100, 340323, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323101, 340323, '王庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323102, 340323, '新马桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323103, 340323, '连城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323104, 340323, '刘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323105, 340323, '任桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323106, 340323, '湖沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323107, 340323, '濠城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323200, 340323, '石湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323201, 340323, '杨庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323202, 340323, '仲兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340323402, 340323, '安徽固镇经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340371400, 340371, '高新技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340372006, 340372, '胜利街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340372007, 340372, '龙湖新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340372401, 340372, '湖滨社区行政事务管理中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340372402, 340372, '淮河社区行政事务管理中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340402001, 340402, '大通街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340402100, 340402, '上窑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340402101, 340402, '洛河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340402102, 340402, '九龙岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340402200, 340402, '孔店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340402400, 340402, '淮南经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403001, 340403, '田东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403002, 340403, '新淮街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403003, 340403, '国庆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403004, 340403, '淮滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403005, 340403, '朝阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403006, 340403, '公园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403007, 340403, '洞山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403008, 340403, '龙泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403009, 340403, '泉山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403100, 340403, '舜耕镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403101, 340403, '安成镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403102, 340403, '曹庵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403103, 340403, '三和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340403201, 340403, '史院乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404001, 340404, '谢家集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404002, 340404, '蔡家岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404003, 340404, '立新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404004, 340404, '谢三村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404005, 340404, '平山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404100, 340404, '望峰岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404101, 340404, '李郢孜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404102, 340404, '唐山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404103, 340404, '杨公镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404200, 340404, '孙庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340404201, 340404, '孤堆回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340405001, 340405, '新庄孜街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340405002, 340405, '土坝孜街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340405003, 340405, '毕家岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340405100, 340405, '八公山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340405121, 340405, '山王镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340405400, 340405, '妙山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406001, 340406, '田集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406100, 340406, '高皇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406101, 340406, '平圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406102, 340406, '泥河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406103, 340406, '潘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406104, 340406, '芦集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406105, 340406, '架河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406106, 340406, '夹沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406107, 340406, '祁集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406108, 340406, '贺疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340406202, 340406, '古沟回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421100, 340421, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421102, 340421, '新集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421103, 340421, '朱马店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421104, 340421, '岳张集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421105, 340421, '顾桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421106, 340421, '毛集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421107, 340421, '夏集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421108, 340421, '桂集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421109, 340421, '焦岗湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421110, 340421, '凤凰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421111, 340421, '杨村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421112, 340421, '丁集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421113, 340421, '刘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421114, 340421, '大兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421115, 340421, '尚塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421204, 340421, '古店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421205, 340421, '钱庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421209, 340421, '关店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340421212, 340421, '李冲回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422100, 340422, '寿春镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422101, 340422, '双桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422102, 340422, '涧沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422103, 340422, '丰庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422104, 340422, '正阳关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422105, 340422, '迎河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422106, 340422, '板桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422107, 340422, '安丰塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422108, 340422, '堰口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422109, 340422, '保义镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422110, 340422, '隐贤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422111, 340422, '安丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422112, 340422, '众兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422113, 340422, '茶庵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422114, 340422, '三觉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422115, 340422, '炎刘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422116, 340422, '刘岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422117, 340422, '双庙集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422118, 340422, '小甸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422119, 340422, '瓦埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422120, 340422, '大顺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422121, 340422, '窑口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422200, 340422, '八公山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422201, 340422, '张李乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422203, 340422, '陶店回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422402, 340422, '安徽寿县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422500, 340422, '寿西湖农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340422501, 340422, '正阳关农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503001, 340503, '沙塘路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503002, 340503, '解放路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503003, 340503, '湖东路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503004, 340503, '桃源路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503005, 340503, '霍里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503006, 340503, '金家庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503007, 340503, '塘西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503008, 340503, '慈湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503009, 340503, '江东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503101, 340503, '濮塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340503401, 340503, '慈湖高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504001, 340504, '平湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504002, 340504, '雨山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504003, 340504, '安民街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504004, 340504, '采石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504100, 340504, '向山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504101, 340504, '银塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504200, 340504, '佳山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504401, 340504, '雨山经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340504402, 340504, '市经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340506100, 340506, '博望镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340506101, 340506, '丹阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340506102, 340506, '新市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340506400, 340506, '博望高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521100, 340521, '姑孰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521101, 340521, '黄池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521102, 340521, '乌溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521103, 340521, '石桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521104, 340521, '塘南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521105, 340521, '护河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521106, 340521, '太白镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521110, 340521, '年陡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521111, 340521, '湖阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521112, 340521, '大陇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521202, 340521, '江心乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521400, 340521, '当涂经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521402, 340521, '当涂大青山李白文化旅游区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340521500, 340521, '当涂现代农业示范区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522100, 340522, '环峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522101, 340522, '运漕镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522102, 340522, '铜闸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522103, 340522, '陶厂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522104, 340522, '林头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522105, 340522, '清溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522106, 340522, '仙踪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522107, 340522, '昭关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340522401, 340522, '安徽含山经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523100, 340523, '历阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523102, 340523, '白桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523103, 340523, '姥桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523104, 340523, '功桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523105, 340523, '西埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523106, 340523, '香泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523107, 340523, '乌江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523108, 340523, '善厚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523109, 340523, '石杨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523400, 340523, '安徽和县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523401, 340523, '安徽精细化工产业有机合成基地', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340523500, 340523, '安徽和县台湾农民创业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340602001, 340602, '高岳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340602002, 340602, '矿山集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340602100, 340602, '朔里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340602101, 340602, '石台镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340602102, 340602, '段园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340602400, 340602, '淮北杜集经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603001, 340603, '相南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603002, 340603, '东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603003, 340603, '西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603005, 340603, '东山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603008, 340603, '任圩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603009, 340603, '南黎街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603010, 340603, '曲阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603011, 340603, '三堤口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603100, 340603, '渠沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340603400, 340603, '安徽淮北相山经济开发区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604001, 340604, '杨庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604002, 340604, '临海童街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604003, 340604, '百善街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604004, 340604, '任楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604100, 340604, '烈山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604101, 340604, '宋町镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604102, 340604, '古饶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340604400, 340604, '烈山区工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621100, 340621, '濉溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621101, 340621, '韩村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621102, 340621, '刘桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621103, 340621, '五沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621104, 340621, '临涣镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621105, 340621, '双堆集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621106, 340621, '铁佛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621107, 340621, '南坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621108, 340621, '百善镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621109, 340621, '孙町镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621110, 340621, '四铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621400, 340621, '濉溪县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340621401, 340621, '濉溪县濉芜产业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705005, 340705, '东郊办事处街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705006, 340705, '新城办事处街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705100, 340705, '西湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705400, 340705, '铜陵市经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705401, 340705, '狮子山国家高新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705402, 340705, '天井湖社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705403, 340705, '映湖社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705404, 340705, '五松社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705405, 340705, '人民社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705406, 340705, '幸福社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705407, 340705, '官塘社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705408, 340705, '学苑社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705409, 340705, '阳光社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705410, 340705, '友好社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705411, 340705, '螺蛳山社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705412, 340705, '露采社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705413, 340705, '金口岭社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705414, 340705, '鹞山社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705415, 340705, '朝阳社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705416, 340705, '滨江社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705417, 340705, '金山社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705418, 340705, '狮子山社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340705419, 340705, '立新社区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706001, 340706, '新桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706100, 340706, '五松镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706101, 340706, '顺安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706102, 340706, '钟鸣镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706103, 340706, '天门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706104, 340706, '东联镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706105, 340706, '西联镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706200, 340706, '老洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706203, 340706, '胥坝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340706401, 340706, '义安经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711001, 340711, '桥南办事处街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711002, 340711, '安矿办事处街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711100, 340711, '铜山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711101, 340711, '大通镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711102, 340711, '老洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711103, 340711, '陈瑶湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711104, 340711, '周潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711198, 340711, '郊区直辖村级区划', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711200, 340711, '灰河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340711401, 340711, '大桥经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722106, 340722, '横埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722107, 340722, '项铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722108, 340722, '钱桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722109, 340722, '麒麟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722110, 340722, '义津镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722111, 340722, '浮山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722112, 340722, '会宫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722113, 340722, '官埠桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722114, 340722, '钱铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722115, 340722, '金社镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722116, 340722, '白柳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722117, 340722, '雨坛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722118, 340722, '枞阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722119, 340722, '欧山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722120, 340722, '汤沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722205, 340722, '白梅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340722400, 340722, '枞阳经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802001, 340802, '宜城路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802002, 340802, '新河路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802003, 340802, '华中路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802004, 340802, '人民路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802005, 340802, '孝肃路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802006, 340802, '滨江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802200, 340802, '龙狮桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802201, 340802, '长风乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340802202, 340802, '新洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803001, 340803, '德宽路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803002, 340803, '玉琳路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803003, 340803, '龙山路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803004, 340803, '菱湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803005, 340803, '集贤路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803006, 340803, '石化路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803007, 340803, '花亭路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803100, 340803, '海口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803200, 340803, '十里铺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803201, 340803, '山口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803400, 340803, '大观开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803401, 340803, '安徽安庆海口经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340803500, 340803, '皖河农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340811001, 340811, '大桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340811100, 340811, '大龙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340811101, 340811, '杨桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340811102, 340811, '罗岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340811200, 340811, '白泽湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340811201, 340811, '五横乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822100, 340822, '高河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822101, 340822, '石牌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822102, 340822, '月山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822103, 340822, '马庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822104, 340822, '金拱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822105, 340822, '茶岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822106, 340822, '公岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822107, 340822, '黄墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822108, 340822, '三桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822109, 340822, '小市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822110, 340822, '黄龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822111, 340822, '平山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822112, 340822, '腊树镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822113, 340822, '洪铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822114, 340822, '江镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822200, 340822, '凉亭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822201, 340822, '石镜乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822202, 340822, '秀山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822203, 340822, '清河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340822204, 340822, '雷埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825100, 340825, '晋熙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825101, 340825, '徐桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825102, 340825, '新仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825103, 340825, '小池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825104, 340825, '寺前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825105, 340825, '天华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825106, 340825, '牛镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825107, 340825, '弥陀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825108, 340825, '北中镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825109, 340825, '百里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825200, 340825, '大石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825201, 340825, '城西乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825202, 340825, '江塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825203, 340825, '汤泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825204, 340825, '刘畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825400, 340825, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340825401, 340825, '花凉亭水电站', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826100, 340826, '孚玉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826101, 340826, '复兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826102, 340826, '汇口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826103, 340826, '许岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826104, 340826, '下仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826105, 340826, '二郎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826106, 340826, '破凉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826107, 340826, '凉亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826108, 340826, '长铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826200, 340826, '高岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826201, 340826, '程岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826202, 340826, '九姑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826203, 340826, '千岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826204, 340826, '洲头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826205, 340826, '佐坝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826206, 340826, '北浴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826207, 340826, '陈汉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826208, 340826, '隘口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826209, 340826, '柳坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826210, 340826, '趾凤乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826211, 340826, '河塌乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826212, 340826, '五里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826400, 340826, '九成监狱管理分局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826401, 340826, '华阳河农场总场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340826403, 340826, '安徽宿松经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827100, 340827, '华阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827101, 340827, '杨湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827102, 340827, '漳湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827103, 340827, '赛口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827104, 340827, '高士镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827105, 340827, '鸦滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827106, 340827, '长岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827107, 340827, '太慈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827200, 340827, '凉泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827201, 340827, '雷池乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827400, 340827, '望江县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340827401, 340827, '安徽望江桥港经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828100, 340828, '天堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828101, 340828, '店前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828102, 340828, '来榜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828103, 340828, '菖蒲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828104, 340828, '头陀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828105, 340828, '白帽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828106, 340828, '温泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828107, 340828, '响肠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828108, 340828, '河图镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828109, 340828, '五河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828110, 340828, '主簿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828111, 340828, '冶溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828112, 340828, '黄尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828113, 340828, '中关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828200, 340828, '毛尖山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828201, 340828, '莲云乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828202, 340828, '青天乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828203, 340828, '包家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828204, 340828, '古坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828205, 340828, '田头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828207, 340828, '石关乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828208, 340828, '姚河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828209, 340828, '和平乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828210, 340828, '巍岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340828400, 340828, '安徽岳西县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340871001, 340871, '菱北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340871100, 340871, '老峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881001, 340881, '龙腾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881002, 340881, '文昌街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881003, 340881, '龙眠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881100, 340881, '孔城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881101, 340881, '吕亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881102, 340881, '范岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881103, 340881, '新渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881104, 340881, '双港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881105, 340881, '大关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881106, 340881, '青草镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881107, 340881, '金神镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881108, 340881, '嬉子湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881109, 340881, '唐湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881110, 340881, '黄甲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881111, 340881, '鲟鱼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881400, 340881, '桐城经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340881401, 340881, '桐城双新经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882100, 340882, '梅城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882101, 340882, '源潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882102, 340882, '余井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882103, 340882, '王河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882104, 340882, '黄铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882105, 340882, '槎水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882106, 340882, '水吼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882107, 340882, '官庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882108, 340882, '黄泥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882109, 340882, '黄柏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882110, 340882, '天柱山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882200, 340882, '塔畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882201, 340882, '油坝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882202, 340882, '龙潭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882203, 340882, '痘姆乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882204, 340882, '五庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882400, 340882, '开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (340882401, 340882, '旅游度假区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002001, 341002, '昱东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002002, 341002, '昱中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002003, 341002, '昱西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002004, 341002, '老街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002100, 341002, '屯光镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002101, 341002, '阳湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002102, 341002, '黎阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002103, 341002, '新潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341002104, 341002, '奕棋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003100, 341003, '甘棠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003101, 341003, '仙源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003102, 341003, '汤口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003103, 341003, '谭家桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003104, 341003, '太平湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003105, 341003, '焦村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003106, 341003, '耿城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003107, 341003, '三口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003108, 341003, '乌石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003200, 341003, '新明乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003201, 341003, '龙门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003203, 341003, '新华乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003204, 341003, '新丰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003205, 341003, '永丰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341003400, 341003, '黄山风景区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004100, 341004, '岩寺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004101, 341004, '西溪南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004102, 341004, '潜口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004103, 341004, '呈坎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004198, 341004, '徽州区直辖村级区划', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004200, 341004, '洽舍乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004201, 341004, '杨村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004202, 341004, '富溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341004400, 341004, '安徽徽州经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021100, 341021, '徽城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021101, 341021, '深渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021102, 341021, '北岸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021103, 341021, '富堨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021104, 341021, '郑村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021105, 341021, '桂林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021106, 341021, '许村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021107, 341021, '溪头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021108, 341021, '杞梓里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021109, 341021, '霞坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021110, 341021, '岔口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021111, 341021, '街口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021112, 341021, '王村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021113, 341021, '雄村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021114, 341021, '三阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021200, 341021, '坑口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021202, 341021, '上丰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021203, 341021, '昌溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021204, 341021, '武阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021206, 341021, '金川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021207, 341021, '小川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021208, 341021, '新溪口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021209, 341021, '璜田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021210, 341021, '长陔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021211, 341021, '森村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021212, 341021, '绍濂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021213, 341021, '石门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021214, 341021, '狮石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341021400, 341021, '开发区类似乡级单位', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022100, 341022, '海阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022101, 341022, '齐云山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022102, 341022, '万安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022103, 341022, '五城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022104, 341022, '东临溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022105, 341022, '蓝田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022106, 341022, '溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022107, 341022, '流口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022108, 341022, '汪村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022109, 341022, '商山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022110, 341022, '月潭湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022201, 341022, '山斗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022202, 341022, '岭南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022203, 341022, '渭桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022204, 341022, '板桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022206, 341022, '鹤城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022207, 341022, '源芳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022208, 341022, '榆村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022209, 341022, '龙田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022210, 341022, '璜尖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341022211, 341022, '白际乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023100, 341023, '碧阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023101, 341023, '宏村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023102, 341023, '渔亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023103, 341023, '西递镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023104, 341023, '柯村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023201, 341023, '美溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023202, 341023, '宏潭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341023203, 341023, '洪星乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024100, 341024, '祁山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024101, 341024, '小路口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024102, 341024, '金字牌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024103, 341024, '平里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024104, 341024, '历口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024105, 341024, '闪里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024106, 341024, '安凌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024107, 341024, '凫峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024108, 341024, '塔坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024109, 341024, '新安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024200, 341024, '大坦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024202, 341024, '柏溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024204, 341024, '祁红乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024205, 341024, '溶口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024206, 341024, '芦溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024207, 341024, '渚口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024208, 341024, '古溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341024210, 341024, '箬坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102001, 341102, '琅琊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102004, 341102, '丰山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102006, 341102, '清流街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102007, 341102, '扬子街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102010, 341102, '西涧街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102011, 341102, '遵阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102012, 341102, '滁阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102013, 341102, '三官街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341102400, 341102, '安徽滁州琅琊经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103003, 341103, '龙蟠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103004, 341103, '银花街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103005, 341103, '同乐街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103100, 341103, '乌衣镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103101, 341103, '沙河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103102, 341103, '章广镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103103, 341103, '黄泥岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103104, 341103, '珠龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103105, 341103, '大柳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103106, 341103, '腰铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103107, 341103, '施集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103400, 341103, '南谯工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341103401, 341103, '滁州高教科创城管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122100, 341122, '新安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122101, 341122, '半塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122102, 341122, '水口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122103, 341122, '汊河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122104, 341122, '大英镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122105, 341122, '雷官镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122106, 341122, '施官镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122107, 341122, '舜山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122108, 341122, '三城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122109, 341122, '独山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122110, 341122, '张山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341122203, 341122, '杨郢乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124100, 341124, '襄河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124101, 341124, '古河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124102, 341124, '大墅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124103, 341124, '二郎口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124104, 341124, '武岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124105, 341124, '马厂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124106, 341124, '石沛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124107, 341124, '十字镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124108, 341124, '西王镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341124109, 341124, '六镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125100, 341125, '定城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125101, 341125, '炉桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125102, 341125, '永康镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125103, 341125, '吴圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125104, 341125, '朱湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125105, 341125, '张桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125106, 341125, '藕塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125107, 341125, '池河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125108, 341125, '连江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125109, 341125, '界牌集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125110, 341125, '仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125111, 341125, '三和集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125112, 341125, '西卅店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125113, 341125, '桑涧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125114, 341125, '蒋集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125115, 341125, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125200, 341125, '严桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125201, 341125, '拂晓乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125202, 341125, '能仁乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125203, 341125, '七里塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125204, 341125, '二龙回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125205, 341125, '范岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125400, 341125, '安徽定远经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125401, 341125, '定远盐化工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341125402, 341125, '凌家湖农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126100, 341126, '府城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126101, 341126, '临淮关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126102, 341126, '武店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126103, 341126, '西泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126104, 341126, '官塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126105, 341126, '刘府镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126106, 341126, '大庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126107, 341126, '殷涧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126108, 341126, '总铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126109, 341126, '红心镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126110, 341126, '板桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126111, 341126, '大溪河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126112, 341126, '小溪河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126113, 341126, '枣巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126201, 341126, '黄湾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126400, 341126, '安徽凤阳经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341126401, 341126, '安徽凤阳硅工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341171001, 341171, '大王街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341172001, 341172, '凤凰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341172002, 341172, '紫薇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341172401, 341172, '滁州市经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181003, 341181, '广陵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181004, 341181, '千秋街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181100, 341181, '铜城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181101, 341181, '汊涧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181102, 341181, '秦栏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181103, 341181, '大通镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181104, 341181, '杨村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181105, 341181, '石梁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181106, 341181, '金集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181107, 341181, '永丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181108, 341181, '仁和集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181109, 341181, '冶山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181110, 341181, '郑集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181111, 341181, '张铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181112, 341181, '新街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341181113, 341181, '万寿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182001, 341182, '明光街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182002, 341182, '明东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182003, 341182, '明南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182004, 341182, '明西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182100, 341182, '张八岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182101, 341182, '三界镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182102, 341182, '管店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182103, 341182, '自来桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182104, 341182, '涧溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182105, 341182, '石坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182106, 341182, '苏巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182107, 341182, '桥头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182108, 341182, '女山湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182109, 341182, '古沛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182110, 341182, '潘村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182111, 341182, '柳巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341182200, 341182, '泊岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202001, 341202, '鼓楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202002, 341202, '文峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202003, 341202, '清河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202004, 341202, '颍西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202005, 341202, '西湖景区街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202100, 341202, '王店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202101, 341202, '程集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202102, 341202, '三合镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202103, 341202, '西湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202104, 341202, '九龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202105, 341202, '三十里铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202106, 341202, '三塔集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202200, 341202, '马寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341202400, 341202, '安徽颍州经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203001, 341203, '河东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203002, 341203, '新华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203003, 341203, '向阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203100, 341203, '口孜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203101, 341203, '插花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203102, 341203, '袁寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203103, 341203, '枣庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203104, 341203, '老庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203105, 341203, '正午镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203106, 341203, '杨楼孜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203107, 341203, '新乌江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341203200, 341203, '冉庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341204001, 341204, '中市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341204002, 341204, '周棚街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341204100, 341204, '伍明镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341204101, 341204, '宁老庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341204102, 341204, '闻集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341204103, 341204, '行流镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221001, 341221, '城关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221002, 341221, '邢塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221003, 341221, '田桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221004, 341221, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221005, 341221, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221101, 341221, '杨桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221102, 341221, '鲖城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221103, 341221, '谭棚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221104, 341221, '老集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221105, 341221, '滑集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221106, 341221, '吕寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221107, 341221, '单桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221108, 341221, '长官镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221109, 341221, '宋集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221110, 341221, '张新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221111, 341221, '艾亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221112, 341221, '陈集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221113, 341221, '韦寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221114, 341221, '迎仙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221115, 341221, '瓦店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221116, 341221, '姜寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221117, 341221, '庙岔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221118, 341221, '黄岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221119, 341221, '白庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221120, 341221, '关庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221122, 341221, '高塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221203, 341221, '土陂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341221206, 341221, '陶老乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222100, 341222, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222101, 341222, '旧县镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222102, 341222, '税镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222103, 341222, '皮条孙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222104, 341222, '原墙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222105, 341222, '倪邱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222106, 341222, '李兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222107, 341222, '大新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222108, 341222, '肖口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222109, 341222, '关集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222110, 341222, '三塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222111, 341222, '双浮镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222112, 341222, '蔡庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222113, 341222, '三堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222114, 341222, '苗老集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222115, 341222, '赵庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222116, 341222, '宫集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222117, 341222, '坟台镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222118, 341222, '洪山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222119, 341222, '清浅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222120, 341222, '五星镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222121, 341222, '高庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222122, 341222, '桑营镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222123, 341222, '大庙集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222124, 341222, '阮桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222125, 341222, '双庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222126, 341222, '胡总镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222127, 341222, '郭庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222128, 341222, '二郎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222129, 341222, '马集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222201, 341222, '赵集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341222400, 341222, '开发区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225101, 341225, '方集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225102, 341225, '中岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225103, 341225, '柴集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225104, 341225, '新村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225106, 341225, '朱寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225107, 341225, '柳沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225108, 341225, '赵集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225109, 341225, '田集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225110, 341225, '苗集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225111, 341225, '黄岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225112, 341225, '焦陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225113, 341225, '张寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225114, 341225, '王堰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225115, 341225, '地城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225116, 341225, '洪河桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225117, 341225, '王家坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225118, 341225, '王化镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225119, 341225, '曹集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225120, 341225, '鹿城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225121, 341225, '会龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225200, 341225, '王店孜乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225201, 341225, '许堂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225204, 341225, '段郢乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225205, 341225, '公桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225206, 341225, '龙王乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225207, 341225, '于集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225208, 341225, '老观乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225209, 341225, '郜台乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341225401, 341225, '安徽阜南经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226100, 341226, '慎城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226101, 341226, '谢桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226102, 341226, '南照镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226103, 341226, '杨湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226104, 341226, '江口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226105, 341226, '润河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226106, 341226, '新集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226107, 341226, '六十铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226108, 341226, '耿棚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226109, 341226, '半岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226110, 341226, '王岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226111, 341226, '夏桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226112, 341226, '江店孜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226113, 341226, '陈桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226114, 341226, '黄桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226115, 341226, '八里河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226116, 341226, '迪沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226117, 341226, '西三十铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226118, 341226, '红星镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226119, 341226, '十八里铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226120, 341226, '鲁口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226121, 341226, '古城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226200, 341226, '建颍乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226201, 341226, '五十铺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226202, 341226, '盛堂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226203, 341226, '关屯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226204, 341226, '垂岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226205, 341226, '赛涧回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226206, 341226, '刘集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341226207, 341226, '黄坝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341271100, 341271, '袁集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341272001, 341272, '阜阳开发区京九街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282001, 341282, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282002, 341282, '西城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282003, 341282, '颍南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282100, 341282, '光武镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282101, 341282, '泉阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282102, 341282, '芦村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282103, 341282, '新马集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282104, 341282, '大黄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282105, 341282, '田营镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282106, 341282, '陶庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282107, 341282, '王集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282108, 341282, '砖集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282109, 341282, '顾集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282110, 341282, '代桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282111, 341282, '舒庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282200, 341282, '邴集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282201, 341282, '靳寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341282202, 341282, '任寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302001, 341302, '埇桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302002, 341302, '沱河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302003, 341302, '道东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302004, 341302, '东关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302005, 341302, '三里湾街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302006, 341302, '南关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302007, 341302, '西关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302008, 341302, '北关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302009, 341302, '汴河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302010, 341302, '三八街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302011, 341302, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302100, 341302, '符离镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302101, 341302, '芦岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302102, 341302, '朱仙庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302103, 341302, '褚兰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302104, 341302, '曹村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302105, 341302, '夹沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302106, 341302, '栏杆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302107, 341302, '时村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302108, 341302, '永安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302109, 341302, '灰古镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302110, 341302, '大店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302111, 341302, '大泽乡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302112, 341302, '桃园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302113, 341302, '蕲县镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302114, 341302, '大营镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302115, 341302, '顺河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302116, 341302, '蒿沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302200, 341302, '杨庄乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302201, 341302, '支河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302202, 341302, '解集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302203, 341302, '桃沟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302207, 341302, '永镇乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302208, 341302, '西二铺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302209, 341302, '北杨寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302210, 341302, '苗安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302402, 341302, '宿州高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341302403, 341302, '宿州埇桥经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321100, 341321, '砀城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321101, 341321, '赵屯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321102, 341321, '李庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321103, 341321, '唐寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321104, 341321, '葛集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321105, 341321, '周寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321106, 341321, '玄庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321107, 341321, '官庄坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321108, 341321, '曹庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321109, 341321, '关帝庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321110, 341321, '朱楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321111, 341321, '良梨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321112, 341321, '程庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321400, 341321, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321401, 341321, '薛楼板材加工园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341321402, 341321, '高铁新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322100, 341322, '龙城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322101, 341322, '黄口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322102, 341322, '杨楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322103, 341322, '闫集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322104, 341322, '新庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322105, 341322, '刘套镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322106, 341322, '马井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322107, 341322, '大屯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322108, 341322, '赵庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322109, 341322, '杜楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322110, 341322, '丁里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322111, 341322, '王寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322112, 341322, '祖楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322113, 341322, '青龙集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322114, 341322, '张庄寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322115, 341322, '永堌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322116, 341322, '白土镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322117, 341322, '官桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322118, 341322, '圣泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322119, 341322, '庄里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322201, 341322, '酒店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322202, 341322, '孙圩子乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322204, 341322, '石林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341322400, 341322, '萧县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323100, 341323, '灵城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323101, 341323, '韦集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323102, 341323, '黄湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323103, 341323, '娄庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323104, 341323, '杨疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323105, 341323, '尹集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323106, 341323, '浍沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323107, 341323, '游集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323108, 341323, '下楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323109, 341323, '朝阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323110, 341323, '渔沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323111, 341323, '高楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323112, 341323, '冯庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323113, 341323, '禅堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323114, 341323, '虞姬镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323115, 341323, '向阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323201, 341323, '朱集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323202, 341323, '大路乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323203, 341323, '大庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341323400, 341323, '灵璧县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324100, 341324, '泗城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324101, 341324, '墩集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324102, 341324, '丁湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324103, 341324, '草沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324104, 341324, '长沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324105, 341324, '黄圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324106, 341324, '大庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324107, 341324, '山头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324108, 341324, '刘圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324109, 341324, '黑塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324110, 341324, '草庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324111, 341324, '屏山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324112, 341324, '大路口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324113, 341324, '大杨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324114, 341324, '瓦坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341324400, 341324, '泗县开发区管委会(泗县当涂现代产业园)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341371400, 341371, '宿州东部新城行政管理区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341372001, 341372, '金海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341372402, 341372, '鞋城行政区域', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502001, 341502, '中市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502002, 341502, '东市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502003, 341502, '三里桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502004, 341502, '望城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502005, 341502, '清水河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502100, 341502, '木厂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502101, 341502, '马头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502102, 341502, '东桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502103, 341502, '张店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502104, 341502, '毛坦厂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502105, 341502, '东河口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502106, 341502, '双河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502107, 341502, '施桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502108, 341502, '孙岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502109, 341502, '三十铺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502110, 341502, '椿树镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502200, 341502, '城北乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502201, 341502, '翁墩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502202, 341502, '淠东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502203, 341502, '中店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502204, 341502, '横塘岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502205, 341502, '先生店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341502400, 341502, '六安经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503001, 341503, '鼓楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503002, 341503, '西市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503003, 341503, '小华山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503100, 341503, '苏埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503101, 341503, '韩摆渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503102, 341503, '新安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503103, 341503, '顺河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503104, 341503, '独山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503105, 341503, '石婆店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503106, 341503, '城南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503107, 341503, '丁集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503108, 341503, '固镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503109, 341503, '徐集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503110, 341503, '分路口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503111, 341503, '江家店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503200, 341503, '单王乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503201, 341503, '青山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503202, 341503, '石板冲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503203, 341503, '西河口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503204, 341503, '平桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503205, 341503, '罗集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503206, 341503, '狮子岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341503400, 341503, '六安市裕安区经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341504001, 341504, '史河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341504002, 341504, '平岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341504102, 341504, '三元镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341504103, 341504, '洪集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341504104, 341504, '姚李镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341504200, 341504, '孙岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522100, 341522, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522101, 341522, '河口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522102, 341522, '周集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522103, 341522, '临水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522104, 341522, '新店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522105, 341522, '石店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522106, 341522, '马店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522107, 341522, '孟集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522108, 341522, '花园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522109, 341522, '扈胡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522110, 341522, '长集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522113, 341522, '乌龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522114, 341522, '高塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522115, 341522, '龙潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522116, 341522, '岔路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522117, 341522, '冯井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522118, 341522, '众兴集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522119, 341522, '夏店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522120, 341522, '曹庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522123, 341522, '范桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522124, 341522, '潘集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522126, 341522, '彭塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522127, 341522, '宋店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522201, 341522, '王截流乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522203, 341522, '临淮岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522204, 341522, '城西湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522206, 341522, '三流乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522207, 341522, '邵岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522208, 341522, '白莲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522210, 341522, '冯瓴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522400, 341522, '安徽霍邱经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341522500, 341522, '水产局管辖村', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523100, 341523, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523101, 341523, '晓天镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523102, 341523, '桃溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523103, 341523, '万佛湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523104, 341523, '千人桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523105, 341523, '百神庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523106, 341523, '杭埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523107, 341523, '舒茶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523108, 341523, '南港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523109, 341523, '干汊河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523110, 341523, '张母桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523111, 341523, '五显镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523112, 341523, '山七镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523113, 341523, '河棚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523114, 341523, '汤池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523200, 341523, '春秋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523201, 341523, '柏林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523202, 341523, '棠树乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523203, 341523, '阙店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523204, 341523, '高峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523205, 341523, '庐镇乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341523400, 341523, '舒城县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524100, 341524, '梅山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524101, 341524, '麻埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524102, 341524, '青山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524103, 341524, '燕子河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524104, 341524, '天堂寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524105, 341524, '古碑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524106, 341524, '吴家店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524107, 341524, '斑竹园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524108, 341524, '汤家汇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524109, 341524, '南溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524110, 341524, '双河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524111, 341524, '白塔畈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524201, 341524, '张冲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524202, 341524, '油坊店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524203, 341524, '长岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524204, 341524, '槐树湾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524205, 341524, '花石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524206, 341524, '沙河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524207, 341524, '桃岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524208, 341524, '果子园乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524209, 341524, '关庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524211, 341524, '全军乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524214, 341524, '铁冲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341524400, 341524, '现代产业园(经济开发区)', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525100, 341525, '衡山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525101, 341525, '佛子岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525102, 341525, '下符桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525103, 341525, '但家庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525104, 341525, '与儿街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525105, 341525, '黑石渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525106, 341525, '诸佛庵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525107, 341525, '落儿岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525108, 341525, '磨子潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525109, 341525, '大化坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525110, 341525, '漫水河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525111, 341525, '上土市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525112, 341525, '单龙寺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525201, 341525, '东西溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525202, 341525, '太平畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525203, 341525, '太阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341525400, 341525, '经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602001, 341602, '花戏楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602002, 341602, '薛阁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602003, 341602, '汤陵街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602100, 341602, '古井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602101, 341602, '芦庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602102, 341602, '华佗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602103, 341602, '魏岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602104, 341602, '牛集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602105, 341602, '颜集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602106, 341602, '五马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602107, 341602, '十八里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602108, 341602, '谯东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602109, 341602, '十九里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602110, 341602, '沙土镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602111, 341602, '观堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602112, 341602, '大杨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602113, 341602, '城父镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602114, 341602, '十河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602115, 341602, '双沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602116, 341602, '淝河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602117, 341602, '古城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602118, 341602, '龙扬镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602119, 341602, '立德镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602200, 341602, '张店乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602201, 341602, '赵桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602400, 341602, '亳州市经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341602401, 341602, '谯城经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621001, 341621, '城关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621003, 341621, '星园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621004, 341621, '天静宫街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621103, 341621, '西阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621104, 341621, '涡南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621105, 341621, '楚店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621106, 341621, '高公镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621108, 341621, '高炉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621109, 341621, '曹市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621110, 341621, '青疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621111, 341621, '石弓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621112, 341621, '龙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621113, 341621, '义门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621114, 341621, '新兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621115, 341621, '临湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621116, 341621, '丹城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621117, 341621, '马店集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621118, 341621, '花沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621119, 341621, '店集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621120, 341621, '陈大镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621121, 341621, '牌坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621122, 341621, '公吉寺镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621123, 341621, '标里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341621402, 341621, '安徽涡阳经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622001, 341622, '漆园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622002, 341622, '庄周街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622003, 341622, '城关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622101, 341622, '双涧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622102, 341622, '小涧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622104, 341622, '坛城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622106, 341622, '许疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622107, 341622, '板桥集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622108, 341622, '马集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622109, 341622, '岳坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622110, 341622, '立仓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622111, 341622, '楚村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622112, 341622, '乐土镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622113, 341622, '三义镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622114, 341622, '篱笆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622201, 341622, '王集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622202, 341622, '小辛集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622400, 341622, '安徽蒙城经济开发区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341622401, 341622, '淮北矿业集团有限责任公司许疃煤矿', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623100, 341623, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623101, 341623, '阚疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623102, 341623, '张村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623103, 341623, '江集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623104, 341623, '旧城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623105, 341623, '西潘楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623106, 341623, '孙集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623107, 341623, '汝集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623108, 341623, '巩店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623109, 341623, '王人镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623110, 341623, '王市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623111, 341623, '永兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623112, 341623, '马店孜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623113, 341623, '大李集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623114, 341623, '胡集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623115, 341623, '展沟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623116, 341623, '程家集镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623117, 341623, '中疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623118, 341623, '望疃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623119, 341623, '城北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623203, 341623, '纪王场乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623204, 341623, '孙庙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623205, 341623, '新张集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341623401, 341623, '利辛县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702001, 341702, '池阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702002, 341702, '秋浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702003, 341702, '里山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702004, 341702, '江口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702005, 341702, '马衙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702006, 341702, '墩上街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702007, 341702, '梅龙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702008, 341702, '秋江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702009, 341702, '杏花村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702010, 341702, '清风街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702011, 341702, '清溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702100, 341702, '殷汇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702101, 341702, '牛头山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702102, 341702, '涓桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702103, 341702, '梅街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702104, 341702, '梅村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702105, 341702, '唐田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702106, 341702, '牌楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702107, 341702, '乌沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702108, 341702, '棠溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702400, 341702, '安徽池州高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702401, 341702, '池州经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702402, 341702, '平天湖风景区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702404, 341702, '皖江江南新兴产业集中区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702405, 341702, '池州承接产业转移集中示范园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341702406, 341702, '池州市杏花村文化旅游区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721100, 341721, '尧渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721101, 341721, '东流镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721102, 341721, '大渡口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721103, 341721, '胜利镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721104, 341721, '张溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721105, 341721, '洋湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721106, 341721, '葛公镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721107, 341721, '香隅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721108, 341721, '官港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721109, 341721, '昭潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721110, 341721, '龙泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721111, 341721, '泥溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721200, 341721, '花园乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721201, 341721, '木塔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721202, 341721, '青山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721400, 341721, '东至经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341721401, 341721, '大渡口经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722100, 341722, '仁里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722101, 341722, '七都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722102, 341722, '仙寓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722103, 341722, '丁香镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722104, 341722, '小河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722105, 341722, '横渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722200, 341722, '大演乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722201, 341722, '矶滩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341722401, 341722, '池州经济技术开发区石台工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723100, 341723, '蓉城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723101, 341723, '木镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723102, 341723, '庙前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723103, 341723, '陵阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723104, 341723, '新河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723105, 341723, '丁桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723106, 341723, '朱备镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723107, 341723, '杨田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723108, 341723, '九华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723109, 341723, '酉华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723200, 341723, '乔木乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723202, 341723, '杜村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723203, 341723, '九华乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341723400, 341723, '青阳县开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802001, 341802, '西林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802002, 341802, '澄江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802003, 341802, '鳌峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802004, 341802, '济川街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802005, 341802, '敬亭山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802006, 341802, '双桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802009, 341802, '向阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802100, 341802, '水阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802101, 341802, '狸桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802102, 341802, '沈村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802103, 341802, '古泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802104, 341802, '洪林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802105, 341802, '寒亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802106, 341802, '文昌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802107, 341802, '孙埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802109, 341802, '杨柳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802110, 341802, '水东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802111, 341802, '新田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802112, 341802, '周王镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802113, 341802, '溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802200, 341802, '朱桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802201, 341802, '养贤乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802202, 341802, '五星乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341802204, 341802, '黄渡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821100, 341821, '建平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821101, 341821, '十字镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821102, 341821, '新发镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821103, 341821, '涛城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821105, 341821, '梅渚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821107, 341821, '毕桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821108, 341821, '飞鲤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821109, 341821, '凌笪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821110, 341821, '姚村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821400, 341821, '郎溪经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821500, 341821, '安徽省国营十字铺茶场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341821501, 341821, '上海市白茅岭监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823100, 341823, '泾川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823101, 341823, '茂林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823102, 341823, '榔桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823103, 341823, '桃花潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823104, 341823, '琴溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823105, 341823, '蔡村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823106, 341823, '云岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823107, 341823, '黄村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823108, 341823, '丁家桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823200, 341823, '汀溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341823201, 341823, '昌桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824100, 341824, '华阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824101, 341824, '临溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824102, 341824, '长安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824103, 341824, '上庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824104, 341824, '扬溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824105, 341824, '伏岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824106, 341824, '金沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824107, 341824, '瀛洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824201, 341824, '板桥头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824202, 341824, '家朋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824203, 341824, '荆州乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341824400, 341824, '生态工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825100, 341825, '旌阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825101, 341825, '蔡家桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825102, 341825, '三溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825103, 341825, '庙首镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825104, 341825, '白地镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825105, 341825, '俞村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825106, 341825, '兴隆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825107, 341825, '孙村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825108, 341825, '版书镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341825109, 341825, '云乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341871001, 341871, '天湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341871002, 341871, '飞彩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341871003, 341871, '金坝街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881001, 341881, '西津街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881002, 341881, '南山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881003, 341881, '河沥溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881004, 341881, '汪溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881005, 341881, '竹峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881100, 341881, '港口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881101, 341881, '梅林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881102, 341881, '中溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881103, 341881, '宁墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881104, 341881, '仙霞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881105, 341881, '甲路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881106, 341881, '胡乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881107, 341881, '霞西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881200, 341881, '云梯畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881201, 341881, '南极乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881202, 341881, '万家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881203, 341881, '青龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881204, 341881, '方塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341881400, 341881, '经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882001, 341882, '桐汭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882002, 341882, '祠山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882003, 341882, '升平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882100, 341882, '桃州镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882101, 341882, '柏垫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882102, 341882, '誓节镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882103, 341882, '邱村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882104, 341882, '新杭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882105, 341882, '杨滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882200, 341882, '卢村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882201, 341882, '东亭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882202, 341882, '四合乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (341882400, 341882, '广德经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102001, 350102, '鼓东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102002, 350102, '鼓西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102003, 350102, '温泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102004, 350102, '东街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102005, 350102, '南街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102006, 350102, '安泰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102007, 350102, '华大街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102008, 350102, '水部街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102009, 350102, '五凤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350102100, 350102, '洪山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103001, 350103, '瀛洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103002, 350103, '后洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103003, 350103, '义洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103004, 350103, '新港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103005, 350103, '上海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103007, 350103, '苍霞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103009, 350103, '茶亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103010, 350103, '洋中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103011, 350103, '鳌峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350103012, 350103, '宁化街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104001, 350104, '仓前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104002, 350104, '东升街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104003, 350104, '对湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104004, 350104, '临江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104005, 350104, '三叉街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104006, 350104, '上渡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104007, 350104, '下渡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104008, 350104, '金山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104100, 350104, '仓山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104101, 350104, '城门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104102, 350104, '盖山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104103, 350104, '建新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104104, 350104, '螺洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350104400, 350104, '红星农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350105001, 350105, '罗星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350105100, 350105, '马尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350105101, 350105, '亭江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350105102, 350105, '琅岐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111001, 350111, '茶园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111002, 350111, '王庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111003, 350111, '象园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111100, 350111, '鼓山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111101, 350111, '新店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111102, 350111, '岳峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111103, 350111, '宦溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111201, 350111, '寿山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350111202, 350111, '日溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112001, 350112, '吴航街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112002, 350112, '航城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112003, 350112, '营前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112004, 350112, '漳港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112005, 350112, '文武砂街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112102, 350112, '首占镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112103, 350112, '玉田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112104, 350112, '松下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112105, 350112, '江田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112106, 350112, '古槐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112108, 350112, '鹤上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112110, 350112, '湖南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112111, 350112, '金峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112112, 350112, '文岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112113, 350112, '梅花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112114, 350112, '潭头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112200, 350112, '罗联乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350112201, 350112, '猴屿乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121001, 350121, '甘蔗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121101, 350121, '白沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121102, 350121, '南屿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121103, 350121, '尚干镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121104, 350121, '祥谦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121105, 350121, '青口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121106, 350121, '南通镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121107, 350121, '上街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121108, 350121, '荆溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121200, 350121, '竹岐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121201, 350121, '鸿尾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121202, 350121, '洋里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121203, 350121, '大湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121204, 350121, '廷坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121206, 350121, '小箬乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350121400, 350121, '江洋农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122100, 350122, '凤城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122101, 350122, '敖江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122102, 350122, '东岱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122103, 350122, '琯头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122104, 350122, '晓澳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122105, 350122, '东湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122106, 350122, '丹阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122107, 350122, '长龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122108, 350122, '透堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122109, 350122, '马鼻镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122110, 350122, '官坂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122111, 350122, '筱埕镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122112, 350122, '黄岐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122113, 350122, '苔菉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122114, 350122, '浦口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122115, 350122, '坑园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122116, 350122, '潘渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122117, 350122, '江南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122118, 350122, '下宫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122202, 350122, '蓼沿乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122203, 350122, '安凯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122205, 350122, '小沧畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350122400, 350122, '马祖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123100, 350123, '凤山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123101, 350123, '松山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123102, 350123, '起步镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123103, 350123, '中房镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123104, 350123, '飞竹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123105, 350123, '鉴江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123200, 350123, '白塔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123201, 350123, '洪洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123202, 350123, '西兰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123203, 350123, '霍口畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123204, 350123, '碧里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350123500, 350123, '罗源湾', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124100, 350124, '梅城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124101, 350124, '梅溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124102, 350124, '白樟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124103, 350124, '金沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124104, 350124, '白中镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124105, 350124, '池园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124106, 350124, '坂东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124107, 350124, '塔庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124108, 350124, '省璜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124109, 350124, '雄江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124110, 350124, '东桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124200, 350124, '云龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124201, 350124, '上莲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124204, 350124, '三溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124205, 350124, '桔林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350124206, 350124, '下祝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125100, 350125, '樟城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125101, 350125, '嵩口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125102, 350125, '梧桐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125103, 350125, '葛岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125104, 350125, '城峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125105, 350125, '清凉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125106, 350125, '长庆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125107, 350125, '同安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125108, 350125, '大洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125200, 350125, '塘前乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125201, 350125, '富泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125202, 350125, '岭路乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125203, 350125, '赤锡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125204, 350125, '洑口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125205, 350125, '盖洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125206, 350125, '东洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125207, 350125, '霞拔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125208, 350125, '盘谷乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125209, 350125, '红星乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125210, 350125, '白云乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350125211, 350125, '丹云乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128001, 350128, '海坛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128107, 350128, '金井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128108, 350128, '君山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128109, 350128, '苏平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128201, 350128, '屿头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128205, 350128, '东庠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350128207, 350128, '南海乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181002, 350181, '玉屏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181003, 350181, '龙山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181004, 350181, '龙江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181005, 350181, '宏路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181006, 350181, '石竹街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181007, 350181, '音西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181008, 350181, '阳下街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181103, 350181, '海口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181104, 350181, '城头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181105, 350181, '南岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181106, 350181, '龙田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181107, 350181, '江镜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181108, 350181, '港头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181109, 350181, '高山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181110, 350181, '沙埔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181111, 350181, '三山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181112, 350181, '东瀚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181113, 350181, '渔溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181114, 350181, '上迳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181115, 350181, '新厝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181116, 350181, '江阴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181117, 350181, '东张镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181118, 350181, '镜洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181119, 350181, '一都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181400, 350181, '江镜华侨', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350181401, 350181, '东阁华侨', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203001, 350203, '厦港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203003, 350203, '中华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203005, 350203, '滨海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203006, 350203, '鹭江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203007, 350203, '开元街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203008, 350203, '梧村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203009, 350203, '筼筜街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203010, 350203, '莲前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203011, 350203, '嘉莲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350203012, 350203, '鼓浪屿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350205001, 350205, '海沧街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350205002, 350205, '新阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350205003, 350205, '嵩屿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350205004, 350205, '东孚街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350205403, 350205, '天竺山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350205407, 350205, '厦门海沧保税港区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206001, 350206, '湖里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206002, 350206, '殿前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206003, 350206, '禾山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206004, 350206, '江头街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206005, 350206, '金山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206405, 350206, '火炬高技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350206406, 350206, '象屿保税区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211001, 350211, '集美街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211002, 350211, '侨英街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211003, 350211, '杏林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211004, 350211, '杏滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211102, 350211, '灌口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211103, 350211, '后溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211401, 350211, '第二农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211402, 350211, '省天马种猪场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211403, 350211, '天马华侨农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350211404, 350211, '坂头防护林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212001, 350212, '大同街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212002, 350212, '祥平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212105, 350212, '莲花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212106, 350212, '新民镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212107, 350212, '洪塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212108, 350212, '西柯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212109, 350212, '汀溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350212110, 350212, '五显镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213001, 350213, '大嶝街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213002, 350213, '马巷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213003, 350213, '新店街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213004, 350213, '凤翔街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213005, 350213, '民安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213006, 350213, '香山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213007, 350213, '金海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213103, 350213, '新圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213111, 350213, '内厝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350213404, 350213, '大帽山农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302001, 350302, '龙桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302002, 350302, '凤凰山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302003, 350302, '霞林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302100, 350302, '常太镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302101, 350302, '华亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302102, 350302, '灵川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350302103, 350302, '东海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303001, 350303, '涵东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303002, 350303, '涵西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303100, 350303, '三江口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303101, 350303, '白塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303102, 350303, '国欢镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303103, 350303, '梧塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303104, 350303, '江口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303105, 350303, '萩芦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303106, 350303, '白沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303107, 350303, '庄边镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303108, 350303, '新县镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303200, 350303, '大洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350303500, 350303, '赤港开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350304001, 350304, '镇海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350304002, 350304, '拱辰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350304100, 350304, '西天尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350304101, 350304, '黄石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350304102, 350304, '新度镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350304103, 350304, '北高镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305100, 350305, '笏石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305101, 350305, '东庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305102, 350305, '忠门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305103, 350305, '东埔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305104, 350305, '东峤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305105, 350305, '埭头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305106, 350305, '平海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305107, 350305, '南日镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305108, 350305, '湄洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305109, 350305, '山亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305110, 350305, '月塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305400, 350305, '前沁农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350305401, 350305, '后海管理局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322001, 350322, '鲤城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322100, 350322, '枫亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322101, 350322, '榜头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322102, 350322, '郊尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322103, 350322, '度尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322104, 350322, '鲤南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322105, 350322, '赖店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322106, 350322, '盖尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322107, 350322, '园庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322108, 350322, '大济镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322109, 350322, '龙华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322110, 350322, '钟山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322111, 350322, '游洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322200, 350322, '西苑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322201, 350322, '石苍乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322202, 350322, '社硎乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322203, 350322, '书峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350322204, 350322, '菜溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404001, 350404, '列东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404002, 350404, '列西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404003, 350404, '徐碧街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404004, 350404, '城关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404005, 350404, '白沙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404006, 350404, '富兴堡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404007, 350404, '荆西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404100, 350404, '陈大镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404101, 350404, '洋溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404102, 350404, '莘口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404103, 350404, '岩前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404200, 350404, '中村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350404500, 350404, '福建三元经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405001, 350405, '凤岗街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405002, 350405, '虬江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405100, 350405, '青州镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405101, 350405, '夏茂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405102, 350405, '高砂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405103, 350405, '高桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405104, 350405, '富口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405105, 350405, '大洛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405200, 350405, '南霞乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405201, 350405, '南阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405202, 350405, '郑湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405203, 350405, '湖源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405400, 350405, '金沙园开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405401, 350405, '金古园开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405402, 350405, '青山纸业工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350405403, 350405, '海西物流园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421100, 350421, '雪峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421101, 350421, '盖洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421102, 350421, '胡坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421103, 350421, '瀚仙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421200, 350421, '城关乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421201, 350421, '沙溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421202, 350421, '夏阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421203, 350421, '枫溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350421204, 350421, '夏坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423100, 350423, '龙津镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423101, 350423, '嵩溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423102, 350423, '嵩口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423103, 350423, '灵地镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423104, 350423, '长校镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423105, 350423, '赖坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423106, 350423, '林畲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423201, 350423, '温郊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423203, 350423, '田源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423204, 350423, '沙芜乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423206, 350423, '余朋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423208, 350423, '李家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350423209, 350423, '里田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424100, 350424, '翠江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424101, 350424, '泉上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424102, 350424, '湖村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424103, 350424, '石壁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424104, 350424, '曹坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424105, 350424, '安远镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424106, 350424, '淮土镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424107, 350424, '安乐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424108, 350424, '水茜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424109, 350424, '城郊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424110, 350424, '城南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424202, 350424, '济村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424204, 350424, '方田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424207, 350424, '治平畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424208, 350424, '中沙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350424209, 350424, '河龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425100, 350425, '均溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425101, 350425, '石牌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425102, 350425, '上京镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425103, 350425, '广平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425104, 350425, '桃源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425105, 350425, '太华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425106, 350425, '建设镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425107, 350425, '奇韬镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425108, 350425, '华兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425109, 350425, '吴山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425110, 350425, '文江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425111, 350425, '梅山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425201, 350425, '屏山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425203, 350425, '济阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425204, 350425, '武陵乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425205, 350425, '谢洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425208, 350425, '湖美乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425209, 350425, '前坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350425400, 350425, '东风农场生活区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426100, 350426, '城关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426101, 350426, '梅仙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426102, 350426, '西滨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426103, 350426, '洋中镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426104, 350426, '新阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426105, 350426, '管前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426106, 350426, '西城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426107, 350426, '尤溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426108, 350426, '坂面镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426109, 350426, '联合镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426110, 350426, '中仙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426201, 350426, '汤川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426202, 350426, '溪尾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426204, 350426, '台溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350426206, 350426, '八字桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428100, 350428, '古镛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428101, 350428, '万安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428102, 350428, '高唐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428103, 350428, '白莲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428104, 350428, '黄潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428105, 350428, '水南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428106, 350428, '光明镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428107, 350428, '南口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428201, 350428, '漠源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428203, 350428, '万全乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428204, 350428, '安仁乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428205, 350428, '大源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350428206, 350428, '余坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429100, 350429, '杉城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429101, 350429, '朱口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429103, 350429, '下渠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429200, 350429, '新桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429201, 350429, '上青乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429202, 350429, '大田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429203, 350429, '梅口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429205, 350429, '开善乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350429208, 350429, '大龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430100, 350430, '濉溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430101, 350430, '里心镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430102, 350430, '溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430103, 350430, '均口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430201, 350430, '伊家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430202, 350430, '黄坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430203, 350430, '溪源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430204, 350430, '客坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430205, 350430, '黄埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350430400, 350430, '福建建宁经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481001, 350481, '燕东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481002, 350481, '燕西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481003, 350481, '燕南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481004, 350481, '燕北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481100, 350481, '西洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481101, 350481, '贡川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481102, 350481, '安砂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481103, 350481, '小陶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481104, 350481, '大湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481105, 350481, '曹远镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481106, 350481, '洪田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481107, 350481, '槐南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481202, 350481, '上坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481203, 350481, '罗坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350481204, 350481, '青水畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502001, 350502, '海滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502002, 350502, '临江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502003, 350502, '鲤中街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502004, 350502, '开元街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502005, 350502, '浮桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502006, 350502, '江南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502007, 350502, '金龙街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502008, 350502, '常泰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350502400, 350502, '清濛经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503001, 350503, '东湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503002, 350503, '丰泽街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503003, 350503, '泉秀街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503004, 350503, '清源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503005, 350503, '华大街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503006, 350503, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503007, 350503, '东海街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350503008, 350503, '北峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350504001, 350504, '万安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350504002, 350504, '双阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350504100, 350504, '罗溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350504101, 350504, '马甲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350504102, 350504, '河市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350504200, 350504, '虹山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505001, 350505, '山腰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505100, 350505, '南埔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505101, 350505, '界山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505102, 350505, '后龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505103, 350505, '峰尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505105, 350505, '前黄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505106, 350505, '涂岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350505400, 350505, '石化工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521100, 350521, '螺城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521101, 350521, '螺阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521102, 350521, '黄塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521103, 350521, '紫山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521104, 350521, '洛阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521105, 350521, '东园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521106, 350521, '张坂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521107, 350521, '崇武镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521108, 350521, '山霞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521109, 350521, '涂寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521110, 350521, '东岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521111, 350521, '东桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521112, 350521, '净峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521113, 350521, '小岞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521114, 350521, '辋川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521200, 350521, '百崎回族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521400, 350521, '城南工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521401, 350521, '惠南工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521402, 350521, '泉惠石化工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350521403, 350521, '惠东工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524100, 350524, '凤城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524101, 350524, '蓬莱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524102, 350524, '湖头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524103, 350524, '官桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524104, 350524, '剑斗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524105, 350524, '城厢镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524106, 350524, '金谷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524107, 350524, '龙门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524108, 350524, '虎邱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524109, 350524, '芦田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524110, 350524, '感德镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524111, 350524, '魁斗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524112, 350524, '西坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524113, 350524, '参内镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524114, 350524, '长卿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524201, 350524, '白濑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524202, 350524, '湖上乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524203, 350524, '尚卿乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524204, 350524, '大坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524205, 350524, '龙涓乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524207, 350524, '蓝田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524208, 350524, '祥华乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524209, 350524, '桃舟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350524210, 350524, '福田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525100, 350525, '桃城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525101, 350525, '五里街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525102, 350525, '一都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525103, 350525, '下洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525104, 350525, '蓬壶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525105, 350525, '达埔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525106, 350525, '吾峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525107, 350525, '石鼓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525108, 350525, '岵山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525109, 350525, '东平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525110, 350525, '湖洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525111, 350525, '坑仔口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525112, 350525, '玉斗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525113, 350525, '锦斗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525114, 350525, '东关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525115, 350525, '桂洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525116, 350525, '苏坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525117, 350525, '仙夹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525200, 350525, '横口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525201, 350525, '呈祥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525202, 350525, '介福乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350525204, 350525, '外山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526100, 350526, '浔中镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526101, 350526, '龙浔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526102, 350526, '三班镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526103, 350526, '龙门滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526104, 350526, '雷峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526105, 350526, '南埕镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526106, 350526, '水口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526107, 350526, '赤水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526108, 350526, '上涌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526109, 350526, '葛坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526110, 350526, '盖德镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526111, 350526, '美湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526200, 350526, '杨梅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526202, 350526, '汤头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526204, 350526, '桂阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526206, 350526, '国宝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526208, 350526, '大铭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350526209, 350526, '春美乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581001, 350581, '湖滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581002, 350581, '凤里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581100, 350581, '灵秀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581101, 350581, '宝盖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581102, 350581, '蚶江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581103, 350581, '祥芝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581104, 350581, '鸿山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581105, 350581, '锦尚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350581106, 350581, '永宁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582001, 350582, '青阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582002, 350582, '梅岭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582003, 350582, '西园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582004, 350582, '罗山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582005, 350582, '新塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582006, 350582, '灵源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582101, 350582, '安海镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582102, 350582, '磁灶镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582103, 350582, '陈埭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582104, 350582, '东石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582105, 350582, '深沪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582106, 350582, '金井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582107, 350582, '池店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582109, 350582, '内坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582110, 350582, '龙湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582111, 350582, '永和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582112, 350582, '英林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582113, 350582, '紫帽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582114, 350582, '西滨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582400, 350582, '安平开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582401, 350582, '晋江市经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350582402, 350582, '泉州出口加工区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583001, 350583, '溪美街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583002, 350583, '柳城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583003, 350583, '美林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583100, 350583, '省新镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583101, 350583, '仑苍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583102, 350583, '东田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583103, 350583, '英都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583104, 350583, '翔云镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583105, 350583, '金淘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583106, 350583, '诗山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583107, 350583, '蓬华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583108, 350583, '码头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583109, 350583, '九都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583110, 350583, '乐峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583111, 350583, '罗东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583112, 350583, '梅山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583113, 350583, '洪濑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583114, 350583, '洪梅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583115, 350583, '康美镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583116, 350583, '丰州镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583117, 350583, '霞美镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583118, 350583, '官桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583119, 350583, '水头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583120, 350583, '石井镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583200, 350583, '眉山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583201, 350583, '向阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350583400, 350583, '雪峰管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602001, 350602, '东铺头街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602002, 350602, '西桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602003, 350602, '新桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602004, 350602, '巷口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602005, 350602, '南坑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602006, 350602, '通北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602007, 350602, '芝山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602008, 350602, '石亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602100, 350602, '浦南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602101, 350602, '天宝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602400, 350602, '芗城区奶牛场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350602402, 350602, '天宝林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603001, 350603, '步文街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603002, 350603, '碧湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603003, 350603, '蓝田街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603004, 350603, '朝阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603005, 350603, '景山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603103, 350603, '郭坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350603500, 350603, '蓝田开发区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604001, 350604, '石码街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604100, 350604, '海澄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604101, 350604, '角美镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604102, 350604, '白水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604103, 350604, '浮宫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604104, 350604, '程溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604105, 350604, '港尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604106, 350604, '九湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604107, 350604, '颜厝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604108, 350604, '榜山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604109, 350604, '紫泥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604110, 350604, '东园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604200, 350604, '东泗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604201, 350604, '隆教畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604400, 350604, '双第华侨农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604401, 350604, '九龙岭林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604402, 350604, '程溪农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604403, 350604, '良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604405, 350604, '林下林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350604501, 350604, '招商局漳州开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605100, 350605, '武安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605101, 350605, '岩溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605102, 350605, '陈巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605103, 350605, '枋洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605200, 350605, '坂里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605400, 350605, '国营古农农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605500, 350605, '长泰经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605501, 350605, '马洋溪生态旅游区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350605502, 350605, '林墩工业区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622100, 350622, '云陵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622101, 350622, '陈岱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622102, 350622, '东厦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622103, 350622, '莆美镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622104, 350622, '列屿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622105, 350622, '火田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622200, 350622, '下河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622201, 350622, '马铺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622202, 350622, '和平乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622500, 350622, '常山华侨经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350622501, 350622, '云陵工业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623100, 350623, '绥安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623101, 350623, '旧镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623102, 350623, '佛昙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623103, 350623, '赤湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623104, 350623, '杜浔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623105, 350623, '霞美镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623106, 350623, '官浔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623107, 350623, '石榴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623108, 350623, '盘陀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623109, 350623, '长桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623110, 350623, '前亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623111, 350623, '马坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623112, 350623, '深土镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623113, 350623, '六鳌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623114, 350623, '沙西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623115, 350623, '古雷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623116, 350623, '大南坂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623200, 350623, '南浦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623201, 350623, '赤岭畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623202, 350623, '湖西畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623203, 350623, '赤土乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623400, 350623, '漳浦盐场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623405, 350623, '南山华侨茶果场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623406, 350623, '中西林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350623408, 350623, '下蔡林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624100, 350624, '南诏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624101, 350624, '四都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624102, 350624, '梅岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624103, 350624, '桥东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624104, 350624, '深桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624105, 350624, '太平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624106, 350624, '霞葛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624107, 350624, '官陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624108, 350624, '秀篆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624109, 350624, '西潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624200, 350624, '金星乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624202, 350624, '白洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624203, 350624, '建设乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624204, 350624, '红星乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624205, 350624, '梅洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624402, 350624, '国营湖内林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624403, 350624, '岭下溪国有防护林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624501, 350624, '诏安工业园区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350624502, 350624, '诏安金都工业集中区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626100, 350626, '西埔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626101, 350626, '樟塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626102, 350626, '康美镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626103, 350626, '杏陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626104, 350626, '陈城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626105, 350626, '前楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350626106, 350626, '铜陵镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627100, 350627, '山城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627101, 350627, '丰田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627102, 350627, '靖城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627103, 350627, '龙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627104, 350627, '金山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627105, 350627, '和溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627106, 350627, '奎洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627107, 350627, '梅林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627108, 350627, '书洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627109, 350627, '船场镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350627110, 350627, '南坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628100, 350628, '小溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628101, 350628, '山格镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628102, 350628, '文峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628103, 350628, '南胜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628104, 350628, '坂仔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628105, 350628, '安厚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628106, 350628, '大溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628107, 350628, '霞寨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628108, 350628, '九峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628109, 350628, '芦溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628200, 350628, '五寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628201, 350628, '国强乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628202, 350628, '崎岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628203, 350628, '长乐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628204, 350628, '秀峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350628401, 350628, '福建平和工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629100, 350629, '华丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629101, 350629, '丰山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629102, 350629, '沙建镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629103, 350629, '新圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629104, 350629, '高安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629105, 350629, '仙都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629200, 350629, '高车乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629201, 350629, '马坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629203, 350629, '湖林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350629400, 350629, '福建土楼(华安)旅游区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702001, 350702, '梅山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702002, 350702, '黄墩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702003, 350702, '紫云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702004, 350702, '四鹤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702005, 350702, '水南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702006, 350702, '水东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702100, 350702, '来舟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702101, 350702, '樟湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702102, 350702, '夏道镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702103, 350702, '西芹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702104, 350702, '峡阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702105, 350702, '南山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702106, 350702, '大横镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702107, 350702, '王台镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702108, 350702, '太平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702109, 350702, '塔前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702110, 350702, '茫荡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702111, 350702, '洋后镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702112, 350702, '炉下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702200, 350702, '巨口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350702202, 350702, '赤门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703001, 350703, '潭城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703002, 350703, '童游街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703102, 350703, '将口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703103, 350703, '徐市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703104, 350703, '莒口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703105, 350703, '麻沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703106, 350703, '黄坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703107, 350703, '水吉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703108, 350703, '漳墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703109, 350703, '小湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703200, 350703, '崇雒乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703201, 350703, '书坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350703202, 350703, '回龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721001, 350721, '双溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721100, 350721, '建西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721101, 350721, '洋口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721102, 350721, '元坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721103, 350721, '埔上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721104, 350721, '大历镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721105, 350721, '大干镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721106, 350721, '仁寿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721107, 350721, '郑坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721200, 350721, '洋墩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721202, 350721, '岚下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350721203, 350721, '高阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722001, 350722, '南浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722002, 350722, '河滨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722101, 350722, '富岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722102, 350722, '石陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722103, 350722, '临江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722104, 350722, '仙阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722105, 350722, '水北街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722106, 350722, '永兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722107, 350722, '忠信镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722108, 350722, '莲塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722109, 350722, '九牧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722200, 350722, '万安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722201, 350722, '古楼乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722202, 350722, '山下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722203, 350722, '枫溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722204, 350722, '濠村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722205, 350722, '管厝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722206, 350722, '盘亭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350722207, 350722, '官路乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723100, 350723, '杭川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723101, 350723, '寨里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723102, 350723, '止马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723200, 350723, '鸾凤乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723201, 350723, '崇仁乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723202, 350723, '李坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723203, 350723, '华桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350723204, 350723, '司前乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724001, 350724, '松源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724101, 350724, '郑墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724102, 350724, '渭田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724200, 350724, '河东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724201, 350724, '茶平乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724202, 350724, '旧县乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724203, 350724, '溪东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724204, 350724, '花桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350724205, 350724, '祖墩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725001, 350725, '熊山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725101, 350725, '东平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725102, 350725, '石屯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725103, 350725, '铁山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725104, 350725, '镇前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725200, 350725, '星溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725201, 350725, '外屯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725202, 350725, '杨源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725203, 350725, '澄源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350725204, 350725, '岭腰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781001, 350781, '昭阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781002, 350781, '通泰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781003, 350781, '水北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781004, 350781, '晒口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781100, 350781, '城郊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781101, 350781, '水北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781102, 350781, '下沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781103, 350781, '卫闽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781104, 350781, '沿山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781105, 350781, '拿口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781106, 350781, '洪墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781107, 350781, '大埠岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781108, 350781, '和平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781109, 350781, '肖家坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781110, 350781, '大竹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781111, 350781, '吴家塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781200, 350781, '桂林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781201, 350781, '张厝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350781202, 350781, '金坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782001, 350782, '崇安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782002, 350782, '新丰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782003, 350782, '武夷街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782100, 350782, '星村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782101, 350782, '兴田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782102, 350782, '五夫镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782200, 350782, '上梅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782201, 350782, '吴屯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782202, 350782, '岚谷乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350782203, 350782, '洋庄乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783001, 350783, '建安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783002, 350783, '通济街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783003, 350783, '瓯宁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783004, 350783, '芝山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783100, 350783, '徐墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783101, 350783, '吉阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783102, 350783, '房道镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783103, 350783, '南雅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783104, 350783, '迪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783105, 350783, '小桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783106, 350783, '玉山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783107, 350783, '东游镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783108, 350783, '东峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783109, 350783, '小松镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783200, 350783, '顺阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783201, 350783, '水源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783202, 350783, '川石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350783203, 350783, '龙村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802001, 350802, '东城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802002, 350802, '南城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802003, 350802, '西城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802004, 350802, '中城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802005, 350802, '西陂街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802006, 350802, '曹溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802007, 350802, '东肖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802008, 350802, '龙门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802009, 350802, '铁山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802010, 350802, '北城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802100, 350802, '红坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802101, 350802, '适中镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802102, 350802, '雁石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802103, 350802, '白沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802104, 350802, '万安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802105, 350802, '大池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802106, 350802, '小池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802107, 350802, '江山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802108, 350802, '岩山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350802109, 350802, '苏坂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803001, 350803, '凤城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803101, 350803, '坎市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803102, 350803, '下洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803103, 350803, '湖雷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803104, 350803, '高陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803105, 350803, '抚市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803106, 350803, '湖坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803107, 350803, '培丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803108, 350803, '龙潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803109, 350803, '峰市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803110, 350803, '城郊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803111, 350803, '仙师镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803112, 350803, '虎岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803113, 350803, '堂堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803114, 350803, '岐岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803115, 350803, '金砂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803116, 350803, '洪山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803117, 350803, '高头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803201, 350803, '西溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803205, 350803, '湖山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803207, 350803, '古竹乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803209, 350803, '合溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803211, 350803, '大溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350803212, 350803, '陈东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821100, 350821, '汀州镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821101, 350821, '大同镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821102, 350821, '古城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821103, 350821, '新桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821104, 350821, '馆前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821105, 350821, '童坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821106, 350821, '河田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821107, 350821, '南山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821108, 350821, '濯田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821109, 350821, '四都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821110, 350821, '涂坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821111, 350821, '策武镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821112, 350821, '三洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821201, 350821, '铁长乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821202, 350821, '庵杰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821204, 350821, '宣成乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821205, 350821, '红山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350821206, 350821, '羊牯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823100, 350823, '临江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823101, 350823, '临城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823102, 350823, '中都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823103, 350823, '蓝溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823104, 350823, '稔田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823105, 350823, '白砂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823106, 350823, '古田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823107, 350823, '才溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823108, 350823, '南阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823109, 350823, '蛟洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823110, 350823, '旧县镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823111, 350823, '湖洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823112, 350823, '溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823113, 350823, '太拔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823114, 350823, '通贤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823115, 350823, '下都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823116, 350823, '茶地镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823202, 350823, '庐丰畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823206, 350823, '泮境乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823208, 350823, '步云乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823211, 350823, '官庄畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350823212, 350823, '珊瑚乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824001, 350824, '平川街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824101, 350824, '中山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824102, 350824, '岩前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824103, 350824, '十方镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824104, 350824, '中堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824105, 350824, '桃溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824106, 350824, '城厢镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824107, 350824, '东留镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824108, 350824, '武东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824109, 350824, '万安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824110, 350824, '永平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824111, 350824, '象洞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824112, 350824, '中赤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824113, 350824, '湘店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824114, 350824, '大禾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824203, 350824, '民主乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350824204, 350824, '下坝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825100, 350825, '莲峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825101, 350825, '北团镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825102, 350825, '姑田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825103, 350825, '朋口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825104, 350825, '莒溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825105, 350825, '新泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825106, 350825, '庙前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825107, 350825, '文亨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825108, 350825, '四堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825109, 350825, '林坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825110, 350825, '隔川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825111, 350825, '宣和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825200, 350825, '揭乐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825201, 350825, '塘前乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825204, 350825, '罗坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825208, 350825, '曲溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350825209, 350825, '赖源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881001, 350881, '菁城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881002, 350881, '桂林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881100, 350881, '新桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881101, 350881, '双洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881102, 350881, '永福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881103, 350881, '溪南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881104, 350881, '和平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881105, 350881, '拱桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881106, 350881, '象湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881107, 350881, '赤水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881108, 350881, '西园镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881109, 350881, '南洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881110, 350881, '芦芝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881203, 350881, '官田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881204, 350881, '吾祠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350881205, 350881, '灵地乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902001, 350902, '蕉南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902002, 350902, '蕉北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902100, 350902, '城南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902101, 350902, '漳湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902102, 350902, '七都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902103, 350902, '八都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902104, 350902, '九都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902105, 350902, '霍童镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902106, 350902, '赤溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902107, 350902, '洋中镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902108, 350902, '飞鸾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902109, 350902, '三都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902110, 350902, '虎贝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902200, 350902, '金涵畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902201, 350902, '洪口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902202, 350902, '石后乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350902500, 350902, '东侨开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921001, 350921, '松城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921002, 350921, '松港街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921003, 350921, '松山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921101, 350921, '长春镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921102, 350921, '牙城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921103, 350921, '溪南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921104, 350921, '沙江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921105, 350921, '下浒镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921106, 350921, '三沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921200, 350921, '盐田畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921201, 350921, '水门畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921202, 350921, '崇儒畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921203, 350921, '柏洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921204, 350921, '北壁乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350921205, 350921, '海岛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922001, 350922, '城东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922002, 350922, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922101, 350922, '平湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922102, 350922, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922103, 350922, '黄田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922104, 350922, '鹤塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922105, 350922, '杉洋镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922106, 350922, '凤都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922107, 350922, '水口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922108, 350922, '大甲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922201, 350922, '吉巷乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922203, 350922, '泮洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922204, 350922, '凤埔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350922205, 350922, '卓洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923100, 350923, '古峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923101, 350923, '双溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923102, 350923, '代溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923103, 350923, '长桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923104, 350923, '棠口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923200, 350923, '屏城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923202, 350923, '甘棠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923203, 350923, '熙岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923204, 350923, '路下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923205, 350923, '寿山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350923206, 350923, '岭下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924100, 350924, '鳌阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924101, 350924, '斜滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924102, 350924, '南阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924103, 350924, '武曲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924104, 350924, '犀溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924105, 350924, '平溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924106, 350924, '凤阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924107, 350924, '清源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924200, 350924, '大安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924201, 350924, '坑底乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924203, 350924, '竹管垅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924205, 350924, '芹洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924206, 350924, '托溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350924209, 350924, '下党乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925100, 350925, '狮城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925101, 350925, '咸村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925102, 350925, '浦源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925103, 350925, '七步镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925104, 350925, '李墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925105, 350925, '纯池镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925200, 350925, '泗桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925201, 350925, '礼门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350925202, 350925, '玛坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926100, 350926, '双城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926101, 350926, '富溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926200, 350926, '城郊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926201, 350926, '乍洋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926202, 350926, '东源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926203, 350926, '黄柏乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926204, 350926, '宅中乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926205, 350926, '楮坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350926206, 350926, '英山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981001, 350981, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981002, 350981, '城北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981003, 350981, '阳头街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981004, 350981, '罗江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981100, 350981, '赛岐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981101, 350981, '穆阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981102, 350981, '上白石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981103, 350981, '潭头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981104, 350981, '社口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981105, 350981, '晓阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981106, 350981, '溪潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981107, 350981, '甘棠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981108, 350981, '下白石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981109, 350981, '溪尾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981110, 350981, '溪柄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981111, 350981, '湾坞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981112, 350981, '城阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981201, 350981, '坂中畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981202, 350981, '范坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981203, 350981, '穆云畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981204, 350981, '康厝畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981206, 350981, '松罗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981501, 350981, '福安畲族开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350981502, 350981, '湾坞工业集中区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982001, 350982, '桐山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982002, 350982, '桐城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982003, 350982, '山前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982100, 350982, '贯岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982101, 350982, '前岐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982102, 350982, '沙埕镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982103, 350982, '店下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982104, 350982, '太姥山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982105, 350982, '磻溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982106, 350982, '白琳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982107, 350982, '点头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982108, 350982, '管阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982109, 350982, '嵛山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982200, 350982, '硖门畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982201, 350982, '叠石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982202, 350982, '佳阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (350982500, 350982, '龙安开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102001, 360102, '公园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102002, 360102, '滕王阁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102003, 360102, '八一桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102004, 360102, '百花洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102005, 360102, '墩子塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102006, 360102, '大院街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102007, 360102, '豫章街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102008, 360102, '董家窑街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102009, 360102, '彭家桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102100, 360102, '扬子洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102400, 360102, '贤士湖管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360102401, 360102, '扬农管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103001, 360103, '南浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103002, 360103, '朝阳洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103004, 360103, '广润门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103005, 360103, '西湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103006, 360103, '系马桩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103007, 360103, '绳金塔街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103009, 360103, '丁公路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103010, 360103, '南站街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103011, 360103, '桃源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103012, 360103, '十字街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103013, 360103, '朝农街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360103101, 360103, '桃花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104002, 360104, '洪都街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104006, 360104, '京山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104007, 360104, '三家店街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104008, 360104, '岱山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104009, 360104, '徐家坊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104100, 360104, '青云谱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360104400, 360104, '江西青云谱新经济产业集聚区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111001, 360111, '青山路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111003, 360111, '上海路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111004, 360111, '南钢街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111005, 360111, '站东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111100, 360111, '京东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111103, 360111, '罗家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111104, 360111, '湖坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111105, 360111, '塘山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111180, 360111, '蛟桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111400, 360111, '江西青山湖高新技术产业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111481, 360111, '白水湖管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111482, 360111, '冠山管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360111490, 360111, '艾溪湖管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112001, 360112, '站前街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112002, 360112, '幸福街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112100, 360112, '长堎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112101, 360112, '望城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112103, 360112, '西山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112104, 360112, '石岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112105, 360112, '松湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112106, 360112, '樵舍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112107, 360112, '乐化镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112108, 360112, '溪霞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112109, 360112, '象山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112110, 360112, '石埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112111, 360112, '联圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112112, 360112, '流湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112113, 360112, '太平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112114, 360112, '罗亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112115, 360112, '招贤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112116, 360112, '梅岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112202, 360112, '厚田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112204, 360112, '金桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112205, 360112, '铁河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112206, 360112, '大塘坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112207, 360112, '昌邑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112208, 360112, '南矶乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112400, 360112, '恒湖垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112402, 360112, '成新实业有限公司', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112403, 360112, '朱港实业有限公司', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112404, 360112, '江西新建经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112460, 360112, '江西桑海集团有限公司', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112461, 360112, '新祺周管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360112502, 360112, '新丰管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360113001, 360113, '沙井街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360113002, 360113, '卫东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360113100, 360113, '生米镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360113400, 360113, '凤凰洲管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360113401, 360113, '红角洲管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360113402, 360113, '九龙湖管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121001, 360121, '八月湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121100, 360121, '莲塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121101, 360121, '向塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121102, 360121, '三江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121103, 360121, '塘南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121104, 360121, '幽兰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121105, 360121, '蒋巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121106, 360121, '武阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121107, 360121, '冈上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121108, 360121, '广福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121191, 360121, '昌东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121192, 360121, '麻丘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121200, 360121, '泾口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121201, 360121, '南新乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121202, 360121, '塔城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121203, 360121, '黄马乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121204, 360121, '富山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121205, 360121, '东新乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121206, 360121, '八一乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121403, 360121, '小蓝经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121404, 360121, '南昌航空城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121471, 360121, '南昌县银三角管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121501, 360121, '鲤鱼洲管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360121572, 360121, '江西省良种繁殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123100, 360123, '龙津镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123101, 360123, '万埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123102, 360123, '石鼻镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123103, 360123, '鼎湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123104, 360123, '长埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123105, 360123, '东阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123106, 360123, '黄洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123200, 360123, '乔乐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123201, 360123, '长均乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123202, 360123, '新民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123402, 360123, '江西安义工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360123501, 360123, '国营万埠垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124100, 360124, '民和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124101, 360124, '李渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124102, 360124, '温圳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124103, 360124, '文港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124104, 360124, '梅庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124105, 360124, '张公镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124106, 360124, '罗溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124107, 360124, '架桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124108, 360124, '前坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124200, 360124, '三里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124201, 360124, '二塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124202, 360124, '钟陵乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124203, 360124, '池溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124204, 360124, '南台乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124205, 360124, '三阳集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124206, 360124, '七里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124207, 360124, '下埠集乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124208, 360124, '衙前乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124209, 360124, '白圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124210, 360124, '长山晏乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124211, 360124, '泉岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360124500, 360124, '五里垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202001, 360202, '西郊街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202002, 360202, '新枫街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202101, 360202, '鲇鱼山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202102, 360202, '丽阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202202, 360202, '荷塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202290, 360202, '吕蒙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202451, 360202, '昌江化工园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202452, 360202, '六零二所高科技园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202453, 360202, '昌江开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360202500, 360202, '枫树山总场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203001, 360203, '石狮埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203002, 360203, '新厂街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203003, 360203, '里村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203004, 360203, '周路口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203005, 360203, '昌江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203006, 360203, '新村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203007, 360203, '珠山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203008, 360203, '太白园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203009, 360203, '昌河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203100, 360203, '竟成镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360203400, 360203, '高新技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222100, 360222, '浮梁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222101, 360222, '鹅湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222102, 360222, '经公桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222103, 360222, '蛟潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222104, 360222, '湘湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222105, 360222, '瑶里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222106, 360222, '洪源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222107, 360222, '寿安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222108, 360222, '三龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222109, 360222, '峙滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222200, 360222, '王港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222201, 360222, '臧湾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222203, 360222, '黄坛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222204, 360222, '兴田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222205, 360222, '江村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222207, 360222, '勒功乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222208, 360222, '西湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360222209, 360222, '罗家桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281001, 360281, '洎阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281002, 360281, '塔山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281100, 360281, '镇桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281101, 360281, '乐港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281102, 360281, '涌山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281103, 360281, '众埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281104, 360281, '接渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281105, 360281, '洪岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281106, 360281, '礼林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281107, 360281, '后港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281108, 360281, '塔前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281109, 360281, '双田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281110, 360281, '临港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281111, 360281, '高家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281112, 360281, '名口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281113, 360281, '浯口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281114, 360281, '十里岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281200, 360281, '鸬鹚乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281400, 360281, '农业高新园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360281401, 360281, '江西乐平工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302001, 360302, '东大街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302002, 360302, '凤凰街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302003, 360302, '八一街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302004, 360302, '后埠街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302005, 360302, '丹江街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302006, 360302, '白源街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302100, 360302, '安源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302101, 360302, '高坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302102, 360302, '五陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302103, 360302, '青山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302400, 360302, '五陂下垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360302401, 360302, '城郊管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313001, 360313, '峡山口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313101, 360313, '湘东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313102, 360313, '荷尧镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313103, 360313, '老关镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313104, 360313, '腊市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313105, 360313, '下埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313106, 360313, '排上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313107, 360313, '东桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313108, 360313, '麻山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313200, 360313, '广寒寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360313201, 360313, '白竺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321101, 360321, '琴亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321102, 360321, '路口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321103, 360321, '良坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321104, 360321, '升坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321105, 360321, '坊楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321200, 360321, '闪石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321201, 360321, '湖上乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321202, 360321, '三板桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321203, 360321, '神泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321204, 360321, '六市乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321205, 360321, '高洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321206, 360321, '荷塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360321207, 360321, '南岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322101, 360322, '上栗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322102, 360322, '桐木镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322103, 360322, '金山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322104, 360322, '福田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322105, 360322, '彭高镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322106, 360322, '赤山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322200, 360322, '鸡冠山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322201, 360322, '长平乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322202, 360322, '东源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360322203, 360322, '杨岐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323101, 360323, '芦溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323102, 360323, '宣风镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323103, 360323, '上埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323104, 360323, '南坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323105, 360323, '银河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323106, 360323, '麻田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323200, 360323, '源南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323201, 360323, '长丰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323202, 360323, '张佳坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323203, 360323, '新泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360323204, 360323, '万龙山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402001, 360402, '十里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402002, 360402, '五里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402090, 360402, '七里湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402100, 360402, '姑塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402101, 360402, '威家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402102, 360402, '新港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402103, 360402, '莲花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402105, 360402, '赛阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402200, 360402, '虞家河乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402201, 360402, '高垅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402471, 360402, '庐山林科所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360402472, 360402, '庐山生态文化新城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403001, 360403, '甘棠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403002, 360403, '湓浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403003, 360403, '人民路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403004, 360403, '白水湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403005, 360403, '金鸡坡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403006, 360403, '八里湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403091, 360403, '向阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403092, 360403, '滨兴街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360403400, 360403, '茅山头企业集团', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404001, 360404, '沙河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404002, 360404, '狮子街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404003, 360404, '城门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404101, 360404, '马回岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404102, 360404, '江洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404103, 360404, '城子镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404104, 360404, '港口街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404105, 360404, '新合镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404200, 360404, '永安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404201, 360404, '涌泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404202, 360404, '新塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404204, 360404, '岷山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404403, 360404, '沙河经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404501, 360404, '新洲垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404502, 360404, '赛城湖水产场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360404503, 360404, '岷山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423001, 360423, '豫宁街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423100, 360423, '新宁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423101, 360423, '泉口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423102, 360423, '鲁溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423103, 360423, '船滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423104, 360423, '澧溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423105, 360423, '罗坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423106, 360423, '石门楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423107, 360423, '宋溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423200, 360423, '大洞乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423201, 360423, '横路乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423202, 360423, '官莲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423203, 360423, '巾口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423204, 360423, '东林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423205, 360423, '上汤乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423206, 360423, '甫田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423207, 360423, '清江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423208, 360423, '石渡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423209, 360423, '杨洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423210, 360423, '罗溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360423500, 360423, '万福经济技术开发区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424100, 360424, '义宁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424101, 360424, '白岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424102, 360424, '全丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424103, 360424, '古市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424104, 360424, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424105, 360424, '渣津镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424106, 360424, '马坳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424107, 360424, '杭口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424108, 360424, '港口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424109, 360424, '溪口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424110, 360424, '西港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424111, 360424, '山口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424112, 360424, '黄沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424113, 360424, '黄港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424114, 360424, '何市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424115, 360424, '上奉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424116, 360424, '四都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424117, 360424, '太阳升镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424118, 360424, '宁州镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424200, 360424, '路口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424201, 360424, '黄龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424202, 360424, '上衫乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424203, 360424, '余段乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424204, 360424, '水源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424205, 360424, '石坳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424206, 360424, '东港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424207, 360424, '上杭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424209, 360424, '新湾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424210, 360424, '布甲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424211, 360424, '漫江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424212, 360424, '复原乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424213, 360424, '竹坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424214, 360424, '征村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424215, 360424, '庙岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424216, 360424, '黄坳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360424217, 360424, '大椿乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425100, 360425, '涂埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425101, 360425, '吴城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425102, 360425, '三溪桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425103, 360425, '虬津镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425104, 360425, '艾城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425105, 360425, '滩溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425106, 360425, '白槎镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425107, 360425, '梅棠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425108, 360425, '燕坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425109, 360425, '马口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425110, 360425, '柘林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425200, 360425, '三角乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425201, 360425, '九合乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425202, 360425, '立新乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425203, 360425, '江上乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425404, 360425, '江西永修云山经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425500, 360425, '云山企业集团', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425501, 360425, '恒丰企业集团', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425502, 360425, '八角岭垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360425503, 360425, '永丰垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426100, 360426, '蒲亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426101, 360426, '聂桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426102, 360426, '车桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426103, 360426, '丰林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426104, 360426, '吴山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426200, 360426, '宝塔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426201, 360426, '河东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426202, 360426, '高塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426203, 360426, '林泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426205, 360426, '磨溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426206, 360426, '爱民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426207, 360426, '邹桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426208, 360426, '塘山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426500, 360426, '彭山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360426501, 360426, '园艺场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428100, 360428, '都昌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428101, 360428, '周溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428102, 360428, '三汊港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428103, 360428, '中馆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428104, 360428, '大沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428105, 360428, '万户镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428106, 360428, '南峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428107, 360428, '土塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428108, 360428, '大港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428109, 360428, '蔡岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428110, 360428, '徐埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428111, 360428, '左里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428200, 360428, '和合乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428201, 360428, '阳峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428202, 360428, '西源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428203, 360428, '芗溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428204, 360428, '狮山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428205, 360428, '鸣山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428206, 360428, '春桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428207, 360428, '苏山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428208, 360428, '多宝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428209, 360428, '汪墩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428210, 360428, '北山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428211, 360428, '大树乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428400, 360428, '江西省对外经济技术合作蔡岭示范区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360428500, 360428, '都昌县良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429100, 360429, '双钟镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429101, 360429, '流泗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429102, 360429, '马影镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429103, 360429, '武山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429104, 360429, '城山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429105, 360429, '均桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429106, 360429, '凰村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429200, 360429, '大垅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429202, 360429, '张青乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429204, 360429, '付垅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429205, 360429, '舜德乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429206, 360429, '流芳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429500, 360429, '南北港水产场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360429501, 360429, '武山垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430100, 360430, '龙城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430101, 360430, '棉船镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430102, 360430, '马垱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430103, 360430, '芙蓉墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430104, 360430, '定山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430105, 360430, '天红镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430106, 360430, '杨梓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430107, 360430, '东升镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430108, 360430, '瀼溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430109, 360430, '黄花镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430200, 360430, '太平关乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430201, 360430, '黄岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430202, 360430, '浩山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430403, 360430, '建筑材料厂', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430404, 360430, '水产养殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430500, 360430, '太泊湖农业综合开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430501, 360430, '上十岭综合垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430502, 360430, '芙蓉农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430503, 360430, '棉科所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430504, 360430, '棉花原种场国营分场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430505, 360430, '太泊湖水产养殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360430506, 360430, '黄乐林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481001, 360481, '湓城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481002, 360481, '桂林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481100, 360481, '码头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481101, 360481, '白杨镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481102, 360481, '南义镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481103, 360481, '横港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481104, 360481, '范镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481105, 360481, '肇陈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481106, 360481, '高丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481107, 360481, '夏畈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481200, 360481, '乐园乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481201, 360481, '洪一乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481202, 360481, '花园乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481203, 360481, '洪下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481204, 360481, '武蛟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481205, 360481, '横立山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481206, 360481, '黄金乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481207, 360481, '南阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481500, 360481, '赛湖农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481501, 360481, '青山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360481502, 360481, '瑞昌市大德山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360482001, 360482, '茶山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360482100, 360482, '甘露镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360482101, 360482, '江益镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360482200, 360482, '金湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360482201, 360482, '苏家垱乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360482202, 360482, '泽泉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483100, 360483, '南康镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483101, 360483, '白鹿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483102, 360483, '温泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483103, 360483, '星子镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483104, 360483, '华林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483105, 360483, '蛟塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483106, 360483, '横塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483107, 360483, '牯岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483108, 360483, '海会镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483200, 360483, '蓼南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483401, 360483, '东牯山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360483500, 360483, '沙湖山管理处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502001, 360502, '城南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502002, 360502, '城北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502003, 360502, '袁河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502004, 360502, '新钢街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502100, 360502, '水北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502101, 360502, '下村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502102, 360502, '良山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502103, 360502, '罗坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502104, 360502, '姚圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502105, 360502, '珠珊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502108, 360502, '鹄山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502170, 360502, '河下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502180, 360502, '观巢镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502181, 360502, '欧里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502190, 360502, '水西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502201, 360502, '人和乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502202, 360502, '界水乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502203, 360502, '南安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502204, 360502, '新溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360502271, 360502, '九龙山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521001, 360521, '钤东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521002, 360521, '钤西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521100, 360521, '分宜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521101, 360521, '杨桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521102, 360521, '湖泽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521103, 360521, '双林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521104, 360521, '钤山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521105, 360521, '洋江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521106, 360521, '凤阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521201, 360521, '洞村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521202, 360521, '高岚乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521203, 360521, '操场乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360521505, 360521, '东坑林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602001, 360602, '江边街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602002, 360602, '交通街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602003, 360602, '东湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602004, 360602, '梅园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602005, 360602, '四青街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602006, 360602, '白露街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602100, 360602, '童家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360602200, 360602, '夏埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603001, 360603, '邓埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603101, 360603, '锦江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603102, 360603, '潢溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603103, 360603, '中童镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603104, 360603, '马荃镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603105, 360603, '画桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603106, 360603, '春涛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603200, 360603, '平定乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603202, 360603, '杨溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603203, 360603, '洪湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603204, 360603, '黄庄乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603205, 360603, '刘家站乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603408, 360603, '余江县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603409, 360603, '鹰潭市龙岗新区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603501, 360603, '高公寨营林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603503, 360603, '邓家埠水稻原种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603504, 360603, '余江县水产场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603505, 360603, '塘潮源林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603506, 360603, '张公桥农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360603508, 360603, '大桥农场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681001, 360681, '花园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681002, 360681, '雄石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681003, 360681, '东门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681100, 360681, '泗沥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681101, 360681, '河潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681102, 360681, '周坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681103, 360681, '鸿塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681104, 360681, '志光镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681105, 360681, '流口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681106, 360681, '罗河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681107, 360681, '金屯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681108, 360681, '塘湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681109, 360681, '文坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681110, 360681, '冷水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681111, 360681, '滨江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681112, 360681, '天禄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681113, 360681, '雷溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681190, 360681, '龙虎山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681191, 360681, '上清镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681201, 360681, '白田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681203, 360681, '彭湾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681204, 360681, '樟坪畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681205, 360681, '耳口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681407, 360681, '贵溪市工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681408, 360681, '江北办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681500, 360681, '塔桥园艺场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681501, 360681, '河潭埠垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681502, 360681, '西窑林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681503, 360681, '双圳林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681504, 360681, '耳口林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681505, 360681, '冷水林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681506, 360681, '三县岭林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360681592, 360681, '上清林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702001, 360702, '解放街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702002, 360702, '赣江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702003, 360702, '南外街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702004, 360702, '东外街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702005, 360702, '水南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702006, 360702, '章江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702091, 360702, '黄金岭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702100, 360702, '沙石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702101, 360702, '水东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702103, 360702, '湖边镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702104, 360702, '沙河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702105, 360702, '水西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702190, 360702, '蟠龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702191, 360702, '潭口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702192, 360702, '潭东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702400, 360702, '赣州经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360702401, 360702, '沙河工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703001, 360703, '蓉江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703002, 360703, '东山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703100, 360703, '唐江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703101, 360703, '凤岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703103, 360703, '龙岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703104, 360703, '龙回镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703105, 360703, '镜坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703106, 360703, '横市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703107, 360703, '龙华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703200, 360703, '浮石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703201, 360703, '赤土畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703202, 360703, '横寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703203, 360703, '朱坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703204, 360703, '太窝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703205, 360703, '三江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703207, 360703, '十八塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703208, 360703, '麻双乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703209, 360703, '大坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703210, 360703, '坪市乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703211, 360703, '隆木乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360703400, 360703, '南康市工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704100, 360704, '梅林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704101, 360704, '王母渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704102, 360704, '沙地镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704103, 360704, '江口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704104, 360704, '田村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704105, 360704, '南塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704106, 360704, '茅店镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704107, 360704, '吉埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704108, 360704, '五云镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704109, 360704, '湖江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704110, 360704, '储潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704111, 360704, '韩坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704201, 360704, '阳埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704202, 360704, '大埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704203, 360704, '长洛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704204, 360704, '大田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704207, 360704, '石芫乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704208, 360704, '三溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704209, 360704, '白鹭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360704400, 360704, '江西赣县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722100, 360722, '嘉定镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722101, 360722, '大塘埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722102, 360722, '古陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722103, 360722, '大桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722104, 360722, '新田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722105, 360722, '安西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722106, 360722, '小江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722107, 360722, '铁石口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722108, 360722, '大阿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722109, 360722, '油山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722110, 360722, '小河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722111, 360722, '西牛镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722112, 360722, '正平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722200, 360722, '虎山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722201, 360722, '崇仙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722202, 360722, '万隆乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360722400, 360722, '信丰县工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723100, 360723, '南安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723101, 360723, '新城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723102, 360723, '樟斗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723103, 360723, '池江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723104, 360723, '青龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723105, 360723, '左拔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723106, 360723, '黄龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723107, 360723, '吉村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723200, 360723, '浮江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723201, 360723, '河洞乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723202, 360723, '内良乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360723400, 360723, '新世纪工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724100, 360724, '东山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724101, 360724, '陡水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724102, 360724, '社溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724103, 360724, '营前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724104, 360724, '黄埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724105, 360724, '寺下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724200, 360724, '梅水乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724201, 360724, '油石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724202, 360724, '安和乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724204, 360724, '双溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724205, 360724, '水岩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724206, 360724, '平富乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724207, 360724, '五指峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724208, 360724, '紫阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360724400, 360724, '上犹工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725100, 360725, '横水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725101, 360725, '扬眉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725102, 360725, '过埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725103, 360725, '铅厂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725104, 360725, '长龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725105, 360725, '关田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725200, 360725, '龙勾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725201, 360725, '杰坝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725202, 360725, '金坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725203, 360725, '思顺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725204, 360725, '麟潭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725205, 360725, '上堡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725206, 360725, '聂都乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725207, 360725, '文英乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725208, 360725, '乐洞乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360725209, 360725, '丰州乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726100, 360726, '欣山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726101, 360726, '孔田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726102, 360726, '版石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726103, 360726, '天心镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726104, 360726, '龙布镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726105, 360726, '鹤子镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726106, 360726, '三百山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726107, 360726, '车头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726200, 360726, '镇岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726201, 360726, '凤山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726202, 360726, '新龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726203, 360726, '蔡坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726204, 360726, '重石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726205, 360726, '长沙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726206, 360726, '浮槎乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726207, 360726, '双芫乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726208, 360726, '塘村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726209, 360726, '高云山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360726400, 360726, '九龙工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728100, 360728, '历市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728101, 360728, '岿美山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728102, 360728, '老城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728103, 360728, '天九镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728104, 360728, '龙塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728105, 360728, '岭北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728106, 360728, '鹅公镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360728400, 360728, '定南县工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729100, 360729, '城厢镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729101, 360729, '大吉山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729102, 360729, '陂头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729103, 360729, '金龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729104, 360729, '南迳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729105, 360729, '龙源坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729200, 360729, '中寨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729201, 360729, '社迳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729202, 360729, '龙下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360729402, 360729, '全南县工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730100, 360730, '梅江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730101, 360730, '青塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730102, 360730, '长胜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730103, 360730, '黄陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730104, 360730, '固村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730105, 360730, '赖村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730106, 360730, '石上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730107, 360730, '东山坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730108, 360730, '洛口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730109, 360730, '小布镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730110, 360730, '黄石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730111, 360730, '田头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730200, 360730, '竹笮乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730201, 360730, '对坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730202, 360730, '固厚乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730203, 360730, '田埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730204, 360730, '会同乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730205, 360730, '湛田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730206, 360730, '安福乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730207, 360730, '东韶乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730208, 360730, '肖田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730209, 360730, '钓峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730210, 360730, '大沽乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730211, 360730, '蔡江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360730400, 360730, '宁都县水东工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731100, 360731, '贡江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731101, 360731, '铁山垅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731102, 360731, '盘古山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731103, 360731, '禾丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731104, 360731, '祁禄山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731105, 360731, '梓山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731106, 360731, '银坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731107, 360731, '岭背镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731108, 360731, '罗坳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731200, 360731, '罗江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731201, 360731, '小溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731202, 360731, '利村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731203, 360731, '新陂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731204, 360731, '靖石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731205, 360731, '黄麟乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731206, 360731, '沙心乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731207, 360731, '宽田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731208, 360731, '葛坳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731209, 360731, '桥头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731210, 360731, '马安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731211, 360731, '仙下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731212, 360731, '车溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731213, 360731, '段屋乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360731400, 360731, '于都工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732100, 360732, '潋江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732101, 360732, '江背镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732102, 360732, '古龙冈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732103, 360732, '梅窖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732104, 360732, '高兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732105, 360732, '良村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732106, 360732, '龙口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732107, 360732, '城岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732108, 360732, '永丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732200, 360732, '兴江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732201, 360732, '樟木乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732202, 360732, '东村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732203, 360732, '兴莲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732204, 360732, '杰村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732205, 360732, '社富乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732206, 360732, '埠头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732208, 360732, '隆坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732209, 360732, '均村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732210, 360732, '茶园乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732211, 360732, '崇贤乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732212, 360732, '枫边乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732213, 360732, '南坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732215, 360732, '方太乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732216, 360732, '鼎龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732217, 360732, '长冈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360732400, 360732, '兴国县工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733100, 360733, '文武坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733101, 360733, '筠门岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733102, 360733, '西江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733103, 360733, '周田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733104, 360733, '麻州镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733105, 360733, '庄口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733200, 360733, '清溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733201, 360733, '右水乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733202, 360733, '高排乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733203, 360733, '晓龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733204, 360733, '珠兰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733205, 360733, '洞头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733206, 360733, '中村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733207, 360733, '站塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733208, 360733, '永隆乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733209, 360733, '富城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733210, 360733, '小密乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733211, 360733, '庄埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733212, 360733, '白鹅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360733400, 360733, '会昌县燕子窝工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734100, 360734, '长宁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734101, 360734, '晨光镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734102, 360734, '留车镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734103, 360734, '南桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734104, 360734, '吉潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734105, 360734, '澄江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734106, 360734, '桂竹帽镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734200, 360734, '文峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734201, 360734, '三标乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734202, 360734, '菖蒲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734203, 360734, '龙廷乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734204, 360734, '丹溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734205, 360734, '项山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734206, 360734, '水源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360734207, 360734, '罗珊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735100, 360735, '琴江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735101, 360735, '小松镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735102, 360735, '屏山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735103, 360735, '横江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735104, 360735, '高田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735105, 360735, '赣江源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735200, 360735, '木兰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735201, 360735, '丰山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735202, 360735, '大由乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735203, 360735, '龙岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360735204, 360735, '珠坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781100, 360781, '象湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781101, 360781, '瑞林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781102, 360781, '壬田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781103, 360781, '九堡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781104, 360781, '沙洲坝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781105, 360781, '谢坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781106, 360781, '武阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781107, 360781, '叶坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781201, 360781, '丁陂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781202, 360781, '大柏地乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781203, 360781, '岗面乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781204, 360781, '日东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781205, 360781, '万田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781206, 360781, '黄柏乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781207, 360781, '云石山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781208, 360781, '泽覃乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781209, 360781, '拔英乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360781400, 360781, '江西瑞金经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783100, 360783, '龙南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783101, 360783, '武当镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783102, 360783, '杨村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783103, 360783, '汶龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783104, 360783, '程龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783105, 360783, '关西镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783106, 360783, '里仁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783107, 360783, '渡江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783108, 360783, '九连山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783200, 360783, '桃江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783201, 360783, '东江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783202, 360783, '临塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783203, 360783, '南亨乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783204, 360783, '夹湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783400, 360783, '江西龙南经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360783500, 360783, '安基山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802001, 360802, '古南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802002, 360802, '永叔街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802003, 360802, '文山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802004, 360802, '习溪桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802005, 360802, '北门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802006, 360802, '白塘街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802007, 360802, '禾埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802100, 360802, '兴桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802101, 360802, '樟山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802102, 360802, '长塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802103, 360802, '曲濑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360802400, 360802, '吉州区工业园小区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803001, 360803, '河东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803002, 360803, '滨江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803100, 360803, '天玉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803101, 360803, '值夏镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803102, 360803, '新圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803103, 360803, '富滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803104, 360803, '富田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803105, 360803, '文陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803201, 360803, '东固畲族少数民族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803400, 360803, '青原区河东经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360803500, 360803, '东固垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821001, 360821, '高新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821002, 360821, '金鸡湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821100, 360821, '敦厚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821101, 360821, '永阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821102, 360821, '天河镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821103, 360821, '横江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821104, 360821, '固江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821105, 360821, '万福镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821106, 360821, '永和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821107, 360821, '桐坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821108, 360821, '凤凰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821109, 360821, '油田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821110, 360821, '敖城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821111, 360821, '梅塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821112, 360821, '浬田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821200, 360821, '北源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821201, 360821, '大冲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821204, 360821, '登龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821205, 360821, '安塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821206, 360821, '官田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821207, 360821, '指阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821400, 360821, '吉安高新技术产业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360821401, 360821, '井冈山经济技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822100, 360822, '文峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822101, 360822, '阜田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822102, 360822, '盘谷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822103, 360822, '枫江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822104, 360822, '黄桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822105, 360822, '金滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822106, 360822, '八都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822107, 360822, '双村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822108, 360822, '醪桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822109, 360822, '螺田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822110, 360822, '白沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822111, 360822, '白水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822112, 360822, '丁江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822113, 360822, '乌江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822114, 360822, '水南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822200, 360822, '尚贤乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822201, 360822, '水田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822202, 360822, '冠山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360822400, 360822, '吉水县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823100, 360823, '水边镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823101, 360823, '马埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823102, 360823, '巴邱镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823103, 360823, '仁和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823104, 360823, '砚溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823105, 360823, '罗田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823200, 360823, '桐林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823201, 360823, '福民乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823202, 360823, '戈坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823203, 360823, '金江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823204, 360823, '金坪民族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360823400, 360823, '峡江县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824001, 360824, '洋峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824100, 360824, '金川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824101, 360824, '三湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824102, 360824, '大洋洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824103, 360824, '七琴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824104, 360824, '麦㙦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824105, 360824, '界埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824106, 360824, '溧江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824201, 360824, '桃溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824202, 360824, '城上乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824203, 360824, '潭丘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824204, 360824, '神政桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824205, 360824, '沂江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824207, 360824, '荷浦乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824404, 360824, '新干工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824405, 360824, '地质大队', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360824502, 360824, '黎山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825100, 360825, '恩江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825101, 360825, '坑田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825102, 360825, '沿陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825103, 360825, '古县镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825104, 360825, '瑶田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825105, 360825, '藤田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825106, 360825, '石马镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825107, 360825, '沙溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825200, 360825, '佐龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825201, 360825, '八江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825202, 360825, '潭城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825203, 360825, '鹿冈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825204, 360825, '七都乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825205, 360825, '陶唐乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825206, 360825, '中村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825207, 360825, '上溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825208, 360825, '潭头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825209, 360825, '三坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825210, 360825, '上固乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825211, 360825, '君埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825212, 360825, '龙冈畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825403, 360825, '永丰县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825501, 360825, '罗铺垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360825502, 360825, '官山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826100, 360826, '澄江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826102, 360826, '桥头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826103, 360826, '禾市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826104, 360826, '螺溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826105, 360826, '苏溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826106, 360826, '马市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826107, 360826, '塘洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826108, 360826, '冠朝镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826109, 360826, '沙村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826110, 360826, '老营盘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826111, 360826, '小龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826112, 360826, '灌溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826113, 360826, '苑前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826114, 360826, '万合镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826115, 360826, '沿溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826200, 360826, '石山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826201, 360826, '南溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826202, 360826, '上模乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826203, 360826, '水槎乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826204, 360826, '上圯乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826205, 360826, '中龙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826402, 360826, '小龙矿区管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826404, 360826, '井冈山机场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826405, 360826, '泰和县高新产业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826501, 360826, '武山垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360826502, 360826, '综合垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827100, 360827, '泉江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827101, 360827, '雩田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827102, 360827, '碧洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827103, 360827, '草林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827104, 360827, '堆子前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827105, 360827, '左安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827106, 360827, '高坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827107, 360827, '大汾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827108, 360827, '衙前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827109, 360827, '禾源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827110, 360827, '汤湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827111, 360827, '枚江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827112, 360827, '珠田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827201, 360827, '巾石乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827202, 360827, '大坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827204, 360827, '双桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827205, 360827, '新江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827206, 360827, '五斗江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827207, 360827, '西溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827208, 360827, '南江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827209, 360827, '黄坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827210, 360827, '戴家埔乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827211, 360827, '营盘圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827402, 360827, '遂川县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827501, 360827, '五指峰林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360827502, 360827, '云岭林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828100, 360828, '芙蓉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828101, 360828, '五丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828102, 360828, '枧头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828103, 360828, '窑头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828104, 360828, '百嘉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828105, 360828, '高陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828106, 360828, '潞田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828107, 360828, '沙坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828108, 360828, '夏造镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828200, 360828, '罗塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828201, 360828, '弹前乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828202, 360828, '武术乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828203, 360828, '宝山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828204, 360828, '涧田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828205, 360828, '顺峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828206, 360828, '韶口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828401, 360828, '万安县工业园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360828501, 360828, '蔴源垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829100, 360829, '平都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829101, 360829, '浒坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829102, 360829, '洲湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829103, 360829, '横龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829104, 360829, '洋溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829105, 360829, '严田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829106, 360829, '枫田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829107, 360829, '羊狮慕镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829200, 360829, '竹江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829201, 360829, '瓜畲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829202, 360829, '钱山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829203, 360829, '赤谷乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829204, 360829, '山庄乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829205, 360829, '洋门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829206, 360829, '金田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829207, 360829, '彭坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829209, 360829, '寮塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829210, 360829, '甘洛乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829211, 360829, '章庄乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360829400, 360829, '江西安福高新技术产业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830001, 360830, '三月坪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830100, 360830, '禾川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830101, 360830, '石桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830102, 360830, '龙源口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830103, 360830, '澧田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830104, 360830, '龙门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830105, 360830, '沙市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830106, 360830, '文竹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830107, 360830, '埠前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830108, 360830, '怀忠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830109, 360830, '高桥楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830200, 360830, '坳南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830201, 360830, '曲白乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830202, 360830, '才丰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830203, 360830, '烟阁乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830204, 360830, '在中乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830205, 360830, '三湾乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830206, 360830, '台岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830207, 360830, '龙田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830208, 360830, '高溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830209, 360830, '莲洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830210, 360830, '高市乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830211, 360830, '象形乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830212, 360830, '芦溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360830400, 360830, '永新县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881002, 360881, '红星街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881100, 360881, '厦坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881101, 360881, '龙市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881102, 360881, '古城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881103, 360881, '新城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881105, 360881, '茨坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881106, 360881, '拿山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881107, 360881, '碧溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881108, 360881, '茅坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881109, 360881, '罗浮镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881201, 360881, '黄垇乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881206, 360881, '柏露乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881208, 360881, '葛田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881210, 360881, '睦村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881211, 360881, '东上乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881212, 360881, '光明乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881401, 360881, '井冈山自然保护区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881403, 360881, '井冈山市工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360881501, 360881, '白石垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902001, 360902, '灵泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902002, 360902, '秀江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902004, 360902, '湛郎街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902005, 360902, '珠泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902006, 360902, '化成街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902007, 360902, '官园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902008, 360902, '下浦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902009, 360902, '凤凰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902010, 360902, '金园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902011, 360902, '新康府街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902100, 360902, '彬江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902101, 360902, '西村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902102, 360902, '金瑞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902103, 360902, '温汤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902104, 360902, '三阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902105, 360902, '慈化镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902106, 360902, '天台镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902107, 360902, '洪塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902108, 360902, '渥江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902109, 360902, '新坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902110, 360902, '寨下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902111, 360902, '芦村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902112, 360902, '湖田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902113, 360902, '新田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902114, 360902, '南庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902115, 360902, '竹亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902116, 360902, '水江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902117, 360902, '辽市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902118, 360902, '洪江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902206, 360902, '楠木乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902210, 360902, '柏木乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902213, 360902, '飞剑潭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902400, 360902, '宜春经济开发区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902401, 360902, '袁州区工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902402, 360902, '宜春市明月山温泉风景名胜区管理局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902403, 360902, '宜春市宜阳新区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902501, 360902, '西岭布果园场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360902502, 360902, '明月山采育林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921100, 360921, '冯川镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921101, 360921, '赤岸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921102, 360921, '赤田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921103, 360921, '宋埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921104, 360921, '干洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921105, 360921, '澡下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921106, 360921, '会埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921107, 360921, '罗市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921108, 360921, '上富镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921109, 360921, '甘坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921200, 360921, '仰山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921201, 360921, '澡溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921202, 360921, '柳溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921400, 360921, '奉新县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921500, 360921, '石溪办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921501, 360921, '百丈山名胜风景区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921502, 360921, '干洲垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921503, 360921, '东风垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360921504, 360921, '农牧渔良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922001, 360922, '康乐街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922100, 360922, '株潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922101, 360922, '黄茅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922102, 360922, '潭埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922103, 360922, '双桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922104, 360922, '高村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922105, 360922, '罗城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922106, 360922, '三兴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922107, 360922, '高城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922108, 360922, '白良镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922200, 360922, '鹅峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922201, 360922, '马步乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922203, 360922, '赤兴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922204, 360922, '岭东乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922205, 360922, '白水乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922206, 360922, '仙源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922208, 360922, '茭湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360922400, 360922, '万载县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923001, 360923, '敖阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923002, 360923, '锦阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923100, 360923, '田心镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923101, 360923, '徐家渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923102, 360923, '锦江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923103, 360923, '泗溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923104, 360923, '翰堂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923105, 360923, '南港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923106, 360923, '敖山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923107, 360923, '新界埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923108, 360923, '蒙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923200, 360923, '芦洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923201, 360923, '塔下乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923203, 360923, '镇渡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923204, 360923, '野市乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923206, 360923, '墨山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923400, 360923, '上高县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360923501, 360923, '上甘山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924100, 360924, '新昌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924101, 360924, '澄塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924102, 360924, '棠浦镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924103, 360924, '新庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924104, 360924, '潭山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924105, 360924, '芳溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924106, 360924, '石市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924107, 360924, '黄岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924200, 360924, '花桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924201, 360924, '同安乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924202, 360924, '天宝乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924204, 360924, '桥西乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924400, 360924, '宜丰县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924500, 360924, '车上林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924501, 360924, '双峰林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924502, 360924, '石花尖垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360924503, 360924, '黄岗山垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925100, 360925, '双溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925101, 360925, '仁首镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925102, 360925, '宝峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925103, 360925, '高湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925104, 360925, '璪都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925105, 360925, '官庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925200, 360925, '香田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925201, 360925, '水口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925202, 360925, '中源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925205, 360925, '三爪仑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925206, 360925, '雷公尖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360925400, 360925, '靖安县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926100, 360926, '永宁镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926101, 360926, '温泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926102, 360926, '棋坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926103, 360926, '排埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926104, 360926, '三都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926105, 360926, '大塅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926200, 360926, '高桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926201, 360926, '港口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926202, 360926, '带溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926404, 360926, '江西铜鼓工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926500, 360926, '花山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926501, 360926, '大沩山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926502, 360926, '茶山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360926503, 360926, '龙门林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981002, 360981, '剑光街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981006, 360981, '河洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981007, 360981, '剑南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981008, 360981, '孙渡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981009, 360981, '尚庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981010, 360981, '龙津洲街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981101, 360981, '白土镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981102, 360981, '袁渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981104, 360981, '张巷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981105, 360981, '杜市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981106, 360981, '淘沙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981107, 360981, '秀市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981109, 360981, '洛市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981110, 360981, '铁路镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981111, 360981, '丽村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981115, 360981, '董家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981116, 360981, '隍城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981119, 360981, '小港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981120, 360981, '石滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981121, 360981, '桥东镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981122, 360981, '荣塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981123, 360981, '拖船镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981124, 360981, '泉港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981125, 360981, '梅林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981126, 360981, '曲江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981127, 360981, '上塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981201, 360981, '筱塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981202, 360981, '段潭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981203, 360981, '蕉坑乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981204, 360981, '石江乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981205, 360981, '荷湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981206, 360981, '湖塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981207, 360981, '同田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360981402, 360981, '宜春丰城高新技术产业开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982001, 360982, '淦阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982002, 360982, '鹿江街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982003, 360982, '福城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982004, 360982, '大桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982005, 360982, '张家山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982100, 360982, '临江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982101, 360982, '永泰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982102, 360982, '黄土岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982103, 360982, '经楼镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982104, 360982, '昌傅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982105, 360982, '店下镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982106, 360982, '阁山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982107, 360982, '刘公庙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982108, 360982, '观上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982109, 360982, '义成镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982200, 360982, '中洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982201, 360982, '洲上乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982202, 360982, '洋湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982203, 360982, '吴城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982400, 360982, '樟树市工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982401, 360982, '滨江新城', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360982500, 360982, '省双金园艺场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983001, 360983, '瑞州街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983002, 360983, '筠阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983100, 360983, '蓝坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983101, 360983, '荷岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983102, 360983, '黄沙岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983103, 360983, '新街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983104, 360983, '八景镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983105, 360983, '独城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983106, 360983, '太阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983107, 360983, '建山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983108, 360983, '田南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983109, 360983, '相城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983110, 360983, '灰埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983111, 360983, '石脑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983112, 360983, '龙潭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983113, 360983, '杨圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983114, 360983, '村前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983115, 360983, '伍桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983116, 360983, '祥符镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983117, 360983, '大城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983118, 360983, '华林山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983200, 360983, '上湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983201, 360983, '汪家圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983400, 360983, '高安市新世纪工业城管委会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983405, 360983, '江西新茂实业公司', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983500, 360983, '相城垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983501, 360983, '上游水库工程管理局', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (360983502, 360983, '江西省瑞州监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002001, 361002, '青云街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002002, 361002, '西大街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002003, 361002, '荆公路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002004, 361002, '六水桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002005, 361002, '文昌街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002091, 361002, '城西街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002092, 361002, '钟岭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002100, 361002, '上顿渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002101, 361002, '温泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002102, 361002, '高坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002103, 361002, '秋溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002104, 361002, '荣山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002105, 361002, '龙溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002107, 361002, '大岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002108, 361002, '云山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002109, 361002, '唱凯镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002110, 361002, '罗针镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002111, 361002, '罗湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002112, 361002, '太阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002113, 361002, '东馆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002114, 361002, '腾桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002115, 361002, '青泥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002116, 361002, '孝桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002117, 361002, '抚北镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002118, 361002, '展坪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002190, 361002, '崇岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002201, 361002, '连城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002202, 361002, '桐源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002203, 361002, '湖南乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002204, 361002, '七里岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002205, 361002, '嵩湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002206, 361002, '鹏田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002207, 361002, '茅排乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002208, 361002, '河埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002400, 361002, '荣山垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002401, 361002, '七里岗垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361002500, 361002, '开发区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003001, 361003, '金峰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003100, 361003, '孝岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003101, 361003, '小璜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003102, 361003, '圩上桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003103, 361003, '马圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003104, 361003, '詹圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003105, 361003, '岗上积镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003106, 361003, '杨桥殿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003107, 361003, '黎圩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003108, 361003, '王桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003200, 361003, '珀玕乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003201, 361003, '邓家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003202, 361003, '虎圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003203, 361003, '瑶圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003400, 361003, '红星垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003401, 361003, '红光垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003402, 361003, '红亮垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003403, 361003, '甘坑生态林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361003406, 361003, '东乡县经济开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021100, 361021, '建昌镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021101, 361021, '株良镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021102, 361021, '上唐镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021103, 361021, '里塔镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021104, 361021, '洪门镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021105, 361021, '沙洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021106, 361021, '龙湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021107, 361021, '新丰街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021108, 361021, '万坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021109, 361021, '徐家镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021201, 361021, '天井源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021203, 361021, '浔溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361021400, 361021, '南城县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022100, 361022, '日峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022101, 361022, '宏村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022102, 361022, '洵口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022103, 361022, '熊村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022104, 361022, '龙安镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022105, 361022, '德胜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022106, 361022, '华山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022200, 361022, '潭溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022201, 361022, '湖坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022202, 361022, '荷源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022203, 361022, '厚村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022204, 361022, '社苹乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022205, 361022, '樟溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022206, 361022, '西城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022207, 361022, '中田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022401, 361022, '黎川县工业园区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361022500, 361022, '德胜企业集团', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023100, 361023, '琴城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023101, 361023, '太和镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023102, 361023, '白舍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023103, 361023, '市山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023104, 361023, '洽湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023105, 361023, '桑田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023106, 361023, '紫霄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023200, 361023, '三溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023201, 361023, '东坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023202, 361023, '莱溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023203, 361023, '太源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023204, 361023, '傅坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023400, 361023, '南丰县长红垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361023500, 361023, '南丰工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024100, 361024, '巴山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024101, 361024, '相山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024102, 361024, '航埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024103, 361024, '孙坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024104, 361024, '河上镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024105, 361024, '礼陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024106, 361024, '马鞍镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024200, 361024, '石庄乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024201, 361024, '六家桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024202, 361024, '白路乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024203, 361024, '三山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024204, 361024, '白陂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024205, 361024, '桃源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024206, 361024, '许坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361024207, 361024, '郭圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025100, 361025, '鳌溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025101, 361025, '公溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025102, 361025, '山砀镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025103, 361025, '龚坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025104, 361025, '戴坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025105, 361025, '牛田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025106, 361025, '万崇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025107, 361025, '增田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025108, 361025, '招携镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025200, 361025, '湖溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025201, 361025, '罗陂乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025202, 361025, '湖坪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025203, 361025, '南村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025204, 361025, '谷岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025205, 361025, '金竹畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361025206, 361025, '大马头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026100, 361026, '凤冈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026101, 361026, '棠阴镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026102, 361026, '黄陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026103, 361026, '东陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026104, 361026, '梨溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026105, 361026, '二都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026106, 361026, '中港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026107, 361026, '桃陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026201, 361026, '新丰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026202, 361026, '神岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026203, 361026, '圳口乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026204, 361026, '南源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026400, 361026, '黄柏岭垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026401, 361026, '青年垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361026500, 361026, '宜黄县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027100, 361027, '秀谷镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027101, 361027, '浒湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027102, 361027, '双塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027103, 361027, '何源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027104, 361027, '合市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027105, 361027, '琅琚镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027106, 361027, '左坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027107, 361027, '对桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027200, 361027, '黄通乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027202, 361027, '陆坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027203, 361027, '陈坊积乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027204, 361027, '琉璃乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027205, 361027, '石门乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027400, 361027, '华侨管理区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361027401, 361027, '江西金溪工业园区管理委员会', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028100, 361028, '鹤城镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028101, 361028, '马头山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028102, 361028, '高阜镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028103, 361028, '嵩市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028104, 361028, '乌石镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028200, 361028, '高田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361028201, 361028, '石峡乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030100, 361030, '旴江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030101, 361030, '头陂镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030103, 361030, '赤水镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030104, 361030, '驿前镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030105, 361030, '甘竹镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030106, 361030, '塘坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030200, 361030, '千善乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030201, 361030, '水南圩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030202, 361030, '长桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030203, 361030, '杨溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030204, 361030, '尖峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030400, 361030, '翠雷山垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361030500, 361030, '广昌县工业园区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102001, 361102, '水南街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102002, 361102, '东市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102003, 361102, '西市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102004, 361102, '北门街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102005, 361102, '茅家岭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102006, 361102, '灵溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102100, 361102, '沙溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102102, 361102, '朝阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361102103, 361102, '秦峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103001, 361103, '永丰街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103002, 361103, '芦林街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103003, 361103, '丰溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103004, 361103, '下溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103005, 361103, '大石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103101, 361103, '五都镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103102, 361103, '洋口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103103, 361103, '横山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103104, 361103, '桐畈镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103105, 361103, '湖丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103106, 361103, '大南镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103107, 361103, '排山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103108, 361103, '毛村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103109, 361103, '枧底镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103110, 361103, '泉波镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103111, 361103, '壶峤镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103112, 361103, '霞峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103114, 361103, '吴村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103115, 361103, '沙田镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103116, 361103, '铜钹山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103202, 361103, '东阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103204, 361103, '嵩峰乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103206, 361103, '少阳乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361103500, 361103, '铜拔山垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104001, 361104, '旭日街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104002, 361104, '罗桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104003, 361104, '兴园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104101, 361104, '田墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104102, 361104, '上泸镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104103, 361104, '华坛山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104104, 361104, '茶亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104105, 361104, '皂头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104106, 361104, '四十八镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104107, 361104, '枫岭头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104108, 361104, '煌固镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104109, 361104, '花厅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104110, 361104, '五府山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104111, 361104, '郑坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104200, 361104, '望仙乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104201, 361104, '石人乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104202, 361104, '清水乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104203, 361104, '石狮乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104204, 361104, '湖村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104207, 361104, '尊桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104209, 361104, '应家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104210, 361104, '黄沙岭乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104211, 361104, '铁山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361104290, 361104, '董团乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123002, 361123, '冰溪街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123003, 361123, '文成街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123101, 361123, '临湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123102, 361123, '必姆镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123103, 361123, '横街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123105, 361123, '下镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123107, 361123, '岩瑞镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123108, 361123, '双明镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123109, 361123, '紫湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123110, 361123, '仙岩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123111, 361123, '樟村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123112, 361123, '枫林镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123200, 361123, '南山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123201, 361123, '怀玉乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123202, 361123, '下塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123203, 361123, '四股桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123204, 361123, '六都乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361123290, 361123, '三清乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124100, 361124, '河口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124101, 361124, '永平镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124102, 361124, '石塘镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124103, 361124, '鹅湖镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124105, 361124, '湖坊镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124106, 361124, '武夷山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124108, 361124, '汪二镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124109, 361124, '葛仙山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124200, 361124, '陈坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124201, 361124, '虹桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124202, 361124, '新滩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124205, 361124, '稼轩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124206, 361124, '英将乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124207, 361124, '紫溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124208, 361124, '太源畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124209, 361124, '天柱山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124210, 361124, '篁碧畲族乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124407, 361124, '铅山县青溪服务中心', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361124501, 361124, '铅山县国营森林苗圃', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125001, 361125, '兴安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125100, 361125, '岑阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125101, 361125, '葛源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125200, 361125, '姚家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125201, 361125, '莲荷乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125202, 361125, '司铺乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125203, 361125, '港边乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125204, 361125, '龙门畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125205, 361125, '青板乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125401, 361125, '红桥垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125502, 361125, '上坑源林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125503, 361125, '山黄林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361125504, 361125, '新篁办事处', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126001, 361126, '桃源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126002, 361126, '花亭街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126003, 361126, '南岩街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126101, 361126, '曹溪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126102, 361126, '漆工镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126103, 361126, '樟树墩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126105, 361126, '朱坑镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126106, 361126, '圭峰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126107, 361126, '叠山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126108, 361126, '港口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126109, 361126, '弋江镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126110, 361126, '三县岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126202, 361126, '中畈乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126203, 361126, '葛溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126204, 361126, '湾里乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126206, 361126, '清湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361126207, 361126, '旭光乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127100, 361127, '玉亭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127101, 361127, '瑞洪镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127102, 361127, '黄金埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127104, 361127, '古埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127105, 361127, '乌泥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127106, 361127, '石口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127107, 361127, '杨埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127108, 361127, '九龙镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127109, 361127, '社赓镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127200, 361127, '康山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127202, 361127, '东塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127204, 361127, '大塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127206, 361127, '鹭鸶港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127207, 361127, '三塘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127209, 361127, '洪家嘴乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127210, 361127, '白马桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127211, 361127, '江埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127213, 361127, '枫港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127214, 361127, '大溪乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127217, 361127, '梅港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127400, 361127, '余干县城市社区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127500, 361127, '渔池湖水产场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127501, 361127, '县良种场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127502, 361127, '李梅林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127503, 361127, '康山垦总场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127504, 361127, '禾斛岭垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127505, 361127, '峡山林场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361127506, 361127, '信丰垦殖场', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128001, 361128, '饶州街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128100, 361128, '鄱阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128101, 361128, '谢家滩镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128102, 361128, '石门街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128103, 361128, '四十里街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128104, 361128, '油墩街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128105, 361128, '田畈街镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128106, 361128, '金盘岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128107, 361128, '高家岭镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128108, 361128, '凰岗镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128109, 361128, '双港镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128110, 361128, '古县渡镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128111, 361128, '饶丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128112, 361128, '乐丰镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128113, 361128, '饶埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128201, 361128, '侯家岗乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128202, 361128, '莲花山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128203, 361128, '响水滩乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128206, 361128, '枧田街乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128207, 361128, '柘港乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128208, 361128, '鸦鹊湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128209, 361128, '银宝湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128210, 361128, '游城乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128211, 361128, '珠湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128212, 361128, '白沙洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128213, 361128, '团林乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128215, 361128, '昌洲乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128216, 361128, '三庙前乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128217, 361128, '莲湖乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128218, 361128, '芦田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128401, 361128, '农科所', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361128402, 361128, '饶州监狱', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129100, 361129, '陈营镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129101, 361129, '石镇镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129102, 361129, '青云镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129103, 361129, '梓埠镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129104, 361129, '大源镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129105, 361129, '裴梅镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129200, 361129, '湖云乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129201, 361129, '齐埠乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129203, 361129, '汪家乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129205, 361129, '上坊乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129206, 361129, '苏桥乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361129208, 361129, '珠田乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130001, 361130, '蚺城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130100, 361130, '紫阳镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130101, 361130, '清华镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130102, 361130, '秋口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130103, 361130, '江湾镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130104, 361130, '思口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130106, 361130, '赋春镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130107, 361130, '镇头镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130109, 361130, '太白镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130110, 361130, '中云镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130111, 361130, '许村镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130200, 361130, '溪头乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130201, 361130, '段莘乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130204, 361130, '浙源乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130205, 361130, '沱川乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130206, 361130, '大鄣山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361130208, 361130, '珍珠山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181001, 361181, '银城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181002, 361181, '新营街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181003, 361181, '香屯街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181004, 361181, '铜矿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181103, 361181, '绕二镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181105, 361181, '海口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181106, 361181, '新岗山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181107, 361181, '泗洲镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181108, 361181, '大茅山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181190, 361181, '花桥镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181200, 361181, '黄柏乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181201, 361181, '万村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181202, 361181, '张村乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181203, 361181, '昄大乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181204, 361181, '李宅乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (361181205, 361181, '龙头山乡', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102001, 370102, '解放路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102002, 370102, '千佛山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102003, 370102, '趵突泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102004, 370102, '泉城路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102005, 370102, '大明湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102006, 370102, '东关街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102007, 370102, '文东街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102008, 370102, '建新街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102009, 370102, '甸柳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102010, 370102, '燕山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102011, 370102, '姚家街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102012, 370102, '龙洞街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370102013, 370102, '智远街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103002, 370103, '大观园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103003, 370103, '杆石桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103004, 370103, '四里村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103006, 370103, '魏家庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103008, 370103, '二七街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103009, 370103, '七里山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103010, 370103, '六里山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103012, 370103, '舜玉路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103014, 370103, '泺源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103015, 370103, '王官庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103016, 370103, '舜耕街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103017, 370103, '白马山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103018, 370103, '七贤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103019, 370103, '十六里河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103020, 370103, '兴隆街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103021, 370103, '党家街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370103022, 370103, '陡沟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104001, 370104, '振兴街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104002, 370104, '中大槐树街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104003, 370104, '道德街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104004, 370104, '西市场街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104005, 370104, '五里沟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104006, 370104, '营市街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104007, 370104, '青年公园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104008, 370104, '南辛庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104009, 370104, '段店北路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104010, 370104, '张庄路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104011, 370104, '匡山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104012, 370104, '美里湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104013, 370104, '腊山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104014, 370104, '兴福街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104015, 370104, '玉清湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370104016, 370104, '吴家堡街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105001, 370105, '无影山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105003, 370105, '天桥东街街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105004, 370105, '北村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105005, 370105, '南村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105006, 370105, '堤口路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105007, 370105, '北坦街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105009, 370105, '制锦市街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105010, 370105, '宝华街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105011, 370105, '官扎营街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105012, 370105, '纬北路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105013, 370105, '药山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105014, 370105, '北园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105015, 370105, '泺口街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105016, 370105, '桑梓店街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370105017, 370105, '大桥街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112001, 370112, '山大路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112002, 370112, '洪家楼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112003, 370112, '东风街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112004, 370112, '全福街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112007, 370112, '华山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112008, 370112, '荷花路街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112009, 370112, '王舍人街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112010, 370112, '鲍山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112011, 370112, '郭店街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112012, 370112, '唐冶街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112013, 370112, '港沟街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112016, 370112, '董家街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112017, 370112, '彩石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112018, 370112, '仲宫街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112019, 370112, '柳埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112020, 370112, '唐王街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370112021, 370112, '西营街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113001, 370113, '文昌街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113002, 370113, '崮云湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113003, 370113, '平安街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113004, 370113, '五峰山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113005, 370113, '归德街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113006, 370113, '张夏街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113007, 370113, '万德街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113008, 370113, '孝里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113107, 370113, '马山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370113108, 370113, '双泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114001, 370114, '明水街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114002, 370114, '双山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114003, 370114, '枣园街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114004, 370114, '龙山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114005, 370114, '埠村街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114006, 370114, '圣井街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114007, 370114, '普集街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114008, 370114, '绣惠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114009, 370114, '相公庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114010, 370114, '文祖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114011, 370114, '官庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114012, 370114, '高官寨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114013, 370114, '白云湖街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114014, 370114, '宁家埠街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114015, 370114, '曹范街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114016, 370114, '刁镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114017, 370114, '黄河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370114101, 370114, '垛庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115001, 370115, '济阳街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115002, 370115, '济北街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115003, 370115, '崔寨街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115004, 370115, '孙耿街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115005, 370115, '回河街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115006, 370115, '太平街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115007, 370115, '垛石街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115008, 370115, '曲堤街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115104, 370115, '仁风镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370115110, 370115, '新市镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116001, 370116, '凤城街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116002, 370116, '张家洼街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116003, 370116, '高庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116004, 370116, '鹏泉街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116005, 370116, '口镇街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116006, 370116, '羊里街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116007, 370116, '方下街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116008, 370116, '雪野街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116103, 370116, '牛泉镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116104, 370116, '苗山镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116106, 370116, '大王庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116107, 370116, '寨里镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116108, 370116, '杨庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116109, 370116, '茶业口镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370116110, 370116, '和庄镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117001, 370117, '艾山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117002, 370117, '里辛街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117003, 370117, '汶源街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117004, 370117, '颜庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117005, 370117, '辛庄街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117400, 370117, '棋山国家森林公园', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370117401, 370117, '高新技术开发区', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124001, 370124, '榆山街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124002, 370124, '锦水街道', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124102, 370124, '东阿镇', 4, '2022-11-09 10:39:26', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124103, 370124, '孝直镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124104, 370124, '孔村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124105, 370124, '洪范池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124106, 370124, '玫瑰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370124107, 370124, '安城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126001, 370126, '许商街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126101, 370126, '殷巷镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126102, 370126, '怀仁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126104, 370126, '龙桑寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126105, 370126, '郑路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126106, 370126, '贾庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126107, 370126, '玉皇庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126108, 370126, '白桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126109, 370126, '孙集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126110, 370126, '韩庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126111, 370126, '沙河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126112, 370126, '张坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370126400, 370126, '商河经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370171001, 370171, '舜华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370171002, 370171, '孙村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370171003, 370171, '巨野河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370171004, 370171, '遥墙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370171005, 370171, '临港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370171401, 370171, '章锦街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202001, 370202, '香港中路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202002, 370202, '八大峡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202004, 370202, '云南路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202005, 370202, '中山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202007, 370202, '江苏路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202009, 370202, '八大关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202010, 370202, '湛山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202011, 370202, '金湖路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202012, 370202, '八大湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202013, 370202, '金门路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370202014, 370202, '珠海路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203005, 370203, '辽宁路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203008, 370203, '延安路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203011, 370203, '登州路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203013, 370203, '宁夏路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203014, 370203, '敦化路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203015, 370203, '辽源路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203016, 370203, '合肥路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203019, 370203, '大港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203020, 370203, '即墨路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203021, 370203, '台东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203022, 370203, '镇江路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203025, 370203, '浮山新区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203026, 370203, '阜新路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203027, 370203, '海伦路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203028, 370203, '四方街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203029, 370203, '兴隆路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203030, 370203, '水清沟街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203031, 370203, '洛阳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203032, 370203, '河西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203033, 370203, '湖岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203034, 370203, '开平路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370203035, 370203, '双山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211001, 370211, '黄岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211002, 370211, '辛安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211003, 370211, '薛家岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211004, 370211, '灵珠山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211005, 370211, '长江路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211006, 370211, '红石崖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211007, 370211, '灵山卫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211009, 370211, '珠海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211010, 370211, '隐珠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211011, 370211, '铁山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211012, 370211, '滨海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211013, 370211, '胶南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211014, 370211, '王台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211015, 370211, '张家楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211102, 370211, '琅琊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211103, 370211, '泊里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211104, 370211, '大场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211105, 370211, '大村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211106, 370211, '六汪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211107, 370211, '海青镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211108, 370211, '宝山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211109, 370211, '藏马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370211401, 370211, '灵山岛省级自然保护区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370212001, 370212, '中韩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370212002, 370212, '沙子口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370212003, 370212, '王哥庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370212004, 370212, '北宅街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370212005, 370212, '金家岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213001, 370213, '振华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213003, 370213, '沧口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213004, 370213, '兴华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213005, 370213, '兴城路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213006, 370213, '李村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213007, 370213, '虎山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213008, 370213, '浮山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213010, 370213, '湘潭路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213011, 370213, '楼山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213012, 370213, '九水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370213013, 370213, '世园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214001, 370214, '城阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214002, 370214, '夏庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214003, 370214, '流亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214004, 370214, '棘洪滩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214005, 370214, '上马街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214008, 370214, '惜福镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214009, 370214, '红岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370214010, 370214, '河套街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215001, 370215, '环秀街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215002, 370215, '潮海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215003, 370215, '通济街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215004, 370215, '北安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215005, 370215, '龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215006, 370215, '龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215007, 370215, '鳌山卫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215008, 370215, '温泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215009, 370215, '灵山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215010, 370215, '蓝村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215011, 370215, '大信街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215100, 370215, '田横镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215101, 370215, '金口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215103, 370215, '段泊岚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215104, 370215, '移风店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215400, 370215, '通济新经济区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370215402, 370215, '田横岛省级旅游度假区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370271400, 370271, '北部园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281001, 370281, '阜安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281002, 370281, '中云街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281004, 370281, '三里河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281006, 370281, '九龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281007, 370281, '胶东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281008, 370281, '胶北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281009, 370281, '胶西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281010, 370281, '胶莱街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281102, 370281, '李哥庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281105, 370281, '铺集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281108, 370281, '里岔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281111, 370281, '洋河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281400, 370281, '胶州经济技术开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370281401, 370281, '大沽河省级生态旅游度假区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283001, 370283, '东阁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283002, 370283, '李园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283003, 370283, '同和街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283004, 370283, '凤台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283005, 370283, '白沙河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283101, 370283, '古岘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283102, 370283, '仁兆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283105, 370283, '南村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283108, 370283, '蓼兰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283109, 370283, '崔家集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283110, 370283, '明村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283113, 370283, '田庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283116, 370283, '新河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283119, 370283, '店子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283120, 370283, '大泽山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283122, 370283, '旧店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283124, 370283, '云山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370283400, 370283, '平度经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285001, 370285, '水集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285002, 370285, '望城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285007, 370285, '沽河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285101, 370285, '姜山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285102, 370285, '夏格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285104, 370285, '院上镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285105, 370285, '日庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285106, 370285, '南墅镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285107, 370285, '河头店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285108, 370285, '店埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285116, 370285, '马连庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370285400, 370285, '莱西经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302001, 370302, '般阳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302002, 370302, '松龄路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302004, 370302, '钟楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302005, 370302, '将军路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302102, 370302, '昆仑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302104, 370302, '岭子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302111, 370302, '西河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302112, 370302, '龙泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302113, 370302, '寨里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302114, 370302, '罗村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302115, 370302, '洪山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302116, 370302, '双杨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370302117, 370302, '太河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303001, 370303, '车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303002, 370303, '公园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303003, 370303, '湖田街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303004, 370303, '和平街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303005, 370303, '科苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303006, 370303, '体育场街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303008, 370303, '四宝山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303009, 370303, '马尚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303101, 370303, '南定镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303102, 370303, '沣水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303104, 370303, '傅家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303105, 370303, '中埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370303107, 370303, '房镇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304001, 370304, '城东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304002, 370304, '城西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304004, 370304, '山头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304102, 370304, '域城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304103, 370304, '白塔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304106, 370304, '八陡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304108, 370304, '石马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304111, 370304, '源泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304112, 370304, '池上镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370304113, 370304, '博山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305001, 370305, '闻韶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305002, 370305, '雪宫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305003, 370305, '辛店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305004, 370305, '稷下街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305005, 370305, '齐陵街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305100, 370305, '齐都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305102, 370305, '皇城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305103, 370305, '敬仲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305104, 370305, '朱台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305107, 370305, '金岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305109, 370305, '凤凰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370305111, 370305, '金山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306001, 370306, '丝绸路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306002, 370306, '大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306003, 370306, '青年路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306004, 370306, '永安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306005, 370306, '城北路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306100, 370306, '北郊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306101, 370306, '南郊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306102, 370306, '王村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306103, 370306, '萌水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370306104, 370306, '商家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321001, 370321, '索镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321002, 370321, '少海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321101, 370321, '起凤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321103, 370321, '田庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321104, 370321, '荆家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321105, 370321, '马桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321107, 370321, '新城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321109, 370321, '唐山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370321110, 370321, '果里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322001, 370322, '田镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322002, 370322, '芦湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322101, 370322, '青城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322102, 370322, '高城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322103, 370322, '黑里寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322104, 370322, '唐坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322105, 370322, '常家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322106, 370322, '花沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370322108, 370322, '木李镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323001, 370323, '历山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323002, 370323, '南麻街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323102, 370323, '鲁村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323103, 370323, '东里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323104, 370323, '悦庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323105, 370323, '西里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323106, 370323, '大张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323107, 370323, '中庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323108, 370323, '张家坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323109, 370323, '燕崖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323110, 370323, '石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370323111, 370323, '南鲁山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402001, 370402, '中心街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402002, 370402, '各塔埠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402003, 370402, '矿区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402004, 370402, '文化路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402005, 370402, '龙山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402006, 370402, '光明路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402101, 370402, '税郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402102, 370402, '孟庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402103, 370402, '齐村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402104, 370402, '永安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370402105, 370402, '西王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403001, 370403, '临城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403002, 370403, '兴仁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403003, 370403, '兴城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403004, 370403, '张范街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403005, 370403, '常庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403101, 370403, '沙沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403102, 370403, '周营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403103, 370403, '邹坞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370403104, 370403, '陶庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404001, 370404, '坛山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404002, 370404, '吴林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404100, 370404, '古邵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404101, 370404, '阴平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404102, 370404, '底阁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404103, 370404, '榴园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370404104, 370404, '峨山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370405001, 370405, '运河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370405100, 370405, '邳庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370405101, 370405, '张山子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370405102, 370405, '泥沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370405103, 370405, '涧头集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370405104, 370405, '马兰屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406001, 370406, '山城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406101, 370406, '店子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406102, 370406, '西集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406103, 370406, '桑村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406104, 370406, '北庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406105, 370406, '城头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406106, 370406, '徐庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406107, 370406, '水泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406108, 370406, '冯卯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406109, 370406, '凫城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370406405, 370406, '山亭经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481001, 370481, '荆河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481002, 370481, '龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481003, 370481, '北辛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481004, 370481, '善南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481005, 370481, '东沙河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481101, 370481, '洪绪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481102, 370481, '南沙河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481103, 370481, '大坞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481104, 370481, '滨湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481105, 370481, '级索镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481106, 370481, '西岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481107, 370481, '姜屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481108, 370481, '鲍沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481109, 370481, '张汪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481110, 370481, '官桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481111, 370481, '柴胡店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481112, 370481, '羊庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481113, 370481, '木石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481114, 370481, '界河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481115, 370481, '龙阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370481116, 370481, '东郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502001, 370502, '文汇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502002, 370502, '黄河路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502003, 370502, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502004, 370502, '辛店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502005, 370502, '胜利街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502006, 370502, '胜园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502102, 370502, '牛庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502103, 370502, '六户镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502104, 370502, '史口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502105, 370502, '龙居镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370502400, 370502, '东营商贸园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503001, 370503, '河口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503002, 370503, '六合街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503100, 370503, '义和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503101, 370503, '仙河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503102, 370503, '孤岛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503103, 370503, '新户镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503400, 370503, '河口经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370503401, 370503, '河口蓝色经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505001, 370505, '垦利街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505002, 370505, '兴隆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505101, 370505, '胜坨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505102, 370505, '郝家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505104, 370505, '永安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505105, 370505, '黄河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505106, 370505, '董集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505400, 370505, '开发区类似乡级单位', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505402, 370505, '红光类似乡级单位', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505403, 370505, '垦东类似乡级单位', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370505404, 370505, '东营市现代畜牧业示范区类似乡级单位', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522001, 370522, '利津街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522002, 370522, '凤凰城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522101, 370522, '北宋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522102, 370522, '盐窝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522103, 370522, '陈庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522104, 370522, '汀罗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522201, 370522, '明集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522206, 370522, '刁口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370522400, 370522, '利津县经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523001, 370523, '广饶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523002, 370523, '乐安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523003, 370523, '丁庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523101, 370523, '大王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523102, 370523, '稻庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523106, 370523, '李鹊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523107, 370523, '大码头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523108, 370523, '花官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523109, 370523, '陈官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523400, 370523, '东营农业高新技术产业示范区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370523401, 370523, '滨海新动能产业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370571400, 370571, '经济开发区直属乡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370572402, 370572, '经济开发区直属乡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602001, 370602, '向阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602002, 370602, '东山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602003, 370602, '毓璜顶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602004, 370602, '通伸街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602005, 370602, '凤凰台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602006, 370602, '奇山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602007, 370602, '白石街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602008, 370602, '芝罘岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602009, 370602, '黄务街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602010, 370602, '只楚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602011, 370602, '世回尧街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370602012, 370602, '幸福街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611001, 370611, '清洋街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611002, 370611, '福新街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611006, 370611, '东厅街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611007, 370611, '门楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611102, 370611, '高疃镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611103, 370611, '张格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611104, 370611, '回里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611105, 370611, '臧家庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370611401, 370611, '山东烟台福山经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612001, 370612, '宁海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612002, 370612, '文化街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612004, 370612, '武宁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612005, 370612, '大窑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612006, 370612, '姜格庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612101, 370612, '观水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612105, 370612, '龙泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612106, 370612, '玉林店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612107, 370612, '水道镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612109, 370612, '高陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612110, 370612, '王格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612111, 370612, '昆嵛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370612112, 370612, '莒格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370613001, 370613, '黄海路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370613002, 370613, '初家街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370613003, 370613, '滨海路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370613004, 370613, '解甲庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370613005, 370613, '莱山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370613006, 370613, '院格庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614001, 370614, '登州街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614002, 370614, '紫荆山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614003, 370614, '新港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614004, 370614, '蓬莱阁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614005, 370614, '南王街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614006, 370614, '南长山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614102, 370614, '刘家沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614103, 370614, '潮水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614105, 370614, '大柳行镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614106, 370614, '小门家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614107, 370614, '大辛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614108, 370614, '村里集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614109, 370614, '北沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614110, 370614, '砣矶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614201, 370614, '北长山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614202, 370614, '黑山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614203, 370614, '大钦岛乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614204, 370614, '小钦岛乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614205, 370614, '南隍城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370614206, 370614, '北隍城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370671007, 370671, '马山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370672003, 370672, '古现街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370672004, 370672, '大季家街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370672008, 370672, '福莱山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681001, 370681, '东莱街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681002, 370681, '龙港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681003, 370681, '新嘉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681004, 370681, '徐福街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681005, 370681, '东江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681102, 370681, '黄山馆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681103, 370681, '北马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681104, 370681, '芦头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681106, 370681, '下丁家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681107, 370681, '七甲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681108, 370681, '石良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681109, 370681, '兰高镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681110, 370681, '诸由观镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370681401, 370681, '山东龙口高新技术产业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682001, 370682, '城厢街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682002, 370682, '古柳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682003, 370682, '龙旺庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682004, 370682, '冯格庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682005, 370682, '柏林庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682101, 370682, '沐浴店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682102, 370682, '团旺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682103, 370682, '穴坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682104, 370682, '羊郡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682105, 370682, '姜疃镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682106, 370682, '万第镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682107, 370682, '照旺庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682108, 370682, '谭格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682110, 370682, '河洛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682111, 370682, '吕格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682112, 370682, '高格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682113, 370682, '大夼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370682114, 370682, '山前店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683001, 370683, '文昌路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683002, 370683, '永安路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683003, 370683, '三山岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683004, 370683, '城港路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683005, 370683, '文峰路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683006, 370683, '金仓街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683101, 370683, '沙河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683102, 370683, '朱桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683103, 370683, '郭家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683104, 370683, '金城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683105, 370683, '平里店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683106, 370683, '驿道镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683107, 370683, '程郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683108, 370683, '虎头崖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683109, 370683, '柞村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683110, 370683, '夏邱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370683111, 370683, '土山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685001, 370685, '罗峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685002, 370685, '泉山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685003, 370685, '梦芝街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685004, 370685, '温泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685005, 370685, '大秦家街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685101, 370685, '辛庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685102, 370685, '蚕庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685103, 370685, '金岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685104, 370685, '毕郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685105, 370685, '玲珑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685106, 370685, '张星镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685108, 370685, '夏甸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685109, 370685, '阜山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370685110, 370685, '齐山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686001, 370686, '翠屏街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686002, 370686, '庄园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686003, 370686, '松山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686101, 370686, '观里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686102, 370686, '蛇窝泊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686103, 370686, '唐家泊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686104, 370686, '桃村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686105, 370686, '亭口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686107, 370686, '寺口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686108, 370686, '苏家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686109, 370686, '杨础镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686110, 370686, '西城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686111, 370686, '官道镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370686113, 370686, '庙后镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687001, 370687, '方圆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687002, 370687, '东村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687003, 370687, '凤城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687004, 370687, '龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687102, 370687, '留格庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687103, 370687, '盘石店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687104, 370687, '郭城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687105, 370687, '徐家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687106, 370687, '发城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687107, 370687, '小纪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687108, 370687, '行村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687109, 370687, '辛安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687110, 370687, '二十里店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687112, 370687, '朱吴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687401, 370687, '外向型工业加工区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687402, 370687, '碧城工业区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687403, 370687, '旅游度假区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370687404, 370687, '核电装备制造工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702001, 370702, '城关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702002, 370702, '南关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702003, 370702, '西关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702004, 370702, '北关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702005, 370702, '于河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702006, 370702, '望留街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370702400, 370702, '潍城经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370703001, 370703, '寒亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370703002, 370703, '开元街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370703003, 370703, '固堤街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370703006, 370703, '高里街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370703007, 370703, '朱里街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704003, 370704, '凤凰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704004, 370704, '坊安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704005, 370704, '坊城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704006, 370704, '九龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704007, 370704, '黄旗堡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704008, 370704, '太保庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370704009, 370704, '王家庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705001, 370705, '东关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705002, 370705, '大虞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705003, 370705, '梨园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705004, 370705, '廿里堡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705005, 370705, '潍州路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705006, 370705, '北苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705007, 370705, '广文街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705009, 370705, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705010, 370705, '清池街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370705012, 370705, '北海路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724001, 370724, '城关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724002, 370724, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724003, 370724, '冶源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724004, 370724, '辛寨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724101, 370724, '五井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724104, 370724, '寺头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724105, 370724, '九山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724112, 370724, '山旺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724113, 370724, '柳山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370724116, 370724, '蒋峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725001, 370725, '宝都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725002, 370725, '宝城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725003, 370725, '朱刘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725005, 370725, '五图街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725107, 370725, '乔官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725108, 370725, '唐吾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725110, 370725, '红河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370725116, 370725, '营丘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370772004, 370772, '央子街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370772005, 370772, '大家洼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781001, 370781, '王府街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781002, 370781, '益都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781006, 370781, '云门山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781007, 370781, '黄楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781100, 370781, '弥河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781101, 370781, '王坟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781103, 370781, '庙子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781105, 370781, '邵庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781109, 370781, '高柳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781111, 370781, '何官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781113, 370781, '东夏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781115, 370781, '谭坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370781400, 370781, '王母宫经济发展区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782001, 370782, '密州街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782002, 370782, '龙都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782003, 370782, '舜王街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782101, 370782, '枳沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782102, 370782, '贾悦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782105, 370782, '石桥子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782108, 370782, '相州镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782110, 370782, '昌城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782111, 370782, '百尺河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782112, 370782, '辛兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782114, 370782, '林家村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782117, 370782, '皇华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782118, 370782, '桃林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370782400, 370782, '诸城经济开发区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783001, 370783, '圣城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783003, 370783, '文家街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783004, 370783, '古城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783005, 370783, '洛城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783006, 370783, '孙家集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783100, 370783, '化龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783103, 370783, '营里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783104, 370783, '台头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783106, 370783, '田柳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783108, 370783, '上口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783109, 370783, '侯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783111, 370783, '纪台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783112, 370783, '稻田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783115, 370783, '羊口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370783400, 370783, '双王城生态经济园区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784001, 370784, '兴安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784003, 370784, '新安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784004, 370784, '凌河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784100, 370784, '景芝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784104, 370784, '官庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784107, 370784, '大盛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784111, 370784, '石埠子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784112, 370784, '石堆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784118, 370784, '柘山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784119, 370784, '辉渠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784120, 370784, '吾山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370784121, 370784, '金冢子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785001, 370785, '高密市朝阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785002, 370785, '高密市醴泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785003, 370785, '高密市密水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785100, 370785, '柏城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785103, 370785, '夏庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785104, 370785, '姜庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785106, 370785, '大牟家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785109, 370785, '阚家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785111, 370785, '井沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370785114, 370785, '柴沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786001, 370786, '奎聚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786002, 370786, '都昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786003, 370786, '围子街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786101, 370786, '柳疃镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786102, 370786, '龙池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786104, 370786, '卜庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786108, 370786, '饮马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786109, 370786, '北孟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370786112, 370786, '下营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811002, 370811, '许庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811005, 370811, '李营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811006, 370811, '南张街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811007, 370811, '仙营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811008, 370811, '金城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811009, 370811, '廿里铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811011, 370811, '古槐街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811012, 370811, '济阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811013, 370811, '阜桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811014, 370811, '越河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811015, 370811, '观音阁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811016, 370811, '南苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811017, 370811, '安居街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811018, 370811, '唐口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811102, 370811, '长沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811109, 370811, '石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811111, 370811, '喻屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370811401, 370811, '济东物业服务中心', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812001, 370812, '鼓楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812003, 370812, '龙桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812006, 370812, '酒仙桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812007, 370812, '兴隆庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812101, 370812, '大安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812102, 370812, '新驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812103, 370812, '颜店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812105, 370812, '新兖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812107, 370812, '漕河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370812111, 370812, '小孟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826001, 370826, '夏镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826002, 370826, '昭阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826003, 370826, '傅村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826101, 370826, '韩庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826102, 370826, '欢城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826103, 370826, '南阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826104, 370826, '鲁桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826106, 370826, '留庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826107, 370826, '两城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826108, 370826, '马坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826109, 370826, '赵庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826110, 370826, '张楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826111, 370826, '微山岛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826112, 370826, '西平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370826206, 370826, '高楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827001, 370827, '谷亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827002, 370827, '滨湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827101, 370827, '清河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827102, 370827, '鱼城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827103, 370827, '王鲁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827104, 370827, '张黄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827105, 370827, '王庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827106, 370827, '李阁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827107, 370827, '唐马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827108, 370827, '老砦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370827109, 370827, '罗屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828001, 370828, '金乡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828002, 370828, '高河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828003, 370828, '鱼山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828004, 370828, '王丕街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828101, 370828, '羊山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828102, 370828, '胡集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828103, 370828, '霄云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828104, 370828, '鸡黍镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828107, 370828, '司马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828109, 370828, '马庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828110, 370828, '化雨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828111, 370828, '卜集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370828112, 370828, '兴隆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829001, 370829, '嘉祥镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829002, 370829, '卧龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829003, 370829, '万张街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829101, 370829, '纸坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829102, 370829, '梁宝寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829104, 370829, '疃里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829105, 370829, '马村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829106, 370829, '金屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829107, 370829, '大张楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829108, 370829, '马集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829110, 370829, '孟姑集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829111, 370829, '老僧堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829112, 370829, '仲山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829113, 370829, '满硐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829114, 370829, '黄垓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370829400, 370829, '嘉祥经济开发区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830001, 370830, '中都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830002, 370830, '汶上街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830003, 370830, '南站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830102, 370830, '南旺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830103, 370830, '次邱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830104, 370830, '寅寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830105, 370830, '郭楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830106, 370830, '康驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830107, 370830, '苑庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830108, 370830, '义桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830109, 370830, '郭仓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830110, 370830, '白石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830111, 370830, '杨店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830112, 370830, '刘楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370830205, 370830, '军屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831001, 370831, '泗河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831002, 370831, '济河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831101, 370831, '泉林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831102, 370831, '星村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831103, 370831, '柘沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831104, 370831, '金庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831105, 370831, '苗馆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831106, 370831, '中册镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831107, 370831, '杨柳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831108, 370831, '泗张镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831109, 370831, '圣水峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831110, 370831, '高峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370831111, 370831, '华村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832001, 370832, '水泊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832002, 370832, '梁山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832101, 370832, '小路口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832102, 370832, '韩岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832104, 370832, '拳铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832105, 370832, '杨营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832106, 370832, '韩垓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832107, 370832, '馆驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832108, 370832, '小安山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832109, 370832, '寿张集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832110, 370832, '黑虎庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832111, 370832, '马营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832215, 370832, '赵堌堆乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370832217, 370832, '大路口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370871001, 370871, '洸河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370871002, 370871, '柳行街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370871003, 370871, '接庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370871004, 370871, '王因街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370871005, 370871, '黄屯街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881001, 370881, '鲁城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881002, 370881, '书院街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881003, 370881, '时庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881004, 370881, '小雪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881101, 370881, '吴村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881102, 370881, '姚村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881103, 370881, '陵城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881105, 370881, '尼山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881108, 370881, '王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881109, 370881, '息陬镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881110, 370881, '石门山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370881111, 370881, '防山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883001, 370883, '钢山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883002, 370883, '千泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883003, 370883, '凫山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883101, 370883, '香城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883102, 370883, '城前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883103, 370883, '大束镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883104, 370883, '北宿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883105, 370883, '中心店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883106, 370883, '唐村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883107, 370883, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883109, 370883, '石墙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883110, 370883, '峄山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883111, 370883, '看庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883112, 370883, '张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883113, 370883, '田黄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370883114, 370883, '郭里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902001, 370902, '岱庙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902002, 370902, '财源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902003, 370902, '泰前街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902004, 370902, '上高街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902005, 370902, '徐家楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902100, 370902, '省庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902101, 370902, '邱家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370902202, 370902, '大津口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911001, 370911, '粥店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911002, 370911, '天平街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911003, 370911, '北集坡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911100, 370911, '山口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911101, 370911, '祝阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911102, 370911, '范镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911103, 370911, '角峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911104, 370911, '徂徕镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911106, 370911, '满庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911107, 370911, '夏张镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911108, 370911, '道朗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911109, 370911, '黄前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911110, 370911, '大汶口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911111, 370911, '马庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911112, 370911, '房村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911113, 370911, '良庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911114, 370911, '下港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370911201, 370911, '化马湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921001, 370921, '文庙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921002, 370921, '八仙桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921101, 370921, '泗店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921102, 370921, '东疏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921103, 370921, '伏山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921105, 370921, '堽城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921107, 370921, '蒋集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921109, 370921, '磁窑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921110, 370921, '华丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921111, 370921, '葛石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921112, 370921, '东庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921113, 370921, '鹤山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370921206, 370921, '乡饮乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923001, 370923, '东平街道地区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923002, 370923, '州城街道地区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923003, 370923, '彭集街道地区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923101, 370923, '沙河站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923106, 370923, '老湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923107, 370923, '银山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923108, 370923, '斑鸠店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923109, 370923, '接山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923110, 370923, '大羊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923111, 370923, '梯门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923112, 370923, '新湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923113, 370923, '戴庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923206, 370923, '商老庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370923208, 370923, '旧县乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982001, 370982, '青云街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982002, 370982, '新汶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982003, 370982, '新甫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982101, 370982, '东都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982102, 370982, '小协镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982103, 370982, '翟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982104, 370982, '泉沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982105, 370982, '羊流镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982106, 370982, '果都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982107, 370982, '西张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982108, 370982, '天宝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982110, 370982, '楼德镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982111, 370982, '禹村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982112, 370982, '宫里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982113, 370982, '谷里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982114, 370982, '石莱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982115, 370982, '放城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982116, 370982, '刘杜镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982117, 370982, '汶南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982119, 370982, '龙廷镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370982203, 370982, '岳家庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983001, 370983, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983002, 370983, '老城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983003, 370983, '王瓜店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983004, 370983, '仪阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983101, 370983, '潮泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983103, 370983, '桃园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983104, 370983, '王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983105, 370983, '湖屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983106, 370983, '石横镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983107, 370983, '安临站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983108, 370983, '孙伯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983109, 370983, '安驾庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983110, 370983, '汶阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (370983111, 370983, '边院镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002001, 371002, '环翠楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002002, 371002, '鲸园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002003, 371002, '竹岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002011, 371002, '孙家疃街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002012, 371002, '嵩山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002100, 371002, '张村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002101, 371002, '羊亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002102, 371002, '温泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371002109, 371002, '桥头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003001, 371003, '龙山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003002, 371003, '天福路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003003, 371003, '环山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003100, 371003, '文登营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003101, 371003, '大水泊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003102, 371003, '张家产镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003103, 371003, '高村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003104, 371003, '泽库镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003105, 371003, '侯家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003106, 371003, '宋村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003107, 371003, '泽头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003108, 371003, '小观镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003109, 371003, '葛家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003110, 371003, '米山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003111, 371003, '界石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371003400, 371003, '开发区办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371071004, 371071, '怡园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371071007, 371071, '田和街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371071108, 371071, '初村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371072008, 371072, '皇冠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371072009, 371072, '凤林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371072010, 371072, '西苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371072103, 371072, '崮山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371072105, 371072, '泊于镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371073107, 371073, '草庙子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371073112, 371073, '汪疃镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371073113, 371073, '苘山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082001, 371082, '宁津街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082002, 371082, '港湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082003, 371082, '桃园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082004, 371082, '王连街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082005, 371082, '东山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082006, 371082, '斥山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082007, 371082, '崖头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082008, 371082, '城西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082009, 371082, '寻山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082010, 371082, '崂山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082101, 371082, '俚岛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082102, 371082, '成山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082103, 371082, '埠柳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082104, 371082, '港西镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082105, 371082, '夏庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082106, 371082, '崖西镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082107, 371082, '荫子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082108, 371082, '滕家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082109, 371082, '大疃镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082110, 371082, '上庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082111, 371082, '虎山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371082112, 371082, '人和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083001, 371083, '城区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083100, 371083, '夏村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083101, 371083, '乳山口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083102, 371083, '海阳所镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083103, 371083, '白沙滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083104, 371083, '大孤山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083105, 371083, '南黄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083106, 371083, '冯家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083107, 371083, '下初镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083108, 371083, '午极镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083109, 371083, '育黎镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083110, 371083, '崖子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083111, 371083, '诸往镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083112, 371083, '乳山寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371083114, 371083, '徐家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102001, 371102, '日照街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102002, 371102, '石臼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102004, 371102, '秦楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102008, 371102, '卧龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102009, 371102, '两城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102100, 371102, '河山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102104, 371102, '后村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102106, 371102, '西湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102107, 371102, '陈疃镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102108, 371102, '南湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102109, 371102, '三庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371102110, 371102, '涛雒镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103001, 371103, '岚山头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103002, 371103, '安东卫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103100, 371103, '碑廓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103101, 371103, '虎山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103102, 371103, '巨峰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103103, 371103, '高兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103105, 371103, '黄墩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103108, 371103, '中楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371103200, 371103, '前三岛乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121001, 371121, '洪凝街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121002, 371121, '高泽街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121102, 371121, '街头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121103, 371121, '潮河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121104, 371121, '许孟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121105, 371121, '于里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121106, 371121, '汪湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121107, 371121, '叩官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121108, 371121, '中至镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121110, 371121, '松柏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121201, 371121, '石场乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371121202, 371121, '户部乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122001, 371122, '城阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122002, 371122, '店子集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122003, 371122, '陵阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122004, 371122, '浮来山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122005, 371122, '阎庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122102, 371122, '招贤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122104, 371122, '夏庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122105, 371122, '刘官庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122106, 371122, '峤山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122107, 371122, '小店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122109, 371122, '龙山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122110, 371122, '东莞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122114, 371122, '长岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122115, 371122, '安庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122116, 371122, '棋山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122117, 371122, '洛河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122118, 371122, '寨里河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122119, 371122, '桑园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122120, 371122, '果庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122206, 371122, '库山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371122400, 371122, '莒县经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371171003, 371171, '奎山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371171007, 371171, '北京路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302001, 371302, '兰山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302002, 371302, '银雀山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302003, 371302, '金雀山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302004, 371302, '柳青街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302101, 371302, '白沙埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302102, 371302, '枣园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302103, 371302, '半程镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302105, 371302, '义堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302107, 371302, '李官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302109, 371302, '方城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371302110, 371302, '汪沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311001, 371311, '罗庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311002, 371311, '傅庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311003, 371311, '盛庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311006, 371311, '册山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311007, 371311, '高都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311100, 371311, '沂堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311101, 371311, '褚墩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371311102, 371311, '黄山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312001, 371312, '九曲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312004, 371312, '相公街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312005, 371312, '太平街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312006, 371312, '汤头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312007, 371312, '凤凰岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312009, 371312, '芝麻墩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312010, 371312, '梅家埠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312011, 371312, '朝阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312104, 371312, '汤河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312107, 371312, '八湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371312108, 371312, '郑旺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321001, 371321, '界湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321101, 371321, '岸堤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321102, 371321, '孙祖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321103, 371321, '双堠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321104, 371321, '青驼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321105, 371321, '张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321106, 371321, '砖埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321109, 371321, '大庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321110, 371321, '辛集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321111, 371321, '蒲汪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321112, 371321, '湖头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321113, 371321, '苏村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321114, 371321, '铜井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321115, 371321, '依汶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371321201, 371321, '马牧池乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322001, 371322, '郯城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322101, 371322, '马头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322102, 371322, '重坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322103, 371322, '李庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322105, 371322, '杨集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322107, 371322, '港上镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322108, 371322, '高峰头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322109, 371322, '庙山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322111, 371322, '红花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322112, 371322, '胜利镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322113, 371322, '花园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322114, 371322, '泉源镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371322203, 371322, '归昌乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323001, 371323, '沂城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323002, 371323, '龙家圈街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323101, 371323, '马站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323102, 371323, '高桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323103, 371323, '许家湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323104, 371323, '黄山铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323106, 371323, '诸葛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323107, 371323, '崔家峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323108, 371323, '四十里堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323109, 371323, '杨庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323110, 371323, '夏蔚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323111, 371323, '沙沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323112, 371323, '高庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323113, 371323, '院东头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323115, 371323, '富官庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323116, 371323, '道托镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323117, 371323, '泉庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371323201, 371323, '圈里乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324001, 371324, '卞庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324002, 371324, '苍山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324101, 371324, '大仲村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324102, 371324, '兰陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324103, 371324, '长城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324104, 371324, '磨山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324105, 371324, '神山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324106, 371324, '车辋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324107, 371324, '尚岩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324108, 371324, '向城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324109, 371324, '新兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324110, 371324, '南桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324112, 371324, '庄坞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324114, 371324, '鲁城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324115, 371324, '矿坑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324117, 371324, '芦柞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371324202, 371324, '下村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325001, 371325, '费城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325101, 371325, '上冶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325102, 371325, '薛庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325105, 371325, '探沂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325106, 371325, '朱田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325107, 371325, '梁邱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325108, 371325, '新庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325109, 371325, '马庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325112, 371325, '胡阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325113, 371325, '石井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325115, 371325, '东蒙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371325200, 371325, '大田庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326001, 371326, '平邑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326101, 371326, '仲村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326102, 371326, '武台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326103, 371326, '保太镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326104, 371326, '柏林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326105, 371326, '卞桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326106, 371326, '地方镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326107, 371326, '铜石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326108, 371326, '温水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326109, 371326, '流峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326110, 371326, '郑城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326111, 371326, '白彦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326112, 371326, '临涧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371326113, 371326, '丰阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327001, 371327, '十字路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327102, 371327, '大店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327103, 371327, '坊前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327106, 371327, '板泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327107, 371327, '洙边镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327108, 371327, '文疃镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327111, 371327, '石莲子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327112, 371327, '岭泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327113, 371327, '筵宾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327114, 371327, '涝坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327116, 371327, '道口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327117, 371327, '相沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327118, 371327, '团林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327119, 371327, '坪上镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327120, 371327, '壮岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371327121, 371327, '朱芦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328001, 371328, '蒙阴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328101, 371328, '常路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328102, 371328, '岱崮镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328103, 371328, '坦埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328104, 371328, '垛庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328105, 371328, '高都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328106, 371328, '野店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328107, 371328, '桃墟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328109, 371328, '联城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371328201, 371328, '旧寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329001, 371329, '临沭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329002, 371329, '郑山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329101, 371329, '蛟龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329102, 371329, '大兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329103, 371329, '石门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329104, 371329, '曹庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329108, 371329, '青云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329109, 371329, '玉山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371329110, 371329, '店头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371371001, 371371, '罗西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371371100, 371371, '马厂湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402001, 371402, '新湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402002, 371402, '新华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402003, 371402, '天衢街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402006, 371402, '广川街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402009, 371402, '运河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402100, 371402, '二屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371402101, 371402, '黄河涯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403001, 371403, '安德街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403002, 371403, '临齐街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403101, 371403, '郑家寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403102, 371403, '糜镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403103, 371403, '宋家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403104, 371403, '徽王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403105, 371403, '神头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403106, 371403, '滋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403107, 371403, '前孙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403108, 371403, '边临镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403109, 371403, '义渡口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403110, 371403, '丁庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371403202, 371403, '于集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422001, 371422, '宁城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422002, 371422, '津城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422101, 371422, '柴胡店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422102, 371422, '长官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422103, 371422, '杜集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422104, 371422, '保店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422105, 371422, '大柳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422106, 371422, '大曹镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422107, 371422, '相衙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422108, 371422, '时集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422109, 371422, '张大庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371422201, 371422, '刘营伍乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423001, 371423, '渤海路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423100, 371423, '庆云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423101, 371423, '常家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423102, 371423, '尚堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423103, 371423, '崔口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423104, 371423, '东辛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423200, 371423, '严务乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423202, 371423, '中丁乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371423203, 371423, '徐园子乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424001, 371424, '邢侗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424002, 371424, '恒源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424003, 371424, '临盘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424100, 371424, '临邑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424102, 371424, '临南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424103, 371424, '德平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424104, 371424, '林子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424105, 371424, '兴隆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424106, 371424, '孟寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424107, 371424, '翟家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424108, 371424, '理合务镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371424202, 371424, '宿安乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425001, 371425, '晏城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425002, 371425, '晏北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425101, 371425, '表白寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425102, 371425, '焦庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425103, 371425, '赵官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425104, 371425, '祝阿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425105, 371425, '仁里集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425106, 371425, '潘店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425107, 371425, '胡官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425108, 371425, '宣章屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425109, 371425, '马集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425110, 371425, '华店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425111, 371425, '刘桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425201, 371425, '安头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371425204, 371425, '大黄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426001, 371426, '龙门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426002, 371426, '桃园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426003, 371426, '德原街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426101, 371426, '王凤楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426102, 371426, '前曹镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426103, 371426, '恩城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426104, 371426, '王庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426105, 371426, '王杲铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426106, 371426, '张华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426107, 371426, '腰站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426108, 371426, '王打卦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371426202, 371426, '三唐乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427001, 371427, '银城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427002, 371427, '北城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427100, 371427, '南城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427101, 371427, '苏留庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427102, 371427, '新盛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427103, 371427, '雷集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427104, 371427, '郑保屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427105, 371427, '白马湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427106, 371427, '东李官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427107, 371427, '宋楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427108, 371427, '香赵庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427109, 371427, '双庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427200, 371427, '渡口驿乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371427204, 371427, '田庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428001, 371428, '广运街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428100, 371428, '武城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428101, 371428, '老城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428103, 371428, '鲁权屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428104, 371428, '郝王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428106, 371428, '甲马营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428107, 371428, '四女寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371428108, 371428, '李家户镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371471007, 371471, '长河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371471008, 371471, '宋官屯街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371471108, 371471, '袁桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371472100, 371472, '赵虎镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371472101, 371472, '抬头寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371472400, 371472, '新区服务管理办公室', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481001, 371481, '市中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481002, 371481, '胡家街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481003, 371481, '云红街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481004, 371481, '郭家街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481100, 371481, '杨安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481101, 371481, '朱集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481102, 371481, '黄夹镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481103, 371481, '丁坞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481104, 371481, '花园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481105, 371481, '郑店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481106, 371481, '化楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481107, 371481, '孔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481108, 371481, '铁营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481200, 371481, '西段乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481201, 371481, '大孙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371481203, 371481, '寨头堡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482001, 371482, '市中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482002, 371482, '禹兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482100, 371482, '伦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482101, 371482, '房寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482102, 371482, '张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482103, 371482, '辛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482104, 371482, '安仁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482105, 371482, '辛寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482106, 371482, '梁家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482107, 371482, '十里望回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371482108, 371482, '莒镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502001, 371502, '古楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502002, 371502, '柳园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502003, 371502, '新区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502004, 371502, '湖西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502005, 371502, '道口铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502006, 371502, '闫寺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502008, 371502, '北城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502009, 371502, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502010, 371502, '蒋官屯街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502011, 371502, '李海务街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502100, 371502, '侯营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502101, 371502, '沙镇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502102, 371502, '堂邑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502103, 371502, '梁水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502104, 371502, '斗虎屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502105, 371502, '郑家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502106, 371502, '张炉集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502107, 371502, '于集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502108, 371502, '许营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502109, 371502, '朱老庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502110, 371502, '顾官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502115, 371502, '韩集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502116, 371502, '广平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371502400, 371502, '香江光彩大市场服务中心', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503001, 371503, '振兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503002, 371503, '信发街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503003, 371503, '温陈街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503101, 371503, '乐平铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503102, 371503, '冯官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503103, 371503, '菜屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503104, 371503, '博平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503105, 371503, '杜郎口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503106, 371503, '韩屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503107, 371503, '胡屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503108, 371503, '肖家庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503109, 371503, '贾寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503110, 371503, '洪官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371503208, 371503, '杨官屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521001, 371521, '博济桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521002, 371521, '侨润街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521003, 371521, '狮子楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521101, 371521, '阎楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521103, 371521, '阿城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521104, 371521, '七级镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521105, 371521, '安乐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521106, 371521, '定水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521107, 371521, '石佛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521108, 371521, '李台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521109, 371521, '寿张镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521111, 371521, '十五里园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521112, 371521, '张秋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521113, 371521, '郭店屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521114, 371521, '西湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521115, 371521, '高庙王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521116, 371521, '金斗营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371521203, 371521, '大布乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522001, 371522, '燕塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522002, 371522, '莘亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522003, 371522, '莘州街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522004, 371522, '东鲁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522101, 371522, '张鲁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522102, 371522, '朝城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522103, 371522, '观城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522104, 371522, '古城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522105, 371522, '大张家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522106, 371522, '古云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522107, 371522, '十八里铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522109, 371522, '燕店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522110, 371522, '董杜庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522111, 371522, '王奉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522112, 371522, '樱桃园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522113, 371522, '河店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522114, 371522, '妹冢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522115, 371522, '魏庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522116, 371522, '张寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522117, 371522, '大王寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522118, 371522, '徐庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522119, 371522, '王庄集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522120, 371522, '柿子园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371522121, 371522, '俎店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524001, 371524, '铜城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524002, 371524, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524101, 371524, '刘集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524102, 371524, '牛角店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524103, 371524, '大桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524104, 371524, '高集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524105, 371524, '姜楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524107, 371524, '姚寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524108, 371524, '鱼山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371524109, 371524, '陈集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525001, 371525, '清泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525002, 371525, '崇文街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525003, 371525, '烟庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525101, 371525, '贾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525102, 371525, '桑阿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525103, 371525, '柳林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525104, 371525, '清水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525105, 371525, '东古城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525106, 371525, '北馆陶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525107, 371525, '店子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525108, 371525, '定远寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525109, 371525, '辛集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525110, 371525, '梁堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525111, 371525, '范寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525112, 371525, '甘官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525200, 371525, '斜店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525206, 371525, '兰沃乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371525209, 371525, '万善乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526001, 371526, '鱼邱湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526002, 371526, '汇鑫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526003, 371526, '人和街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526101, 371526, '梁村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526102, 371526, '尹集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526103, 371526, '清平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526104, 371526, '固河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526105, 371526, '三十里铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526106, 371526, '琉璃寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526107, 371526, '赵寨子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526108, 371526, '姜店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371526109, 371526, '杨屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581001, 371581, '青年路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581002, 371581, '新华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581003, 371581, '先锋路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581004, 371581, '大辛庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581101, 371581, '松林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581102, 371581, '老赵庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581103, 371581, '康庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581104, 371581, '魏湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581105, 371581, '刘垓子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581107, 371581, '八岔路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581108, 371581, '潘庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581109, 371581, '烟店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581110, 371581, '唐园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581111, 371581, '金郝庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581112, 371581, '戴湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371581113, 371581, '尚店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602001, 371602, '市中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602002, 371602, '市西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602003, 371602, '北镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602004, 371602, '市东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602005, 371602, '彭李街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602007, 371602, '小营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602008, 371602, '滨北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602009, 371602, '梁才街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602010, 371602, '杜店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602011, 371602, '沙河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602012, 371602, '里则街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602013, 371602, '青田街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602105, 371602, '三河湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602106, 371602, '杨柳雪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371602203, 371602, '秦皇台乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603001, 371603, '富国街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603002, 371603, '富源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603101, 371603, '下洼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603102, 371603, '古城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603103, 371603, '冯家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603104, 371603, '泊头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603105, 371603, '大高镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603106, 371603, '黄升镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603107, 371603, '滨海镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603203, 371603, '下河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603204, 371603, '利国乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371603400, 371603, '海防办事处乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621001, 371621, '孙武街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621003, 371621, '何坊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621101, 371621, '石庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621102, 371621, '桑落墅镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621103, 371621, '淄角镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621104, 371621, '胡集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621105, 371621, '李庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621107, 371621, '麻店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621108, 371621, '魏集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621109, 371621, '清河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621111, 371621, '姜楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621113, 371621, '辛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621114, 371621, '大年陈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371621115, 371621, '皂户李镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622001, 371622, '信城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622002, 371622, '金阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622101, 371622, '商店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622102, 371622, '温店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622103, 371622, '河流镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622104, 371622, '翟王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622105, 371622, '流坡坞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622106, 371622, '水落坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622107, 371622, '劳店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371622204, 371622, '洋湖乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623001, 371623, '棣丰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623002, 371623, '海丰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623101, 371623, '水湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623102, 371623, '碣石山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623103, 371623, '小泊头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623104, 371623, '埕口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623105, 371623, '马山子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623106, 371623, '车王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623107, 371623, '柳堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623108, 371623, '佘家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623109, 371623, '信阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371623110, 371623, '西小王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625001, 371625, '城东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625002, 371625, '锦秋街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625003, 371625, '博昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625101, 371625, '曹王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625102, 371625, '兴福镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625103, 371625, '陈户镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625104, 371625, '湖滨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625106, 371625, '店子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625107, 371625, '吕艺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625108, 371625, '纯化镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625109, 371625, '庞家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371625110, 371625, '乔庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681001, 371681, '黛溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681002, 371681, '黄山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681003, 371681, '高新街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681004, 371681, '好生街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681005, 371681, '西董街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681101, 371681, '长山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681102, 371681, '魏桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681105, 371681, '临池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681108, 371681, '焦桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681109, 371681, '韩店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681110, 371681, '孙镇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681111, 371681, '九户镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681112, 371681, '青阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681113, 371681, '明集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681114, 371681, '台子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371681115, 371681, '码头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702001, 371702, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702002, 371702, '西城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702003, 371702, '南城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702004, 371702, '北城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702005, 371702, '牡丹街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702009, 371702, '何楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702011, 371702, '皇镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702100, 371702, '沙土镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702101, 371702, '吴店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702102, 371702, '王浩屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702103, 371702, '黄堽镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702104, 371702, '都司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702105, 371702, '高庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702106, 371702, '小留镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702107, 371702, '李村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702109, 371702, '安兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702110, 371702, '大黄集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371702112, 371702, '胡集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703001, 371703, '天中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703002, 371703, '滨河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703102, 371703, '冉固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703103, 371703, '张湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703104, 371703, '黄店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703105, 371703, '孟海镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703106, 371703, '马集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703107, 371703, '仿山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703108, 371703, '半堤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703109, 371703, '杜堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371703110, 371703, '南王店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721001, 371721, '曹城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721002, 371721, '磐石街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721003, 371721, '青菏街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721004, 371721, '郑庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721005, 371721, '倪集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721101, 371721, '庄寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721102, 371721, '普连集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721103, 371721, '青固集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721105, 371721, '韩集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721106, 371721, '砖庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721107, 371721, '古营集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721108, 371721, '魏湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721109, 371721, '侯集回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721110, 371721, '苏集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721111, 371721, '孙老家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721112, 371721, '阎店楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721113, 371721, '梁堤头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721114, 371721, '安才楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721115, 371721, '曹县邵庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721116, 371721, '曹县王集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721117, 371721, '青岗集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721120, 371721, '常乐集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721121, 371721, '曹县大集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721122, 371721, '曹县仵楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721123, 371721, '曹县楼庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371721124, 371721, '曹县朱洪庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722001, 371722, '北城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722002, 371722, '南城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722003, 371722, '园艺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722004, 371722, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722101, 371722, '郭村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722102, 371722, '黄岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722103, 371722, '终兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722105, 371722, '高韦庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722106, 371722, '徐寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722107, 371722, '蔡堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722108, 371722, '朱集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722109, 371722, '李新庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722110, 371722, '浮岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722111, 371722, '莱河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722112, 371722, '时楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722113, 371722, '杨楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722114, 371722, '张集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722115, 371722, '龙王庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722116, 371722, '谢集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722117, 371722, '李田楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722201, 371722, '高老家乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371722202, 371722, '曹庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723001, 371723, '文亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723002, 371723, '永昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723101, 371723, '成武县大田集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723102, 371723, '成武县天宫庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723103, 371723, '成武县汶上集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723104, 371723, '成武县南鲁集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723105, 371723, '成武县伯乐集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723106, 371723, '成武县苟村集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723107, 371723, '成武县白浮图镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723108, 371723, '成武县孙寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723109, 371723, '成武县九女集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723110, 371723, '成武县党集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371723111, 371723, '成武县张楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724001, 371724, '凤凰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724002, 371724, '永丰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724101, 371724, '龙固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724102, 371724, '大义镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724103, 371724, '柳林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724104, 371724, '章缝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724105, 371724, '大谢集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724106, 371724, '独山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724107, 371724, '麒麟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724108, 371724, '核桃园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724109, 371724, '田庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724110, 371724, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724111, 371724, '万丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724112, 371724, '陶庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724113, 371724, '董官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724114, 371724, '田桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371724115, 371724, '营里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725001, 371725, '郓州街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725002, 371725, '唐塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725003, 371725, '丁里长街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725004, 371725, '张营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725101, 371725, '黄安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725102, 371725, '杨庄集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725103, 371725, '侯咽集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725104, 371725, '武安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725105, 371725, '郭屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725107, 371725, '玉皇庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725108, 371725, '程屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725109, 371725, '随官屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725111, 371725, '潘渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725112, 371725, '双桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725113, 371725, '南赵楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725114, 371725, '黄泥冈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725115, 371725, '唐庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725116, 371725, '李集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725117, 371725, '黄集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725118, 371725, '张鲁集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725208, 371725, '水堡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371725209, 371725, '陈坡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726001, 371726, '陈王街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726002, 371726, '古泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726101, 371726, '什集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726102, 371726, '红船镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726103, 371726, '旧城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726104, 371726, '闫什镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726105, 371726, '箕山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726106, 371726, '李进士堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726107, 371726, '董口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726108, 371726, '临濮镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726109, 371726, '彭楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726110, 371726, '凤凰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726111, 371726, '郑营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726112, 371726, '大埝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726113, 371726, '引马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726114, 371726, '左营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371726115, 371726, '富春镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728001, 371728, '城关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728002, 371728, '渔沃街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728101, 371728, '东明集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728102, 371728, '刘楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728103, 371728, '陆圈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728104, 371728, '马头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728105, 371728, '三春集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728106, 371728, '大屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728107, 371728, '武胜桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728108, 371728, '菜园集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728109, 371728, '沙窝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728110, 371728, '小井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728204, 371728, '长兴集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371728205, 371728, '焦园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371771001, 371771, '丹阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371771002, 371771, '岳程街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371771003, 371771, '佃户屯街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371771101, 371771, '陈集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371772001, 371772, '万福街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371772100, 371772, '吕陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (371772108, 371772, '马岭岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102001, 410102, '林山寨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102002, 410102, '建设路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102003, 410102, '棉纺路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102004, 410102, '秦岭路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102005, 410102, '桐柏路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102006, 410102, '三官庙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102007, 410102, '绿东村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102008, 410102, '汝河路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102009, 410102, '航海西路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102010, 410102, '中原西路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102011, 410102, '西流湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102012, 410102, '须水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102013, 410102, '莲湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410102014, 410102, '柳湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103001, 410103, '淮河路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103002, 410103, '解放路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103003, 410103, '铭功路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103004, 410103, '一马路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103005, 410103, '蜜蜂张街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103006, 410103, '五里堡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103007, 410103, '大学路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103008, 410103, '建中街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103009, 410103, '福华街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103010, 410103, '德化街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103011, 410103, '嵩山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103012, 410103, '京广路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103013, 410103, '长江路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103015, 410103, '人和路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103016, 410103, '侯寨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410103100, 410103, '马寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104001, 410104, '北下街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104002, 410104, '西大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104003, 410104, '南关街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104004, 410104, '城东路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104005, 410104, '东大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104006, 410104, '二里岗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104007, 410104, '陇海马路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104008, 410104, '紫荆山南路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104009, 410104, '航海东路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104010, 410104, '十八里河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104011, 410104, '南曹街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104012, 410104, '金岱街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104202, 410104, '圃田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410104570, 410104, '商都路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105001, 410105, '经八路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105002, 410105, '花园路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105003, 410105, '人民路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105004, 410105, '杜岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105005, 410105, '大石桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105006, 410105, '南阳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105007, 410105, '南阳新村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105008, 410105, '文化路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105009, 410105, '丰产路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105010, 410105, '东风路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105011, 410105, '北林路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105012, 410105, '未来路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105013, 410105, '凤凰台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105014, 410105, '龙子湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105015, 410105, '祭城路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105016, 410105, '兴达路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105017, 410105, '国基路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105018, 410105, '杨金路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105019, 410105, '丰庆路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105560, 410105, '如意湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105561, 410105, '博学路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105562, 410105, '龙湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105563, 410105, '龙源路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410105564, 410105, '金光路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410106001, 410106, '济源路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410106002, 410106, '中心路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410106003, 410106, '新安路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410106004, 410106, '工业路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410106005, 410106, '矿山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410106100, 410106, '峡窝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108001, 410108, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108002, 410108, '刘寨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108003, 410108, '江山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108004, 410108, '长兴路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108005, 410108, '迎宾路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108006, 410108, '大河路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108100, 410108, '花园口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410108101, 410108, '古荥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122001, 410122, '青年路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122002, 410122, '东风路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122003, 410122, '广惠街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122101, 410122, '韩寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122102, 410122, '官渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122103, 410122, '狼城岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122104, 410122, '万滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122105, 410122, '白沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122106, 410122, '郑庵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122109, 410122, '黄店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122110, 410122, '大孟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122112, 410122, '刘集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122114, 410122, '雁鸣湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122115, 410122, '姚家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122208, 410122, '刁家乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122570, 410122, '杨桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410122571, 410122, '豫兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410171111, 410171, '九龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410171560, 410171, '郑州经济技术开发区明湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410171561, 410171, '郑州经济技术开发区潮河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410171562, 410171, '郑州经济技术开发区京航街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410171563, 410171, '郑州经济技术开发区前程街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410171565, 410171, '郑州经济技术开发区祥云街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410172160, 410172, '石佛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410172360, 410172, '沟赵乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410172560, 410172, '枫杨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410172561, 410172, '梧桐街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410172562, 410172, '双桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173108, 410173, '张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173113, 410173, '八岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173116, 410173, '三官庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173202, 410173, '八千乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173203, 410173, '龙王乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173400, 410173, '新港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173401, 410173, '郑港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173404, 410173, '银河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173405, 410173, '明港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173580, 410173, '滨河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173581, 410173, '冯堂街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173582, 410173, '清河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410173583, 410173, '龙港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181001, 410181, '新华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181002, 410181, '杜甫路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181003, 410181, '永安路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181004, 410181, '孝义街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181005, 410181, '紫荆路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181100, 410181, '米河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181101, 410181, '新中镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181102, 410181, '小关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181103, 410181, '竹林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181104, 410181, '大峪沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181105, 410181, '河洛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181106, 410181, '站街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181108, 410181, '康店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181110, 410181, '北山口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181111, 410181, '西村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181112, 410181, '芝田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181113, 410181, '回郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181114, 410181, '鲁庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181115, 410181, '夹津口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410181116, 410181, '涉村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182001, 410182, '索河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182002, 410182, '京城路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182101, 410182, '乔楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182102, 410182, '豫龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182103, 410182, '广武镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182104, 410182, '王村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182105, 410182, '汜水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182106, 410182, '高山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182108, 410182, '刘河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182109, 410182, '崔庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182110, 410182, '贾峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182200, 410182, '城关乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182201, 410182, '高村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410182204, 410182, '金寨回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183001, 410183, '青屏街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183002, 410183, '新华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183003, 410183, '西大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183100, 410183, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183101, 410183, '米村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183102, 410183, '牛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183103, 410183, '平陌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183104, 410183, '超化镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183105, 410183, '苟堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183106, 410183, '大隗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183107, 410183, '刘寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183108, 410183, '白寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183109, 410183, '岳村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183110, 410183, '来集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183113, 410183, '曲梁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183200, 410183, '袁庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183400, 410183, '矿区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183401, 410183, '伏羲山风景区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410183402, 410183, '郑州曲梁产业集聚区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184001, 410184, '新建路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184002, 410184, '新华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184003, 410184, '新烟街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184101, 410184, '新村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184102, 410184, '辛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184103, 410184, '观音寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184104, 410184, '梨河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184105, 410184, '和庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184106, 410184, '薛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184107, 410184, '孟庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184108, 410184, '郭店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184109, 410184, '龙湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184200, 410184, '城关乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184402, 410184, '具茨山国家级森林公园管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410184403, 410184, '新郑新区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185001, 410185, '嵩阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185002, 410185, '少林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185003, 410185, '中岳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185004, 410185, '卢店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185100, 410185, '大金店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185101, 410185, '颍阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185103, 410185, '告成镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185105, 410185, '大冶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185106, 410185, '宣化镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185107, 410185, '徐庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185108, 410185, '东华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185109, 410185, '唐庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185202, 410185, '白坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185203, 410185, '君召乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410185204, 410185, '石道乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202001, 410202, '北书店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202002, 410202, '午朝门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202003, 410202, '大兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202005, 410202, '北道门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202006, 410202, '城西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202007, 410202, '梁苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202008, 410202, '宋城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202009, 410202, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202100, 410202, '杏花营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202201, 410202, '北郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202202, 410202, '柳园口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202203, 410202, '西郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202204, 410202, '水稻乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410202400, 410202, '杏花营农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203001, 410203, '清平街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203002, 410203, '铁塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203003, 410203, '曹门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203004, 410203, '宋门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203005, 410203, '工业街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203006, 410203, '苹果园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203200, 410203, '东郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410203201, 410203, '土柏岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204001, 410204, '相国寺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204002, 410204, '新华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204003, 410204, '卧龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204004, 410204, '州桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204005, 410204, '西司门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204006, 410204, '南苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204007, 410204, '五一街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410204008, 410204, '仙人庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205001, 410205, '三里堡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205002, 410205, '新门关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205003, 410205, '繁塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205004, 410205, '官坊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205005, 410205, '菜市街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205200, 410205, '南郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410205201, 410205, '汪屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212100, 410212, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212101, 410212, '陈留镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212102, 410212, '仇楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212103, 410212, '八里湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212104, 410212, '曲兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212106, 410212, '朱仙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212107, 410212, '罗王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212200, 410212, '半坡店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212203, 410212, '刘店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212204, 410212, '袁坊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212205, 410212, '杜良乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212206, 410212, '兴隆乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212208, 410212, '西姜寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212210, 410212, '万隆乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410212211, 410212, '范村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221001, 410221, '金城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221101, 410221, '五里河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221102, 410221, '傅集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221103, 410221, '圉镇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221104, 410221, '高阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221105, 410221, '葛岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221106, 410221, '阳堌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221107, 410221, '邢口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221200, 410221, '裴村店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221202, 410221, '宗店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221203, 410221, '板木乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221204, 410221, '竹林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221205, 410221, '官庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221206, 410221, '湖岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221207, 410221, '苏木乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221208, 410221, '沙沃乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221209, 410221, '平城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221210, 410221, '泥沟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221211, 410221, '柿园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221212, 410221, '西寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221213, 410221, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410221401, 410221, '工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222001, 410222, '咸平街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222101, 410222, '竖岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222102, 410222, '玉皇庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222103, 410222, '四所楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222104, 410222, '朱砂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222105, 410222, '长智镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222200, 410222, '冯庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222201, 410222, '孙营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222202, 410222, '大岗李乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222203, 410222, '邸阁乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222204, 410222, '练城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410222205, 410222, '厉庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223001, 410223, '两湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223101, 410223, '洧川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223102, 410223, '朱曲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223103, 410223, '蔡庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223104, 410223, '永兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223105, 410223, '张市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223106, 410223, '十八里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223107, 410223, '水坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223108, 410223, '大营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223109, 410223, '庄头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223200, 410223, '邢庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223203, 410223, '大马乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223204, 410223, '岗李乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223205, 410223, '门楼任乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223206, 410223, '大桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223207, 410223, '南曹乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410223208, 410223, '小陈乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225001, 410225, '兰阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225002, 410225, '桐乡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225003, 410225, '惠安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225101, 410225, '堌阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225102, 410225, '南彰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225103, 410225, '考城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225104, 410225, '红庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225105, 410225, '谷营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225106, 410225, '东坝头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225107, 410225, '小宋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225108, 410225, '仪封镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225201, 410225, '三义寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225206, 410225, '孟寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225207, 410225, '许河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225208, 410225, '葡萄架乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225209, 410225, '阎楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225401, 410225, '仪封园艺场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225402, 410225, '造纸林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225403, 410225, '柳林林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225404, 410225, '西关农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225405, 410225, '畜牧良种农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410225406, 410225, '固阳农科所', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302001, 410302, '西关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302002, 410302, '西南隅街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302003, 410302, '西北隅街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302004, 410302, '东南隅街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302005, 410302, '东北隅街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302006, 410302, '南关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302007, 410302, '洛浦街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302008, 410302, '邙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410302009, 410302, '道北路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303001, 410303, '王城路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303002, 410303, '金谷园路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303003, 410303, '西工街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303004, 410303, '邙岭路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303006, 410303, '唐宫路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303007, 410303, '汉屯路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303008, 410303, '凯旋东路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303009, 410303, '洛北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410303010, 410303, '红山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304001, 410304, '东关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304002, 410304, '瀍西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304003, 410304, '五股路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304004, 410304, '北窑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304005, 410304, '塔湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304006, 410304, '杨文街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304007, 410304, '华林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410304200, 410304, '瀍河回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305001, 410305, '湖北路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305002, 410305, '天津路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305003, 410305, '长春路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305004, 410305, '南昌路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305005, 410305, '长安路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305006, 410305, '重庆路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305007, 410305, '郑州路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305008, 410305, '武汉路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305010, 410305, '珠江路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305011, 410305, '周山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410305012, 410305, '工农街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307004, 410307, '首阳山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307005, 410307, '商城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307006, 410307, '槐新街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307007, 410307, '伊洛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307103, 410307, '翟镇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307104, 410307, '岳滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307105, 410307, '顾县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307106, 410307, '缑氏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307107, 410307, '府店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307108, 410307, '高龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307109, 410307, '山化镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307110, 410307, '大口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410307111, 410307, '邙岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308002, 410308, '西霞院街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308003, 410308, '康乐街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308004, 410308, '吉利街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308005, 410308, '河阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308100, 410308, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308101, 410308, '会盟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308102, 410308, '平乐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308103, 410308, '送庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308104, 410308, '白鹤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308105, 410308, '朝阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308106, 410308, '小浪底镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308107, 410308, '麻屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308108, 410308, '横水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410308109, 410308, '常袋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311002, 410311, '开元路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311003, 410311, '龙门石窟街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311004, 410311, '关林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311005, 410311, '太康东路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311006, 410311, '古城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311007, 410311, '科技园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311008, 410311, '翠云路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311009, 410311, '龙门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311010, 410311, '学府街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311011, 410311, '定鼎门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311102, 410311, '安乐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311103, 410311, '白马寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311107, 410311, '李楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311194, 410311, '寇店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311195, 410311, '诸葛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311196, 410311, '李村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311197, 410311, '庞村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410311199, 410311, '佃庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323100, 410323, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323101, 410323, '石寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323102, 410323, '五头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323103, 410323, '磁涧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323104, 410323, '铁门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323105, 410323, '南李村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323106, 410323, '北冶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323107, 410323, '仓头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323108, 410323, '正村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323109, 410323, '石井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410323110, 410323, '青要山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324001, 410324, '耕莘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324101, 410324, '赤土店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324102, 410324, '合峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324103, 410324, '潭头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324104, 410324, '三川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324105, 410324, '冷水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324106, 410324, '陶湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324107, 410324, '石庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324108, 410324, '庙子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324109, 410324, '狮子庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324110, 410324, '白土镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324111, 410324, '叫河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324200, 410324, '栾川乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324203, 410324, '秋扒乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410324400, 410324, '重渡沟生态旅游示范区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325100, 410325, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325101, 410325, '田湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325102, 410325, '旧县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325103, 410325, '车村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325104, 410325, '闫庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325105, 410325, '德亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325106, 410325, '大章镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325107, 410325, '白河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325108, 410325, '纸房镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325109, 410325, '饭坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325110, 410325, '九皋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325111, 410325, '陆浑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325201, 410325, '大坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325203, 410325, '何村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325209, 410325, '黄庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325210, 410325, '木植街乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325400, 410325, '陶村林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325401, 410325, '五马寺林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410325402, 410325, '王莽寨林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326100, 410326, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326101, 410326, '上店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326102, 410326, '付店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326103, 410326, '小店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326104, 410326, '三屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326105, 410326, '刘店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326106, 410326, '内埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326107, 410326, '陶营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326200, 410326, '柏树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326202, 410326, '十八盘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326203, 410326, '靳村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326204, 410326, '王坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326209, 410326, '蔡店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410326400, 410326, '大安工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327100, 410327, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327102, 410327, '柳泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327103, 410327, '韩城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327104, 410327, '白杨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327105, 410327, '香鹿山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327106, 410327, '锦屏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327107, 410327, '三乡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327108, 410327, '张坞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327109, 410327, '莲庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327110, 410327, '赵保镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327111, 410327, '樊村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327112, 410327, '高村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327203, 410327, '盐镇乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327208, 410327, '花果山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327209, 410327, '上观乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410327212, 410327, '董王庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328100, 410328, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328101, 410328, '王范回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328102, 410328, '上戈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328103, 410328, '下峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328104, 410328, '河底镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328105, 410328, '兴华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328106, 410328, '东宋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328107, 410328, '马店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328108, 410328, '故县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328109, 410328, '赵村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328110, 410328, '长水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328111, 410328, '景阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328200, 410328, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328205, 410328, '小界乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328209, 410328, '罗岭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328213, 410328, '底张乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328216, 410328, '陈吴乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410328217, 410328, '涧口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329001, 410329, '城关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329002, 410329, '河滨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329101, 410329, '鸣皋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329102, 410329, '水寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329103, 410329, '彭婆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329104, 410329, '白沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329105, 410329, '江左镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329106, 410329, '高山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329107, 410329, '吕店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329108, 410329, '半坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329109, 410329, '酒后镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329110, 410329, '白元镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329111, 410329, '鸦岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329112, 410329, '葛寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410329203, 410329, '平等乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410371001, 410371, '瀛洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410371002, 410371, '辛店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410371003, 410371, '徐家营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410371101, 410371, '丰李镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402001, 410402, '曙光街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402002, 410402, '光明路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402003, 410402, '中兴路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402004, 410402, '矿工路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402005, 410402, '西市场街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402006, 410402, '新新街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402007, 410402, '青石山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402008, 410402, '湛河北路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402010, 410402, '西高皇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402100, 410402, '焦店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410402400, 410402, '香山管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403001, 410403, '东安路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403002, 410403, '优越路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403003, 410403, '五一路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403004, 410403, '建设路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403005, 410403, '东环路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403006, 410403, '东工人镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403007, 410403, '光华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403008, 410403, '鸿鹰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403009, 410403, '申楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403010, 410403, '北环路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403011, 410403, '东高皇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410403012, 410403, '蒲城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410404001, 410404, '高庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410404002, 410404, '龙兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410404003, 410404, '人民路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410404004, 410404, '龙河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411001, 410411, '马庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411002, 410411, '南环路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411003, 410411, '姚孟街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411004, 410411, '九里山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411005, 410411, '轻工路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411006, 410411, '高阳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411007, 410411, '北渡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411008, 410411, '荆山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411009, 410411, '河滨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410411200, 410411, '曹镇乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421001, 410421, '铁路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421100, 410421, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421101, 410421, '周庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421102, 410421, '闹店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421103, 410421, '石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421104, 410421, '商酒务镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421105, 410421, '大营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421106, 410421, '张八桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421107, 410421, '杨庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421108, 410421, '赵庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421200, 410421, '肖旗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421202, 410421, '前营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410421203, 410421, '李庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422001, 410422, '九龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422002, 410422, '昆阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422003, 410422, '盐都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422101, 410422, '任店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422102, 410422, '保安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422103, 410422, '仙台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422105, 410422, '叶邑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422106, 410422, '廉村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422107, 410422, '常村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422108, 410422, '辛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422109, 410422, '洪庄杨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422110, 410422, '龚店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422201, 410422, '夏李乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422203, 410422, '马庄回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422204, 410422, '田庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422207, 410422, '龙泉乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422208, 410422, '水寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410422210, 410422, '邓李乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423001, 410423, '露峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423002, 410423, '琴台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423003, 410423, '鲁阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423004, 410423, '汇源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423101, 410423, '下汤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423102, 410423, '梁洼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423103, 410423, '张官营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423104, 410423, '张良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423105, 410423, '尧山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423106, 410423, '瓦屋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423107, 410423, '赵村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423201, 410423, '四棵树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423202, 410423, '团城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423203, 410423, '熊背乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423204, 410423, '让河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423206, 410423, '观音寺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423207, 410423, '昭平台库区乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423208, 410423, '背孜乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423209, 410423, '仓头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423210, 410423, '董周乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423211, 410423, '张店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423212, 410423, '辛集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423213, 410423, '滚子营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410423214, 410423, '马楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425001, 410425, '龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425002, 410425, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425101, 410425, '冢头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425102, 410425, '安良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425103, 410425, '堂街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425104, 410425, '薛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425105, 410425, '长桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425106, 410425, '茨芭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425107, 410425, '黄道镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425108, 410425, '李口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425200, 410425, '王集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425202, 410425, '姚庄回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425203, 410425, '白庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425204, 410425, '广阔天地乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410425205, 410425, '渣元乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410471001, 410471, '皇台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410471100, 410471, '遵化店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410472001, 410472, '湖滨路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410472101, 410472, '滍阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410472401, 410472, '滨湖管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410472402, 410472, '应滨管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481001, 410481, '垭口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481002, 410481, '寺坡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481003, 410481, '朱兰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481004, 410481, '院岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481005, 410481, '矿建街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481006, 410481, '铁山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481007, 410481, '红山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481100, 410481, '尚店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481101, 410481, '八台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481102, 410481, '尹集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481103, 410481, '枣林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481202, 410481, '庙街乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481204, 410481, '武功乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410481205, 410481, '杨庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482001, 410482, '煤山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482002, 410482, '风穴路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482003, 410482, '钟楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482004, 410482, '洗耳河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482005, 410482, '汝南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482006, 410482, '紫云路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482101, 410482, '寄料镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482102, 410482, '温泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482103, 410482, '临汝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482104, 410482, '小屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482105, 410482, '杨楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482106, 410482, '蟒川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482107, 410482, '庙下镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482108, 410482, '米庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482109, 410482, '陵头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482110, 410482, '纸坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482111, 410482, '大峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482112, 410482, '夏店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482113, 410482, '焦村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482202, 410482, '王寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410482207, 410482, '骑岭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502001, 410502, '东大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502002, 410502, '头二三街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502003, 410502, '甜水井街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502004, 410502, '东关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502005, 410502, '南关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502006, 410502, '西大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502008, 410502, '北大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502011, 410502, '西关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502012, 410502, '紫薇大道街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502013, 410502, '光华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502014, 410502, '永明路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502015, 410502, '中华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502101, 410502, '宝莲寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502561, 410502, '步行街综合治理办公室', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410502562, 410502, '北大街综合治理办公室', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503001, 410503, '红旗路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503003, 410503, '解放路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503004, 410503, '灯塔路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503005, 410503, '豆腐营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503006, 410503, '洹北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503008, 410503, '彰东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503009, 410503, '彰北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503010, 410503, '民航路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503011, 410503, '曙光路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410503100, 410503, '柏庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505001, 410505, '梅园庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505002, 410505, '李珍街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505003, 410505, '电厂路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505004, 410505, '纱厂路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505005, 410505, '铁西路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505006, 410505, '水冶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505007, 410505, '清风街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505008, 410505, '北蒙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505009, 410505, '相台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505100, 410505, '曲沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505101, 410505, '水冶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410505200, 410505, '西郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506001, 410506, '田村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506002, 410506, '彰武街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506003, 410506, '文昌大道街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506004, 410506, '文明大道街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506005, 410506, '太行小区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506006, 410506, '中州路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506100, 410506, '龙泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506101, 410506, '马投涧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506103, 410506, '善应镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506201, 410506, '东风乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410506205, 410506, '马家乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522102, 410522, '铜冶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522106, 410522, '白璧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522108, 410522, '吕村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522109, 410522, '伦掌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522111, 410522, '崔家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522112, 410522, '辛村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522113, 410522, '韩陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522114, 410522, '永和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522115, 410522, '都里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522116, 410522, '高庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522203, 410522, '磊口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522204, 410522, '许家沟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522210, 410522, '安丰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522211, 410522, '洪河屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522214, 410522, '瓦店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410522216, 410522, '北郭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523100, 410523, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523101, 410523, '菜园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523102, 410523, '任固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523103, 410523, '五陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523104, 410523, '宜沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523105, 410523, '白营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523106, 410523, '伏道镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523107, 410523, '韩庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523108, 410523, '古贤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410523203, 410523, '瓦岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526001, 410526, '道口镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526002, 410526, '城关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526003, 410526, '锦和街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526102, 410526, '白道口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526103, 410526, '留固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526104, 410526, '上官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526105, 410526, '牛屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526106, 410526, '万古镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526107, 410526, '高平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526108, 410526, '王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526109, 410526, '老店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526110, 410526, '慈周寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526111, 410526, '焦虎镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526112, 410526, '四间房镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526113, 410526, '八里营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526114, 410526, '赵营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526115, 410526, '半坡店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526200, 410526, '枣村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526204, 410526, '大寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526205, 410526, '桑村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526206, 410526, '老爷庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526209, 410526, '瓦岗寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410526212, 410526, '小铺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527100, 410527, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527101, 410527, '东庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527102, 410527, '井店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527103, 410527, '梁庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527104, 410527, '后河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527105, 410527, '楚旺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527106, 410527, '田氏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527107, 410527, '二安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527108, 410527, '亳城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527109, 410527, '豆公镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527200, 410527, '张龙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527201, 410527, '马上乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527202, 410527, '高堤乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527205, 410527, '六村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527206, 410527, '中召乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527207, 410527, '宋村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410527209, 410527, '石盘屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410571563, 410571, '开发区峨嵋大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410571564, 410571, '开发区银杏大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410571565, 410571, '开发区商颂大街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581001, 410581, '开元街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581002, 410581, '振林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581003, 410581, '龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581004, 410581, '桂园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581101, 410581, '合涧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581102, 410581, '临淇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581103, 410581, '东姚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581104, 410581, '横水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581105, 410581, '河顺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581106, 410581, '任村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581107, 410581, '姚村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581108, 410581, '陵阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581109, 410581, '原康镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581110, 410581, '五龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581111, 410581, '采桑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581112, 410581, '东岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581113, 410581, '桂林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581114, 410581, '茶店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581115, 410581, '石板岩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410581116, 410581, '黄华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602001, 410602, '中山北路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602002, 410602, '中山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602003, 410602, '新华街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602004, 410602, '鹤山街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602005, 410602, '九矿广场街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602100, 410602, '鹤壁集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410602201, 410602, '姬家山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603001, 410603, '红旗街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603002, 410603, '长风中路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603003, 410603, '山城路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603004, 410603, '汤河桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603005, 410603, '鹿楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603006, 410603, '宝山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603007, 410603, '大胡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410603100, 410603, '石林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611001, 410611, '金山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611002, 410611, '九州路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611003, 410611, '黎阳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611004, 410611, '长江路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611005, 410611, '泰山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611100, 410611, '大赉店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611101, 410611, '钜桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611200, 410611, '上峪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611201, 410611, '大河涧乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410611566, 410611, '天山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621001, 410621, '卫溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621002, 410621, '浚州街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621003, 410621, '黎阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621004, 410621, '伾山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621101, 410621, '善堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621102, 410621, '屯子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621104, 410621, '新镇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621105, 410621, '小河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621107, 410621, '卫贤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621108, 410621, '王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410621109, 410621, '白寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622001, 410622, '朝歌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622002, 410622, '桥盟街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622003, 410622, '卫都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622004, 410622, '灵山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622101, 410622, '高村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622102, 410622, '北阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622103, 410622, '西岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622104, 410622, '庙口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410622202, 410622, '黄洞乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410671400, 410671, '东杨路办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410671401, 410671, '渤海路办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410671402, 410671, '海河路办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702001, 410702, '西街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702002, 410702, '东街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702003, 410702, '渠东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702007, 410702, '文化街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702009, 410702, '向阳小区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702100, 410702, '洪门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410702101, 410702, '小店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703001, 410703, '胜利路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703002, 410703, '解放路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703003, 410703, '中同街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703004, 410703, '健康路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703007, 410703, '自由路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703008, 410703, '南桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703009, 410703, '铁西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410703100, 410703, '平原镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410704001, 410704, '宝西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410704002, 410704, '宝东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410704100, 410704, '大块镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410704101, 410704, '耿黄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410704200, 410704, '潞王坟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711001, 410711, '东干道街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711002, 410711, '荣校路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711003, 410711, '北干道街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711004, 410711, '花园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711005, 410711, '卫北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711006, 410711, '新辉路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711007, 410711, '和平路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711100, 410711, '王村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711101, 410711, '牧野镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410711400, 410711, '新乡化学与物理电源产业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721101, 410721, '翟坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721102, 410721, '小冀镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721103, 410721, '七里营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721104, 410721, '朗公庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721105, 410721, '古固寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721107, 410721, '大召营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721200, 410721, '合河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410721560, 410721, '新乡经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724100, 410724, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724101, 410724, '照镜镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724102, 410724, '黄堤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724103, 410724, '中和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724104, 410724, '徐营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724105, 410724, '冯庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724106, 410724, '亢村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724107, 410724, '史庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724108, 410724, '太山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724200, 410724, '位庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724203, 410724, '大新庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724400, 410724, '原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724401, 410724, '园艺场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724402, 410724, '农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410724560, 410724, '西工区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725002, 410725, '阳和街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725003, 410725, '原兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725103, 410725, '齐街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725104, 410725, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725105, 410725, '福宁集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725107, 410725, '官厂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725108, 410725, '大宾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725200, 410725, '葛埠口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725206, 410725, '蒋庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725211, 410725, '陡门乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725215, 410725, '路寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725216, 410725, '阳阿乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410725218, 410725, '靳堂乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726001, 410726, '文岩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726002, 410726, '潭龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726003, 410726, '塔铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726101, 410726, '东屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726102, 410726, '丰庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726103, 410726, '石婆固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726104, 410726, '王楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726200, 410726, '僧固乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726202, 410726, '位邱乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726203, 410726, '司寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726205, 410726, '马庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726206, 410726, '胙城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726207, 410726, '榆林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726400, 410726, '国营林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726401, 410726, '新兴农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726402, 410726, '新乡市食品工业聚集区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410726403, 410726, '新乡市纺织工业聚集区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727100, 410727, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727101, 410727, '黄陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727102, 410727, '黄德镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727103, 410727, '应举镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727104, 410727, '陈桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727105, 410727, '赵岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727106, 410727, '留光镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727107, 410727, '潘店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727108, 410727, '李庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727109, 410727, '陈固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727110, 410727, '居厢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727111, 410727, '鲁岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727112, 410727, '尹岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727200, 410727, '城关乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727201, 410727, '回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727202, 410727, '王村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727206, 410727, '荆宫乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727208, 410727, '曹岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410727212, 410727, '冯村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410771360, 410771, '开发区关堤乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410771560, 410771, '振中街办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410772001, 410772, '纬七路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410773001, 410773, '龙源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410773101, 410773, '原武镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410773102, 410773, '师寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410773106, 410773, '韩董庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410773203, 410773, '祝楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410773204, 410773, '桥北乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781100, 410781, '汲水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781101, 410781, '太公镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781102, 410781, '孙杏村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781103, 410781, '后河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781104, 410781, '李源屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781105, 410781, '唐庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781106, 410781, '上乐村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781201, 410781, '狮豹头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781203, 410781, '安都乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781204, 410781, '顿坊店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781205, 410781, '柳庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781206, 410781, '庞寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781208, 410781, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781400, 410781, '卫辉市高效农业服务中心', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781401, 410781, '东风农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781402, 410781, '苗圃场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781403, 410781, '农科所', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410781404, 410781, '五四农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782001, 410782, '城关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782002, 410782, '胡桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782101, 410782, '薄壁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782102, 410782, '峪河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782103, 410782, '百泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782104, 410782, '孟庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782105, 410782, '常村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782106, 410782, '吴村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782107, 410782, '南村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782108, 410782, '南寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782109, 410782, '上八里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782110, 410782, '北云门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782111, 410782, '占城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782112, 410782, '冀屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782200, 410782, '黄水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782201, 410782, '拍石头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782202, 410782, '高庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782203, 410782, '张村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782205, 410782, '赵固乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782206, 410782, '西平罗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782207, 410782, '洪洲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410782208, 410782, '沙窑乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783001, 410783, '蒲西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783002, 410783, '蒲东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783003, 410783, '南蒲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783004, 410783, '蒲北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783005, 410783, '魏庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783100, 410783, '丁栾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783101, 410783, '樊相镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783102, 410783, '恼里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783103, 410783, '常村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783104, 410783, '赵堤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783105, 410783, '孟岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783106, 410783, '满村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783107, 410783, '苗寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783108, 410783, '张三寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783109, 410783, '方里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783110, 410783, '佘家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783201, 410783, '芦岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783202, 410783, '武邱乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410783460, 410783, '河南长垣起重工业园区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802001, 410802, '民生街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802002, 410802, '民主街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802003, 410802, '新华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802004, 410802, '焦西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802005, 410802, '焦南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802006, 410802, '焦北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802007, 410802, '七百间街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802008, 410802, '上白作街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410802009, 410802, '王褚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803001, 410803, '李封街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803002, 410803, '王封街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803003, 410803, '朱村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803004, 410803, '冯封街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803005, 410803, '龙洞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803006, 410803, '月山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803007, 410803, '丹河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803008, 410803, '许衡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803009, 410803, '府城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410803010, 410803, '龙翔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804001, 410804, '马村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804002, 410804, '武王街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804003, 410804, '冯营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804004, 410804, '九里山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804005, 410804, '待王街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804006, 410804, '安阳城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410804007, 410804, '演马街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811001, 410811, '东方红街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811002, 410811, '焦东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811003, 410811, '百间房街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811004, 410811, '太行街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811005, 410811, '艺新街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811006, 410811, '光亚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811007, 410811, '定和街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811008, 410811, '中星街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410811009, 410811, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821100, 410821, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821101, 410821, '七贤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821102, 410821, '郇封镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821103, 410821, '周庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821104, 410821, '云台山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821202, 410821, '王屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821204, 410821, '五里源乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821206, 410821, '西村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410821400, 410821, '小营工贸区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822001, 410822, '博爱县清化镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822002, 410822, '博爱县鸿昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822101, 410822, '博爱县柏山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822102, 410822, '博爱县月山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822103, 410822, '博爱县许良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822105, 410822, '博爱县磨头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822106, 410822, '博爱县孝敬镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822200, 410822, '博爱县寨豁乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822203, 410822, '博爱县金城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410822400, 410822, '国营博爱农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823001, 410823, '木城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823002, 410823, '龙源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823003, 410823, '龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823004, 410823, '木栾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823101, 410823, '詹店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823102, 410823, '西陶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823103, 410823, '谢旗营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823104, 410823, '大封镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823107, 410823, '乔庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823108, 410823, '圪当店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823200, 410823, '嘉应观乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823203, 410823, '三阳乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823204, 410823, '小董乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823205, 410823, '大虹桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823206, 410823, '北郭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410823598, 410823, '武陟宁郭农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825001, 410825, '温泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825002, 410825, '岳村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825003, 410825, '张羌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825004, 410825, '黄河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825101, 410825, '祥云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825102, 410825, '番田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825104, 410825, '黄庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825105, 410825, '武德镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825106, 410825, '赵堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825201, 410825, '招贤乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825203, 410825, '北冷乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410825400, 410825, '国营温县农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410871060, 410871, '李万街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410871061, 410871, '文苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410871062, 410871, '文昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410871100, 410871, '阳庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410871101, 410871, '宁郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410871203, 410871, '苏家作乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882001, 410882, '覃怀街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882002, 410882, '怀庆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882003, 410882, '太行街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882004, 410882, '沁园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882100, 410882, '崇义镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882101, 410882, '西向镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882102, 410882, '西万镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882103, 410882, '柏香镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882104, 410882, '山王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882105, 410882, '紫陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882200, 410882, '常平乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882201, 410882, '王召乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410882202, 410882, '王曲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883001, 410883, '大定街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883002, 410883, '会昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883003, 410883, '河雍街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883004, 410883, '河阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883100, 410883, '化工镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883101, 410883, '南庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883102, 410883, '城伯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883103, 410883, '谷旦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883104, 410883, '赵和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883105, 410883, '西虢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410883201, 410883, '槐树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902001, 410902, '中原路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902002, 410902, '胜利路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902003, 410902, '建设路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902004, 410902, '人民路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902005, 410902, '大庆路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902006, 410902, '黄河路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902007, 410902, '任丘路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902008, 410902, '长庆路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902009, 410902, '濮东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902101, 410902, '岳村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410902203, 410902, '孟轲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922100, 410922, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922101, 410922, '马庄桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922102, 410922, '瓦屋头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922103, 410922, '仙庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922104, 410922, '柳格镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922105, 410922, '韩村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922106, 410922, '固城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922107, 410922, '阳邵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922200, 410922, '六塔乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922202, 410922, '巩营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922203, 410922, '马村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922204, 410922, '高堡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922205, 410922, '古城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922206, 410922, '大流乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922208, 410922, '大屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922212, 410922, '双庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410922213, 410922, '纸房乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923100, 410923, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923101, 410923, '韩张镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923102, 410923, '元村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923103, 410923, '福堪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923104, 410923, '张果屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923105, 410923, '千口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923106, 410923, '谷金楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923200, 410923, '杨村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923205, 410923, '西邵乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923206, 410923, '寺庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923207, 410923, '梁村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410923208, 410923, '近德固乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926100, 410926, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926101, 410926, '濮城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926102, 410926, '龙王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926103, 410926, '高码头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926104, 410926, '王楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926105, 410926, '辛庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926106, 410926, '陈庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926107, 410926, '张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926201, 410926, '杨集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926203, 410926, '白衣阁乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926205, 410926, '颜村铺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410926208, 410926, '陆集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927100, 410927, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927101, 410927, '侯庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927102, 410927, '孙口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927103, 410927, '打渔陈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927104, 410927, '马楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927105, 410927, '吴坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927200, 410927, '后方乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927201, 410927, '清水河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410927205, 410927, '夹河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928100, 410928, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928101, 410928, '濮阳县柳屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928102, 410928, '濮阳县文留镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928103, 410928, '濮阳县庆祖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928104, 410928, '濮阳县八公桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928106, 410928, '濮阳县徐镇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928107, 410928, '濮阳县户部寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928108, 410928, '濮阳县鲁河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928109, 410928, '濮阳县子岸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928110, 410928, '濮阳县胡状镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928111, 410928, '濮阳县王称固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928112, 410928, '濮阳县梁庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928202, 410928, '濮阳县清河头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928206, 410928, '濮阳县白罡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928207, 410928, '濮阳县梨园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928208, 410928, '濮阳县五星乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928211, 410928, '濮阳县郎中乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928212, 410928, '濮阳县海通乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928213, 410928, '濮阳县渠村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410928214, 410928, '濮阳县习城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410971001, 410971, '河南濮阳工业园区昌湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972060, 410972, '昆吾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972061, 410972, '皇甫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972062, 410972, '开州街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972063, 410972, '濮上街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972100, 410972, '王助镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972101, 410972, '新习镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (410972360, 410972, '胡村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002001, 411002, '西大街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002002, 411002, '东大街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002003, 411002, '西关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002004, 411002, '南关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002005, 411002, '北大街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002006, 411002, '五一路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002007, 411002, '高桥营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002008, 411002, '丁庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002009, 411002, '颍昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002010, 411002, '文峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002011, 411002, '新兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002013, 411002, '灞陵街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002015, 411002, '魏北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002016, 411002, '产业集聚区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411002570, 411002, '东城区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003001, 411003, '许由街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003002, 411003, '新元街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003003, 411003, '邓庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003004, 411003, '昌盛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003100, 411003, '将官池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003101, 411003, '五女店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003102, 411003, '尚集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003103, 411003, '苏桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003104, 411003, '蒋李集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003105, 411003, '张潘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003106, 411003, '灵井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003200, 411003, '陈曹乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003202, 411003, '小召乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003203, 411003, '河街乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003204, 411003, '桂村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003205, 411003, '椹涧乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003206, 411003, '榆林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411003208, 411003, '艾庄回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024100, 411024, '安陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024101, 411024, '马栏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024102, 411024, '柏梁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024103, 411024, '陈化店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024104, 411024, '望田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024105, 411024, '大马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024106, 411024, '陶城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024107, 411024, '张桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024108, 411024, '彭店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024109, 411024, '只乐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024110, 411024, '南坞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411024111, 411024, '马坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025100, 411025, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025101, 411025, '颍桥回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025102, 411025, '麦岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025103, 411025, '颍阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025104, 411025, '王洛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025105, 411025, '紫云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025106, 411025, '库庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025107, 411025, '十里铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025108, 411025, '山头店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025109, 411025, '汾陈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025200, 411025, '湛北乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025202, 411025, '茨沟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025203, 411025, '丁营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025204, 411025, '姜庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025205, 411025, '范湖乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411025206, 411025, '双庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411071001, 411071, '长村张街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411071400, 411071, '龙湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081001, 411081, '颍川街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081002, 411081, '夏都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081003, 411081, '韩城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081004, 411081, '钧台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081005, 411081, '褚河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081100, 411081, '火龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081101, 411081, '顺店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081102, 411081, '方山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081103, 411081, '神垕镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081104, 411081, '鸿畅镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081105, 411081, '梁北镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081106, 411081, '古城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081107, 411081, '无梁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081108, 411081, '文殊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081109, 411081, '鸠山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081111, 411081, '范坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081112, 411081, '郭连镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081113, 411081, '朱阁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081114, 411081, '浅井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081115, 411081, '方岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081116, 411081, '花石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081117, 411081, '张得镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081118, 411081, '苌庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081119, 411081, '小吕镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081204, 411081, '磨街乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411081210, 411081, '山货回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082001, 411082, '建设路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082002, 411082, '长兴路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082003, 411082, '长社路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082004, 411082, '金桥路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082100, 411082, '和尚桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082101, 411082, '坡胡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082102, 411082, '后河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082103, 411082, '石固镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082104, 411082, '老城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082105, 411082, '南席镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082106, 411082, '大周镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082107, 411082, '董村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082108, 411082, '石象镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082109, 411082, '古桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082110, 411082, '增福镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411082111, 411082, '佛耳湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102001, 411102, '老街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102002, 411102, '马路街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102003, 411102, '顺河街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102004, 411102, '干河陈街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102100, 411102, '大刘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102101, 411102, '阴阳赵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102102, 411102, '空冢郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411102202, 411102, '问十乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103001, 411103, '沙北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103002, 411103, '龙塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103003, 411103, '淞江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103101, 411103, '孟庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103102, 411103, '商桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103103, 411103, '裴城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103104, 411103, '新店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103105, 411103, '龙城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103106, 411103, '李集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411103107, 411103, '黑龙潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104001, 411104, '召陵区天桥街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104002, 411104, '召陵区翟庄街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104003, 411104, '召陵区东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104100, 411104, '召陵区召陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104102, 411104, '召陵区万金镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104103, 411104, '召陵区老窝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104104, 411104, '姬石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411104105, 411104, '召陵区青年镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121100, 411121, '舞泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121101, 411121, '吴城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121102, 411121, '北舞渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121103, 411121, '莲花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121104, 411121, '辛安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121105, 411121, '孟寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121106, 411121, '太尉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121107, 411121, '侯集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121108, 411121, '九街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121109, 411121, '章化镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121200, 411121, '文峰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121201, 411121, '保和乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121202, 411121, '马村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411121204, 411121, '姜店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122001, 411122, '城关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122002, 411122, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122101, 411122, '繁城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122102, 411122, '杜曲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122103, 411122, '王岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122104, 411122, '台陈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122105, 411122, '巨陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122106, 411122, '瓦店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122107, 411122, '三家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122108, 411122, '窝城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122109, 411122, '王孟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122110, 411122, '大郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122201, 411122, '皇帝庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122202, 411122, '固厢乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122203, 411122, '石桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411122204, 411122, '陈庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411171101, 411171, '后谢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411171102, 411171, '邓襄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202001, 411202, '湖滨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202002, 411202, '前进街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202003, 411202, '车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202004, 411202, '涧河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202005, 411202, '大安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202006, 411202, '会兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202007, 411202, '崖底街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202201, 411202, '交口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202202, 411202, '磁钟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411202203, 411202, '高庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203100, 411203, '大营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203101, 411203, '原店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203102, 411203, '西张村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203103, 411203, '观音堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203200, 411203, '张汴乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203201, 411203, '张湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203203, 411203, '菜园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203205, 411203, '张茅乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203206, 411203, '王家后乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203207, 411203, '硖石乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203210, 411203, '西李村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203211, 411203, '宫前乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411203212, 411203, '店子乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221100, 411221, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221101, 411221, '英豪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221102, 411221, '张村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221103, 411221, '洪阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221104, 411221, '天池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221105, 411221, '仰韶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221203, 411221, '仁村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221206, 411221, '果园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221207, 411221, '陈村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221208, 411221, '坡头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221209, 411221, '段村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411221210, 411221, '南村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224001, 411224, '兴贤里街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224100, 411224, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224101, 411224, '杜关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224102, 411224, '五里川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224103, 411224, '官道口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224104, 411224, '朱阳关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224105, 411224, '官坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224106, 411224, '范里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224107, 411224, '东明镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224108, 411224, '双龙湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224200, 411224, '文峪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224201, 411224, '横涧乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224203, 411224, '双槐树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224204, 411224, '汤河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224205, 411224, '瓦窑沟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224206, 411224, '狮子坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224207, 411224, '沙河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224208, 411224, '徐家湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224209, 411224, '潘河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411224210, 411224, '木桐乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411271560, 411271, '向阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281001, 411281, '千秋路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281002, 411281, '朝阳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281003, 411281, '新义街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281004, 411281, '常村路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281005, 411281, '泰山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281006, 411281, '新区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411281007, 411281, '东区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282100, 411282, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282101, 411282, '尹庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282102, 411282, '朱阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282103, 411282, '阳平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282104, 411282, '故县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282105, 411282, '豫灵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282106, 411282, '大王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282107, 411282, '阳店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282108, 411282, '函谷关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282109, 411282, '焦村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282200, 411282, '川口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282201, 411282, '寺河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282202, 411282, '苏村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282203, 411282, '五亩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282204, 411282, '西阎乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282400, 411282, '灵宝市园艺场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282401, 411282, '涧东区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411282402, 411282, '涧西区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302001, 411302, '东关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302002, 411302, '新华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302003, 411302, '汉冶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302004, 411302, '仲景街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302007, 411302, '赤虎街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302008, 411302, '五里堡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302102, 411302, '官庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302103, 411302, '瓦店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302104, 411302, '红泥湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302105, 411302, '黄台岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302106, 411302, '金华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302107, 411302, '高庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302301, 411302, '溧河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302302, 411302, '汉冢乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411302304, 411302, '茶庵乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303002, 411303, '七一街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303003, 411303, '卧龙岗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303004, 411303, '武侯街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303005, 411303, '梅溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303006, 411303, '车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303007, 411303, '光武街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303008, 411303, '靳岗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303101, 411303, '石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303102, 411303, '潦河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303103, 411303, '安皋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303104, 411303, '蒲山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303105, 411303, '陆营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303106, 411303, '青华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303107, 411303, '英庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303108, 411303, '潦河坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303109, 411303, '谢庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303300, 411303, '七里园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303306, 411303, '王村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411303400, 411303, '龙王沟风景区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321100, 411321, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321101, 411321, '留山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321102, 411321, '云阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321103, 411321, '皇路店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321104, 411321, '南河店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321105, 411321, '板山坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321106, 411321, '乔端镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321107, 411321, '白土岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321300, 411321, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321301, 411321, '小店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321302, 411321, '皇后乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321303, 411321, '太山庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321304, 411321, '石门乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321305, 411321, '四棵树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321308, 411321, '马市坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321310, 411321, '崔庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321400, 411321, '河南红阳机械厂', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321401, 411321, '河南向东机械厂', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321402, 411321, '河南红宇机械厂', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321403, 411321, '国营东风机械厂', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411321404, 411321, '国营长江机械厂', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322001, 411322, '凤瑞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322002, 411322, '释之街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322003, 411322, '赭阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322004, 411322, '广安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322101, 411322, '独树镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322102, 411322, '博望镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322103, 411322, '拐河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322104, 411322, '小史店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322105, 411322, '赵河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322106, 411322, '广阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322108, 411322, '杨楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322109, 411322, '券桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322110, 411322, '清河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322111, 411322, '四里店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322112, 411322, '古庄店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322113, 411322, '杨集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322114, 411322, '柳河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322115, 411322, '二郎庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322311, 411322, '袁店回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411322401, 411322, '方城大寺林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323001, 411323, '白羽街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323002, 411323, '紫金街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323003, 411323, '莲花街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323101, 411323, '丹水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323102, 411323, '西坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323103, 411323, '双龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323104, 411323, '回车镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323105, 411323, '丁河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323106, 411323, '桑坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323107, 411323, '米坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323108, 411323, '五里桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323109, 411323, '重阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323110, 411323, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323111, 411323, '阳城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323112, 411323, '二郎坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323113, 411323, '石界河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323114, 411323, '军马河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323115, 411323, '田关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411323307, 411323, '寨根乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324001, 411324, '涅阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324002, 411324, '雪枫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324003, 411324, '玉都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324101, 411324, '石佛寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324102, 411324, '晁陂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324103, 411324, '贾宋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324104, 411324, '侯集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324105, 411324, '老庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324106, 411324, '卢医镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324107, 411324, '遮山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324108, 411324, '高丘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324109, 411324, '曲屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324110, 411324, '枣园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324111, 411324, '杨营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324112, 411324, '安字营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324113, 411324, '张林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324114, 411324, '柳泉铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324115, 411324, '彭营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324303, 411324, '二龙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324306, 411324, '王岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324309, 411324, '马庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411324315, 411324, '郭庄回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325100, 411325, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325101, 411325, '夏馆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325102, 411325, '师岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325103, 411325, '马山口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325104, 411325, '湍东镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325105, 411325, '赤眉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325106, 411325, '瓦亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325107, 411325, '王店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325108, 411325, '灌涨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325109, 411325, '桃溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325110, 411325, '岞岖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325111, 411325, '余关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325300, 411325, '板场乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325301, 411325, '大桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325302, 411325, '赵店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411325306, 411325, '七里坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326001, 411326, '龙城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326002, 411326, '商圣街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326101, 411326, '荆紫关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326102, 411326, '老城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326103, 411326, '香花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326104, 411326, '厚坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326105, 411326, '丹阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326106, 411326, '盛湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326107, 411326, '金河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326108, 411326, '寺湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326109, 411326, '仓房镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326110, 411326, '上集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326111, 411326, '马蹬镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326301, 411326, '西簧乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326302, 411326, '毛堂乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326303, 411326, '大石桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411326304, 411326, '滔河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327001, 411327, '赵河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327002, 411327, '潘河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327100, 411327, '赊店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327101, 411327, '桥头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327103, 411327, '饶良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327104, 411327, '兴隆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327105, 411327, '晋庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327106, 411327, '李店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327107, 411327, '苗店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327108, 411327, '郝寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327109, 411327, '朱集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327110, 411327, '下洼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327111, 411327, '太和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327112, 411327, '大冯营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327113, 411327, '陌陂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411327313, 411327, '唐庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328001, 411328, '滨河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328002, 411328, '文峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328003, 411328, '东兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328004, 411328, '兴唐街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328005, 411328, '泗洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328101, 411328, '源潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328102, 411328, '张店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328103, 411328, '郭滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328104, 411328, '湖阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328105, 411328, '黑龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328106, 411328, '大河屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328107, 411328, '龙潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328108, 411328, '桐寨铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328109, 411328, '苍台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328110, 411328, '上屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328111, 411328, '毕店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328112, 411328, '少拜寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328113, 411328, '祁仪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328114, 411328, '马振抚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328300, 411328, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328301, 411328, '桐河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328306, 411328, '昝岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328309, 411328, '古城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411328311, 411328, '东王集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329001, 411329, '汉城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329002, 411329, '汉华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329101, 411329, '王庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329102, 411329, '沙堰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329103, 411329, '新甸铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329104, 411329, '施庵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329105, 411329, '歪子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329106, 411329, '五星镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329107, 411329, '溧河铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329108, 411329, '王集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329300, 411329, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329303, 411329, '前高庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329305, 411329, '樊集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329307, 411329, '上庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411329309, 411329, '上港乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330100, 411330, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330101, 411330, '月河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330102, 411330, '吴城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330103, 411330, '固县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330104, 411330, '毛集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330105, 411330, '大河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330106, 411330, '埠江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330107, 411330, '平氏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330108, 411330, '淮源镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330109, 411330, '黄岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330110, 411330, '安棚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330111, 411330, '朱庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330112, 411330, '程湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330300, 411330, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330301, 411330, '回龙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411330306, 411330, '新集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411371060, 411371, '南阳高新区张衡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411371061, 411371, '南阳高新区百里奚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411371401, 411371, '中关村南阳科技产业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411372005, 411372, '白河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411372006, 411372, '枣林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411372007, 411372, '姜营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411372306, 411372, '新店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381001, 411381, '古城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381002, 411381, '花洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381003, 411381, '湍河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381102, 411381, '罗庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381103, 411381, '汲滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381104, 411381, '穰东镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381105, 411381, '孟楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381106, 411381, '林扒镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381107, 411381, '构林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381108, 411381, '十林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381109, 411381, '张村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381110, 411381, '都司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381111, 411381, '赵集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381112, 411381, '刘集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381113, 411381, '桑庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381114, 411381, '彭桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381115, 411381, '白牛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381116, 411381, '腰店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381117, 411381, '九龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381118, 411381, '文渠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381119, 411381, '高集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381120, 411381, '夏集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381121, 411381, '陶营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381122, 411381, '小杨营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381301, 411381, '张楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381305, 411381, '裴营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381319, 411381, '龙堰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381400, 411381, '南阳市黄牛良种繁育场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411381560, 411381, '杏山旅游管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402001, 411402, '平原街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402002, 411402, '长征街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402003, 411402, '前进街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402004, 411402, '白云街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402005, 411402, '东风街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402006, 411402, '八八街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402007, 411402, '建设街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402011, 411402, '解放街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402012, 411402, '陇海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402100, 411402, '谢集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402101, 411402, '双八镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402103, 411402, '观堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402104, 411402, '刘口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402105, 411402, '水池铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402203, 411402, '王楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402204, 411402, '李庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411402205, 411402, '孙福集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403001, 411403, '古城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403002, 411403, '文化街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403003, 411403, '东方街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403004, 411403, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403006, 411403, '宋城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403007, 411403, '古宋街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403100, 411403, '宋集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403101, 411403, '郭村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403102, 411403, '李口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403103, 411403, '高辛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403104, 411403, '坞墙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403105, 411403, '冯桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403106, 411403, '路河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403107, 411403, '闫集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403108, 411403, '毛固堆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403204, 411403, '包公庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403205, 411403, '娄店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403208, 411403, '勒马乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411403209, 411403, '临河店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421001, 411421, '绿洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421002, 411421, '南华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421101, 411421, '人和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421102, 411421, '龙塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421103, 411421, '北关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421104, 411421, '程庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421105, 411421, '王庄寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421106, 411421, '孙六镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421107, 411421, '白云寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421108, 411421, '王桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421109, 411421, '庄子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421110, 411421, '双塔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421111, 411421, '野岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421200, 411421, '伯党乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421201, 411421, '花园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421206, 411421, '林七乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421207, 411421, '胡集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421208, 411421, '禇庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421210, 411421, '老颜集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421400, 411421, '商丘市农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411421401, 411421, '商丘市林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422100, 411422, '长岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422101, 411422, '平岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422102, 411422, '周堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422103, 411422, '蓼堤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422104, 411422, '西陵寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422105, 411422, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422106, 411422, '潮庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422107, 411422, '尚屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422200, 411422, '后台乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422202, 411422, '河集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422203, 411422, '孙聚寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422204, 411422, '白楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422205, 411422, '河堤乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422206, 411422, '白庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422207, 411422, '胡堂乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422208, 411422, '尤吉屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422210, 411422, '董店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422211, 411422, '涧岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422213, 411422, '匡城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411422214, 411422, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423100, 411423, '城关回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423101, 411423, '张弓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423102, 411423, '柳河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423103, 411423, '逻岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423104, 411423, '石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423105, 411423, '黄岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423106, 411423, '华堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423203, 411423, '刘楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423204, 411423, '程楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423205, 411423, '乔楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423206, 411423, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423207, 411423, '阳驿乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423209, 411423, '孔集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423210, 411423, '赵村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411423400, 411423, '产业集聚区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424001, 411424, '凤凰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424002, 411424, '浦东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424003, 411424, '春水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424004, 411424, '双河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424101, 411424, '陈青集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424102, 411424, '起台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424103, 411424, '胡襄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424104, 411424, '慈圣镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424105, 411424, '安平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424106, 411424, '远襄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424107, 411424, '岗王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424108, 411424, '伯岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424109, 411424, '张桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424203, 411424, '洪恩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424204, 411424, '老王集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424205, 411424, '大仵乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424206, 411424, '马集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424207, 411424, '牛城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424208, 411424, '惠济乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424212, 411424, '申桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424213, 411424, '李原乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411424214, 411424, '皇集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425100, 411425, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425101, 411425, '界沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425102, 411425, '木兰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425103, 411425, '杜集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425104, 411425, '谷熟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425105, 411425, '大杨集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425107, 411425, '利民镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425108, 411425, '张集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425109, 411425, '站集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425110, 411425, '稍岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425111, 411425, '乔集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425200, 411425, '黄冢乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425201, 411425, '沙集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425202, 411425, '店集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425204, 411425, '闻集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425205, 411425, '芒种桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425207, 411425, '刘店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425208, 411425, '大候乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425210, 411425, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425211, 411425, '郑集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425212, 411425, '李老家乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425214, 411425, '镇里固乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425215, 411425, '古王集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425219, 411425, '刘集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411425221, 411425, '田庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426100, 411426, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426101, 411426, '会亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426102, 411426, '马头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426103, 411426, '济阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426104, 411426, '李集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426105, 411426, '车站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426106, 411426, '杨集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426107, 411426, '韩道口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426108, 411426, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426109, 411426, '罗庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426110, 411426, '火店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426111, 411426, '北岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426112, 411426, '郭店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426200, 411426, '曹集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426201, 411426, '胡桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426202, 411426, '歧河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426204, 411426, '业庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426205, 411426, '中峰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426207, 411426, '桑堌乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426208, 411426, '何营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426210, 411426, '王集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426211, 411426, '刘店集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426212, 411426, '骆集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411426214, 411426, '孔庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411471001, 411471, '中州街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411471100, 411471, '张阁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411471101, 411471, '贾寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411472009, 411472, '平台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411472010, 411472, '平安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411472200, 411472, '周集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481001, 411481, '演集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481002, 411481, '崇法寺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481003, 411481, '侯岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481004, 411481, '沱滨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481005, 411481, '日月湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481006, 411481, '雪枫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481102, 411481, '芒山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481103, 411481, '高庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481104, 411481, '酂城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481105, 411481, '裴桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481106, 411481, '马桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481107, 411481, '薛湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481108, 411481, '蒋口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481109, 411481, '陈集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481110, 411481, '十八里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481111, 411481, '太丘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481112, 411481, '李寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481113, 411481, '苗桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481114, 411481, '顺和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481115, 411481, '茴村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481116, 411481, '酂阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481117, 411481, '龙岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481118, 411481, '马牧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481119, 411481, '大王集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481120, 411481, '刘河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481121, 411481, '双桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481122, 411481, '卧龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481123, 411481, '黄口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481124, 411481, '新桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481125, 411481, '条河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411481219, 411481, '陈官庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502001, 411502, '老城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502002, 411502, '民权街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502003, 411502, '车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502004, 411502, '五里墩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502005, 411502, '五星街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502006, 411502, '湖东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502007, 411502, '南湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502008, 411502, '金牛山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502009, 411502, '双井街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502010, 411502, '贤山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502100, 411502, '李家寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502101, 411502, '吴家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502102, 411502, '东双河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502103, 411502, '董家河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502104, 411502, '浉河港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502203, 411502, '游河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502206, 411502, '谭家河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502207, 411502, '柳林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411502208, 411502, '十三里桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503001, 411503, '羊山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503002, 411503, '前进街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503003, 411503, '南京路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503004, 411503, '平桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503005, 411503, '甘岸街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503006, 411503, '五里店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503007, 411503, '平西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503008, 411503, '平东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503009, 411503, '震雷山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503101, 411503, '明港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503102, 411503, '五里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503103, 411503, '邢集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503105, 411503, '平昌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503106, 411503, '洋河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503107, 411503, '肖王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503202, 411503, '龙井乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503203, 411503, '胡店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503205, 411503, '彭家湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503206, 411503, '长台乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503207, 411503, '肖店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503209, 411503, '王岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503210, 411503, '高粱店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503211, 411503, '查山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503400, 411503, '土城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503401, 411503, '明港工业管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503404, 411503, '城阳城址保护区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503405, 411503, '龙飞山办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503406, 411503, '北湖风景管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503408, 411503, '农村改革发展综合试验核心区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411503410, 411503, '信阳国际家居产业小镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521001, 411521, '丽水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521002, 411521, '宝城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521003, 411521, '龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521101, 411521, '周党镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521102, 411521, '竹竿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521103, 411521, '灵山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521104, 411521, '子路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521105, 411521, '楠杆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521106, 411521, '青山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521107, 411521, '潘新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521108, 411521, '彭新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521109, 411521, '莽张镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521110, 411521, '东卜镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521111, 411521, '铁铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521202, 411521, '庙仙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521204, 411521, '定远乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521205, 411521, '山店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521207, 411521, '朱堂乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521208, 411521, '尤店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521209, 411521, '高店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411521400, 411521, '河南省五一农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522001, 411522, '弦山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522002, 411522, '紫水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522101, 411522, '十里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522102, 411522, '寨河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522103, 411522, '孙铁铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522104, 411522, '马畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522105, 411522, '泼陂河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522106, 411522, '白雀园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522107, 411522, '砖桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522201, 411522, '仙居乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522203, 411522, '北向店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522204, 411522, '罗陈乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522206, 411522, '殷棚乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522207, 411522, '南向店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522208, 411522, '晏河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522210, 411522, '凉亭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522212, 411522, '斛山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522213, 411522, '槐店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411522215, 411522, '文殊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523001, 411523, '金兰山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523100, 411523, '新集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523101, 411523, '沙窝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523103, 411523, '吴陈河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523104, 411523, '苏河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523105, 411523, '八里畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523201, 411523, '周河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523202, 411523, '陡山河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523203, 411523, '浒湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523204, 411523, '千斤乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523205, 411523, '卡房乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523206, 411523, '郭家河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523207, 411523, '陈店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523208, 411523, '箭厂河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523209, 411523, '泗店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411523210, 411523, '田铺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524001, 411524, '赤城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524002, 411524, '鲇鱼山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524101, 411524, '上石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524102, 411524, '鄢岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524103, 411524, '双椿铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524104, 411524, '汪桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524105, 411524, '余集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524106, 411524, '达权店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524107, 411524, '丰集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524108, 411524, '汪岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524109, 411524, '观庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524110, 411524, '金刚台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524203, 411524, '河凤桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524204, 411524, '李集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524207, 411524, '苏仙石乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524209, 411524, '伏山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524212, 411524, '吴河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524213, 411524, '冯店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524215, 411524, '长竹园乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411524400, 411524, '汤泉池管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525001, 411525, '蓼城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525002, 411525, '番城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525003, 411525, '秀水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525101, 411525, '陈淋子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525102, 411525, '黎集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525103, 411525, '蒋集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525104, 411525, '往流镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525105, 411525, '郭陆滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525106, 411525, '胡族铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525107, 411525, '方集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525108, 411525, '三河尖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525109, 411525, '段集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525110, 411525, '汪棚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525111, 411525, '张广庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525112, 411525, '陈集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525113, 411525, '武庙集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525114, 411525, '分水亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525115, 411525, '石佛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525116, 411525, '泉河铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525117, 411525, '祖师庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525118, 411525, '李店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525119, 411525, '沙河铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525201, 411525, '洪埠乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525202, 411525, '杨集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525203, 411525, '马堽集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525204, 411525, '草庙集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525206, 411525, '南大桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525208, 411525, '赵岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525211, 411525, '张老埠乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525218, 411525, '徐集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525222, 411525, '丰港乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525223, 411525, '柳树店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411525224, 411525, '观堂乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526001, 411526, '春申街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526002, 411526, '定城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526003, 411526, '弋阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526004, 411526, '老城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526101, 411526, '双柳树镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526102, 411526, '伞陂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526103, 411526, '卜塔集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526105, 411526, '仁和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526106, 411526, '付店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526107, 411526, '踅孜镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526108, 411526, '桃林铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526109, 411526, '黄寺岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526110, 411526, '江家集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526201, 411526, '传流店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526202, 411526, '魏岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526203, 411526, '张集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526204, 411526, '来龙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526205, 411526, '隆古乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526206, 411526, '谈店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526207, 411526, '上油岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526209, 411526, '白店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526400, 411526, '黄湖农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411526560, 411526, '河南省潢川经济技术开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527001, 411527, '顺河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527002, 411527, '滨湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527003, 411527, '栏杆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527004, 411527, '桂花街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527101, 411527, '马集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527103, 411527, '防胡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527104, 411527, '新里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527105, 411527, '期思镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527106, 411527, '赵集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527200, 411527, '台头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527201, 411527, '王家岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527202, 411527, '固城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527203, 411527, '三空桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527204, 411527, '张里乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527206, 411527, '邓湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527207, 411527, '张庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527208, 411527, '王店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527209, 411527, '谷堆乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411527212, 411527, '芦集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528001, 411528, '谯楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528002, 411528, '龙湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528003, 411528, '淮河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528101, 411528, '包信镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528102, 411528, '夏庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528103, 411528, '东岳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528104, 411528, '项店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528105, 411528, '小茴店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528106, 411528, '曹黄林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528201, 411528, '孙庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528202, 411528, '路口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528203, 411528, '彭店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528204, 411528, '杨店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528205, 411528, '张陶乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528206, 411528, '白土店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528207, 411528, '岗李店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528208, 411528, '长陵乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528209, 411528, '陈棚乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528210, 411528, '临河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528211, 411528, '关店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528214, 411528, '八里岔乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411528400, 411528, '濮公山管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411571001, 411571, '城东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411571002, 411571, '珍珠路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602001, 411602, '陈州街回族街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602002, 411602, '七一路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602003, 411602, '荷花路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602004, 411602, '人和街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602005, 411602, '小桥街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602006, 411602, '城南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602007, 411602, '城北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602008, 411602, '文昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602009, 411602, '搬口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602010, 411602, '金海路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602013, 411602, '李埠口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411602014, 411602, '许湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603001, 411603, '柳湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603100, 411603, '城关回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603101, 411603, '新站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603102, 411603, '鲁台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603103, 411603, '四通镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603104, 411603, '临蔡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603105, 411603, '安岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603106, 411603, '白楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603200, 411603, '朱集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603201, 411603, '豆门乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603202, 411603, '冯塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603203, 411603, '刘振屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603204, 411603, '王店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603205, 411603, '大连乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603206, 411603, '葛店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603207, 411603, '黄集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603209, 411603, '齐老乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603210, 411603, '郑集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411603211, 411603, '曹河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621001, 411621, '桐丘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621003, 411621, '扶亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621101, 411621, '崔桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621102, 411621, '江村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621103, 411621, '白潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621104, 411621, '韭园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621105, 411621, '练寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621106, 411621, '大新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621107, 411621, '包屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621108, 411621, '汴岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621200, 411621, '曹里乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621201, 411621, '柴岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621202, 411621, '固城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621203, 411621, '吕潭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621204, 411621, '大李庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411621205, 411621, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622001, 411622, '娲城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622002, 411622, '箕子台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622003, 411622, '昆山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622004, 411622, '皮营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622101, 411622, '西夏亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622102, 411622, '逍遥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622103, 411622, '奉母镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622104, 411622, '红花集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622105, 411622, '聂堆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622106, 411622, '东夏亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622107, 411622, '西华营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622108, 411622, '址坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622109, 411622, '迟营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622200, 411622, '田口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622201, 411622, '清河驿乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622203, 411622, '东王营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622204, 411622, '大王庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622205, 411622, '李大庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622206, 411622, '叶埠口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622208, 411622, '黄桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622209, 411622, '艾岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622405, 411622, '黄泛区农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411622406, 411622, '五二农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623001, 411623, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623002, 411623, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623003, 411623, '老城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623101, 411623, '黄寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623102, 411623, '练集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623103, 411623, '魏集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623104, 411623, '固墙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623105, 411623, '白寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623106, 411623, '巴村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623107, 411623, '谭庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623108, 411623, '邓城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623109, 411623, '胡吉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623110, 411623, '郝岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623111, 411623, '姚集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623112, 411623, '张庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623200, 411623, '城关乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623202, 411623, '平店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623203, 411623, '袁老乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623204, 411623, '化河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623206, 411623, '舒庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623207, 411623, '大武乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623208, 411623, '张明乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411623211, 411623, '汤庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624001, 411624, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624002, 411624, '北城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624100, 411624, '槐店回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624101, 411624, '刘庄店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624102, 411624, '留福集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624103, 411624, '老城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624104, 411624, '赵德营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624105, 411624, '付井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624106, 411624, '纸店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624107, 411624, '新安集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624108, 411624, '白集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624109, 411624, '刘湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624110, 411624, '莲池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624111, 411624, '洪山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624112, 411624, '北杨集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624113, 411624, '邢庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624114, 411624, '周营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624201, 411624, '石槽集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624202, 411624, '范营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624203, 411624, '李老庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624205, 411624, '冯营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411624209, 411624, '卞路口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625001, 411625, '洺南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625002, 411625, '洺北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625003, 411625, '新城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625101, 411625, '吴台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625102, 411625, '南丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625103, 411625, '白马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625104, 411625, '宁平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625105, 411625, '宜路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625106, 411625, '钱店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625107, 411625, '汲冢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625108, 411625, '石槽镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625200, 411625, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625201, 411625, '虎岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625202, 411625, '汲水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625203, 411625, '张完集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625204, 411625, '丁村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625205, 411625, '双楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625206, 411625, '秋渠乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625207, 411625, '东风乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625208, 411625, '巴集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625209, 411625, '李楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411625210, 411625, '胡集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627100, 411627, '城关回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627101, 411627, '常营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627102, 411627, '逊母口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627103, 411627, '老冢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627104, 411627, '朱口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627105, 411627, '马头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627106, 411627, '龙曲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627107, 411627, '板桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627108, 411627, '符草楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627109, 411627, '马厂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627110, 411627, '毛庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627111, 411627, '张集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627112, 411627, '清集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627113, 411627, '大许寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627114, 411627, '转楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627200, 411627, '城郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627201, 411627, '杨庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627202, 411627, '王集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627203, 411627, '高贤乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627204, 411627, '芝麻洼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627206, 411627, '独塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627208, 411627, '五里口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411627210, 411627, '高朗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628001, 411628, '真源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628002, 411628, '谷阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628003, 411628, '卫真街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628004, 411628, '鸣鹿街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628100, 411628, '涡北镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628101, 411628, '玄武镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628102, 411628, '宋河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628103, 411628, '太清宫镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628104, 411628, '王皮溜镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628105, 411628, '试量镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628106, 411628, '辛集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628107, 411628, '马铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628108, 411628, '贾滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628109, 411628, '杨湖口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628110, 411628, '张店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628111, 411628, '观堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628112, 411628, '生铁冢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628200, 411628, '郑家集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628204, 411628, '赵村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628205, 411628, '任集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628206, 411628, '唐集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628207, 411628, '高集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628208, 411628, '邱集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411628209, 411628, '穆店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411671011, 411671, '太昊路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411671012, 411671, '淮河路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681001, 411681, '花园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681002, 411681, '水寨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681003, 411681, '东方街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681004, 411681, '莲花街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681005, 411681, '千佛阁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681006, 411681, '光武街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681100, 411681, '南顿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681101, 411681, '孙店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681102, 411681, '李寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681103, 411681, '贾岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681104, 411681, '高寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681105, 411681, '新桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681106, 411681, '付集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681107, 411681, '官会镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681108, 411681, '丁集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681109, 411681, '郑郭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681110, 411681, '秣陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681111, 411681, '王明口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681112, 411681, '范集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681113, 411681, '三店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411681114, 411681, '永丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702001, 411702, '人民街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702002, 411702, '东风路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702003, 411702, '西园街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702004, 411702, '新华街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702005, 411702, '南海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702006, 411702, '老街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702007, 411702, '橡林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702008, 411702, '雪松街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702009, 411702, '顺河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702010, 411702, '刘阁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702011, 411702, '香山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702012, 411702, '古城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702100, 411702, '水屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702101, 411702, '沙河店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702102, 411702, '板桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702103, 411702, '诸市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702104, 411702, '蚁蜂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702201, 411702, '老河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702204, 411702, '朱古洞乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702205, 411702, '胡庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411702561, 411702, '金桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721001, 411721, '柏城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721002, 411721, '柏亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721003, 411721, '柏苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721101, 411721, '五沟营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721102, 411721, '权寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721103, 411721, '师灵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721104, 411721, '出山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721105, 411721, '盆尧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721106, 411721, '嫘祖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721107, 411721, '宋集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721108, 411721, '二郎镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721201, 411721, '重渠乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721203, 411721, '人和乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721205, 411721, '谭店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721208, 411721, '芦庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721209, 411721, '杨庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721210, 411721, '专探乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721212, 411721, '蔡寨回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721213, 411721, '焦庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411721500, 411721, '老王坡农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722001, 411722, '蔡都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722002, 411722, '芦岗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722003, 411722, '重阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722004, 411722, '卧龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722101, 411722, '黄埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722102, 411722, '杨集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722103, 411722, '洙湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722104, 411722, '党店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722105, 411722, '朱里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722106, 411722, '华陂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722107, 411722, '塔桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722108, 411722, '东洪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722109, 411722, '邵店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722110, 411722, '五龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722111, 411722, '和店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722112, 411722, '韩寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722113, 411722, '蔡沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722201, 411722, '大路李乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722202, 411722, '无量寺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722205, 411722, '杨屯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722209, 411722, '齐海乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722210, 411722, '崇礼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722212, 411722, '东岸乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722215, 411722, '小岳寺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722216, 411722, '西洪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411722217, 411722, '百尺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723001, 411723, '古槐街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723002, 411723, '清河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723003, 411723, '东皇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723101, 411723, '杨埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723102, 411723, '东和店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723103, 411723, '庙湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723104, 411723, '射桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723105, 411723, '西洋店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723106, 411723, '阳城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723107, 411723, '郭楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723108, 411723, '李屯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723109, 411723, '万金店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723110, 411723, '高杨店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723111, 411723, '万冢镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723202, 411723, '十字路乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723205, 411723, '玉皇庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723208, 411723, '老王岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723209, 411723, '辛店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411723211, 411723, '双庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724001, 411724, '真阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724002, 411724, '清源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724101, 411724, '寒冻镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724102, 411724, '汝南埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724103, 411724, '铜钟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724104, 411724, '陡沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724105, 411724, '熊寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724106, 411724, '大林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724107, 411724, '永兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724108, 411724, '袁寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724200, 411724, '慎水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724201, 411724, '傅寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724203, 411724, '新阮店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724204, 411724, '油坊店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724207, 411724, '雷寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724208, 411724, '王勿桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724210, 411724, '吕河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724212, 411724, '皮店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724213, 411724, '彭桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411724214, 411724, '兰青乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725001, 411725, '盘龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725002, 411725, '三里河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725003, 411725, '朗陵街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725101, 411725, '竹沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725102, 411725, '任店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725103, 411725, '新安店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725104, 411725, '留庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725105, 411725, '刘店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725107, 411725, '瓦岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725108, 411725, '双河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725109, 411725, '石滚河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725110, 411725, '李新店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411725111, 411725, '普会寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726001, 411726, '花园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726002, 411726, '泌水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726003, 411726, '古城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726102, 411726, '羊册镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726103, 411726, '马谷田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726105, 411726, '春水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726106, 411726, '官庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726107, 411726, '赊湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726108, 411726, '郭集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726109, 411726, '泰山庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726110, 411726, '王店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726111, 411726, '杨家集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726112, 411726, '高店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726113, 411726, '高邑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726201, 411726, '盘古乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726204, 411726, '铜山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726206, 411726, '下碑寺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726207, 411726, '象河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726208, 411726, '付庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726209, 411726, '贾楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726210, 411726, '黄山口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726215, 411726, '双庙街乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726400, 411726, '工业园区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411726401, 411726, '石材开发区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727001, 411727, '汝宁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727002, 411727, '三门闸街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727003, 411727, '古塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727004, 411727, '宿鸭湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727101, 411727, '王岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727102, 411727, '梁祝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727103, 411727, '和孝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727104, 411727, '老君庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727105, 411727, '留盆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727106, 411727, '金铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727107, 411727, '东官庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727108, 411727, '常兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727109, 411727, '罗店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727110, 411727, '韩庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727111, 411727, '三桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727112, 411727, '张楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727204, 411727, '南余店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411727212, 411727, '板店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728001, 411728, '瞿阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728002, 411728, '车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728003, 411728, '莲花湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728004, 411728, '褚堂街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728005, 411728, '吴房街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728102, 411728, '玉山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728103, 411728, '查岈山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728104, 411728, '石寨铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728105, 411728, '和兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728106, 411728, '沈寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728107, 411728, '阳丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728108, 411728, '常庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728109, 411728, '花庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728204, 411728, '槐树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728209, 411728, '文城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728400, 411728, '工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728500, 411728, '嵖岈山风景区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411728501, 411728, '凤鸣谷风景区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729001, 411729, '古吕街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729002, 411729, '今是街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729003, 411729, '月亮湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729101, 411729, '砖店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729102, 411729, '陈店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729103, 411729, '佛阁寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729104, 411729, '练村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729105, 411729, '棠村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729106, 411729, '韩集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729107, 411729, '龙口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729108, 411729, '李桥回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729109, 411729, '黄楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729110, 411729, '孙召镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729111, 411729, '余店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729204, 411729, '河坞乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729205, 411729, '关津乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729206, 411729, '宋岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729207, 411729, '顿岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729208, 411729, '涧头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729209, 411729, '杨庄户乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729210, 411729, '化庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729211, 411729, '栎城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729213, 411729, '弥陀寺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411729400, 411729, '南湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411771360, 411771, '关王庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411771400, 411771, '驻马店市职教园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411771560, 411771, '金河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411771562, 411771, '金山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (411771563, 411771, '开源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001001, 419001, '济源市沁园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001002, 419001, '济源市济水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001003, 419001, '济源市北海街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001004, 419001, '济源市天坛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001005, 419001, '济源市玉泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001100, 419001, '济源市克井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001101, 419001, '济源市五龙口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001102, 419001, '济源市轵城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001103, 419001, '济源市承留镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001104, 419001, '济源市邵原镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001105, 419001, '济源市坡头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001106, 419001, '济源市梨林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001107, 419001, '济源市大峪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001108, 419001, '济源市思礼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001109, 419001, '济源市王屋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (419001110, 419001, '济源市下冶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102002, 420102, '大智街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102003, 420102, '一元街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102004, 420102, '车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102005, 420102, '四唯街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102006, 420102, '永清街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102007, 420102, '西马街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102008, 420102, '球场街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102009, 420102, '劳动街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102010, 420102, '二七街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102011, 420102, '新村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102012, 420102, '丹水池街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102014, 420102, '台北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102015, 420102, '花桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102016, 420102, '谌家矶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102017, 420102, '后湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102018, 420102, '塔子湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420102400, 420102, '百步亭花园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103001, 420103, '民族街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103002, 420103, '花楼街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103003, 420103, '水塔街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103004, 420103, '民权街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103005, 420103, '满春街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103006, 420103, '民意街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103007, 420103, '新华街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103008, 420103, '万松街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103009, 420103, '唐家墩街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103010, 420103, '北湖街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103011, 420103, '前进街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103012, 420103, '常青街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103013, 420103, '汉兴街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103400, 420103, '江汉经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420103401, 420103, '武汉中央商务区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104001, 420104, '古田街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104002, 420104, '韩家墩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104003, 420104, '宗关街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104004, 420104, '汉水桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104005, 420104, '宝丰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104006, 420104, '荣华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104008, 420104, '汉中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104009, 420104, '汉正街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104010, 420104, '六角亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104011, 420104, '长丰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420104012, 420104, '易家街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105002, 420105, '建桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105004, 420105, '晴川街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105005, 420105, '鹦鹉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105006, 420105, '洲头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105007, 420105, '五里墩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105008, 420105, '琴断口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105009, 420105, '江汉二桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105010, 420105, '永丰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105011, 420105, '江堤街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105012, 420105, '四新街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420105013, 420105, '龙阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106001, 420106, '积玉桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106002, 420106, '杨园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106003, 420106, '徐家棚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106005, 420106, '粮道街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106006, 420106, '中华路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106007, 420106, '黄鹤楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106008, 420106, '紫阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106009, 420106, '白沙洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106010, 420106, '首义路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106011, 420106, '中南路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106012, 420106, '水果湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106013, 420106, '珞珈山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106014, 420106, '石洞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106015, 420106, '南湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420106490, 420106, '东湖风景区街道(武昌)', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107001, 420107, '红卫路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107002, 420107, '冶金街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107003, 420107, '新沟桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107004, 420107, '红钢城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107005, 420107, '工人村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107006, 420107, '青山镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107007, 420107, '厂前街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107008, 420107, '武东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107009, 420107, '白玉山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107010, 420107, '钢花村街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107400, 420107, '武钢集团', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107401, 420107, '中国一冶有限责任公司', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107402, 420107, '武汉钢铁有限公司', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107403, 420107, '中国一冶集体企业管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107404, 420107, '开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107405, 420107, '钢都花园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420107406, 420107, '北湖工业园管理办公室', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111001, 420111, '珞南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111002, 420111, '关山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111003, 420111, '狮子山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111004, 420111, '张家湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111005, 420111, '梨园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111006, 420111, '卓刀泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111007, 420111, '洪山街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111008, 420111, '和平街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111009, 420111, '青菱街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111061, 420111, '八吉府街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111080, 420111, '关东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111081, 420111, '花山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111082, 420111, '左岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111083, 420111, '九峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111205, 420111, '天兴乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111460, 420111, '清谭湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420111491, 420111, '东湖风景区街道(洪山)', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112001, 420112, '吴家山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112002, 420112, '柏泉办事处街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112004, 420112, '将军路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112005, 420112, '慈惠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112006, 420112, '走马岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112007, 420112, '径河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112008, 420112, '长青街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112011, 420112, '辛安渡办事处街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112012, 420112, '东山办事处街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112013, 420112, '常青花园新区管理委员会街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112014, 420112, '新沟镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112015, 420112, '金银湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112400, 420112, '产业管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112401, 420112, '保税物流管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112402, 420112, '海峡两岸科技产业管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112403, 420112, '食品工业管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112404, 420112, '临空经济管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112405, 420112, '农科所管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420112406, 420112, '现代服务业管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420113001, 420113, '纱帽街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420113002, 420113, '邓南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420113003, 420113, '东荆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420113004, 420113, '湘口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114001, 420114, '蔡甸街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114002, 420114, '奓山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114003, 420114, '永安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114004, 420114, '侏儒山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114005, 420114, '大集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114006, 420114, '张湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114007, 420114, '索河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114008, 420114, '玉贤街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114070, 420114, '沌口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114071, 420114, '军山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114072, 420114, '沌阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114200, 420114, '消泗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114400, 420114, '桐湖', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114401, 420114, '侏儒山街道洪北片区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114404, 420114, '中法武汉生态示范城', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114406, 420114, '侏儒山街道成功片区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420114407, 420114, '蔡甸经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115001, 420115, '纸坊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115002, 420115, '金口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115003, 420115, '乌龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115005, 420115, '郑店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115007, 420115, '五里界街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115008, 420115, '金水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115009, 420115, '安山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115010, 420115, '山坡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115014, 420115, '法泗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115015, 420115, '湖泗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115016, 420115, '舒安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115086, 420115, '佛祖岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115087, 420115, '豹澥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115088, 420115, '龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115089, 420115, '滨湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115401, 420115, '武汉江夏经济开发区庙山高新技术产业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115402, 420115, '武汉江夏经济开发区藏龙岛高新技术产业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115403, 420115, '武汉江夏经济开发区大桥现代产业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115404, 420115, '江夏梁子湖风景区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420115405, 420115, '武汉江夏经济开发区金港汽车产业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116001, 420116, '前川街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116002, 420116, '祁家湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116003, 420116, '横店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116004, 420116, '罗汉寺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116005, 420116, '滠口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116006, 420116, '六指街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116007, 420116, '天河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116008, 420116, '王家河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116009, 420116, '长轩岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116010, 420116, '李集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116011, 420116, '姚集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116012, 420116, '蔡榨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116013, 420116, '武湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116014, 420116, '三里桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116015, 420116, '蔡店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116201, 420116, '木兰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116401, 420116, '木兰山风景区管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116402, 420116, '大潭办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116403, 420116, '盘龙城经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420116404, 420116, '汉口北商贸物流枢纽区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117001, 420117, '邾城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117002, 420117, '阳逻街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117003, 420117, '仓埠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117004, 420117, '汪集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117005, 420117, '李集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117006, 420117, '三店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117007, 420117, '潘塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117008, 420117, '旧街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117009, 420117, '双柳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117010, 420117, '涨渡湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117011, 420117, '辛冲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117012, 420117, '徐古街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117102, 420117, '凤凰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117400, 420117, '道观河风景旅游管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420117406, 420117, '新洲原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420202005, 420202, '沈家营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420202006, 420202, '黄石港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420202007, 420202, '胜阳港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420202070, 420202, '花湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420202400, 420202, '江北管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203007, 420203, '章山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203008, 420203, '八泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203009, 420203, '澄月街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203010, 420203, '牧羊湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203011, 420203, '黄思湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203400, 420203, '冶钢农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420203402, 420203, '西塞山工业园区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420204004, 420204, '团城山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420204005, 420204, '新下陆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420204006, 420204, '老下陆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420204007, 420204, '东方山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420204401, 420204, '长乐山工业园管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420205003, 420205, '铁山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222100, 420222, '兴国镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222101, 420222, '富池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222102, 420222, '黄颡口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222103, 420222, '韦源口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222104, 420222, '太子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222105, 420222, '大王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222106, 420222, '陶港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222107, 420222, '白沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222108, 420222, '浮屠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222109, 420222, '三溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222110, 420222, '龙港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222111, 420222, '洋港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222112, 420222, '排市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222113, 420222, '木港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222114, 420222, '枫林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222115, 420222, '王英镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222451, 420222, '率洲农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222452, 420222, '半壁山农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222453, 420222, '荆头山农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222455, 420222, '金海开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420222456, 420222, '城东新区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281001, 420281, '东岳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281002, 420281, '东风路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281003, 420281, '金湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281004, 420281, '罗家桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281070, 420281, '金山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281100, 420281, '金牛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281101, 420281, '保安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281102, 420281, '灵乡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281103, 420281, '金山店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281104, 420281, '还地桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281105, 420281, '殷祖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281107, 420281, '刘仁八镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281108, 420281, '陈贵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281109, 420281, '大箕铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281170, 420281, '汪仁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281200, 420281, '茗山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281401, 420281, '东风农场管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420281402, 420281, '四顾闸管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302001, 420302, '武当路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302002, 420302, '二堰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302003, 420302, '五堰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302004, 420302, '白浪开发区白浪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302100, 420302, '大川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302201, 420302, '茅塔乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420302202, 420302, '鸳鸯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303001, 420303, '花果街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303002, 420303, '红卫街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303003, 420303, '车城路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303004, 420303, '汉江路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303100, 420303, '黄龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303101, 420303, '柏林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303200, 420303, '方滩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303201, 420303, '西沟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303400, 420303, '西城开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420303401, 420303, '十堰工业新区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304101, 420304, '安阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304102, 420304, '杨溪铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304103, 420304, '青曲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304104, 420304, '白桑关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304105, 420304, '南化塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304106, 420304, '白浪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304107, 420304, '刘洞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304108, 420304, '谭山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304109, 420304, '梅铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304110, 420304, '青山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304111, 420304, '茶店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304112, 420304, '柳陂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304113, 420304, '鲍峡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304114, 420304, '胡家营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304115, 420304, '谭家湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304117, 420304, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304200, 420304, '大柳乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304201, 420304, '五峰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304202, 420304, '叶大乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420304400, 420304, '沧浪山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322100, 420322, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322101, 420322, '土门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322102, 420322, '上津镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322103, 420322, '店子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322104, 420322, '夹河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322105, 420322, '羊尾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322106, 420322, '观音镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322107, 420322, '马鞍镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322108, 420322, '河夹镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322200, 420322, '香口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322201, 420322, '关防乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322202, 420322, '湖北口回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322203, 420322, '景阳乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322204, 420322, '六郎乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322205, 420322, '涧池乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322206, 420322, '安家乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322400, 420322, '槐树林特场管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322401, 420322, '三官洞林区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420322402, 420322, '工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323100, 420323, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323101, 420323, '溢水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323102, 420323, '麻家渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323103, 420323, '宝丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323104, 420323, '擂鼓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323105, 420323, '秦古镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323106, 420323, '得胜镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323107, 420323, '上庸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323108, 420323, '官渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323200, 420323, '潘口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323201, 420323, '竹坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323202, 420323, '大庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323203, 420323, '双台乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323204, 420323, '楼台乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323205, 420323, '文峰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323206, 420323, '深河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420323207, 420323, '柳林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324100, 420324, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324101, 420324, '蒋家堰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324102, 420324, '中峰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324103, 420324, '水坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324104, 420324, '县河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324105, 420324, '泉溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324106, 420324, '丰溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324107, 420324, '龙坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324108, 420324, '兵营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324109, 420324, '汇湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324110, 420324, '新洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324203, 420324, '鄂坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324205, 420324, '天宝乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324206, 420324, '桃源乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324207, 420324, '向坝乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324500, 420324, '龙王垭茶场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324501, 420324, '国营竹溪综合农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324502, 420324, '原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324503, 420324, '渔种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324504, 420324, '种畜场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324505, 420324, '王家山茶场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324506, 420324, '标湖林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420324507, 420324, '双竹林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325100, 420325, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325101, 420325, '军店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325102, 420325, '化龙堰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325103, 420325, '土城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325104, 420325, '大木厂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325105, 420325, '青峰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325106, 420325, '门古寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325107, 420325, '白鹤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325108, 420325, '野人谷镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325109, 420325, '红塔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325110, 420325, '窑淮镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325111, 420325, '尹吉甫镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325203, 420325, '姚坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325205, 420325, '沙河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325206, 420325, '万峪河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325208, 420325, '上龛乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325209, 420325, '中坝乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325210, 420325, '九道乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325211, 420325, '回龙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420325212, 420325, '五台乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381001, 420381, '均州路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381002, 420381, '大坝路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381003, 420381, '丹赵路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381005, 420381, '三官殿街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381100, 420381, '土关垭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381101, 420381, '浪河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381102, 420381, '丁家营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381103, 420381, '六里坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381104, 420381, '盐池河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381105, 420381, '均县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381106, 420381, '习家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381107, 420381, '蒿坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381108, 420381, '石鼓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381109, 420381, '凉水河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381110, 420381, '官山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381111, 420381, '龙山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381400, 420381, '新港经济开发管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381401, 420381, '牛河林业开发管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381402, 420381, '白杨坪林业开发管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381403, 420381, '大沟林业开发管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420381450, 420381, '武当山特区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502001, 420502, '西陵街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502002, 420502, '学院街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502003, 420502, '云集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502004, 420502, '西坝街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502005, 420502, '葛洲坝街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502006, 420502, '夜明珠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502007, 420502, '东苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502008, 420502, '南苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502009, 420502, '北苑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420502010, 420502, '窑湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420503001, 420503, '大公桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420503002, 420503, '万寿桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420503003, 420503, '宝塔河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420503004, 420503, '伍家岗街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420503201, 420503, '伍家乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420504001, 420504, '点军街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420504101, 420504, '艾家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420504102, 420504, '桥边镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420504201, 420504, '联棚乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420504202, 420504, '土城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420505001, 420505, '古老背街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420505002, 420505, '虎牙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420505003, 420505, '云池街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506001, 420506, '小溪塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506101, 420506, '樟村坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506102, 420506, '雾渡河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506103, 420506, '分乡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506104, 420506, '太平溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506105, 420506, '三斗坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506106, 420506, '乐天溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506107, 420506, '龙泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506108, 420506, '鸦鹊岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506109, 420506, '黄花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506201, 420506, '下堡坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506202, 420506, '邓村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506401, 420506, '三峡坝区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420506402, 420506, '东城城乡统筹发展试验区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525101, 420525, '鸣凤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525102, 420525, '花林寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525103, 420525, '旧县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525104, 420525, '洋坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525105, 420525, '茅坪场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525106, 420525, '嫘祖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420525201, 420525, '河口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526101, 420526, '古夫镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526102, 420526, '昭君镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526103, 420526, '峡口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526104, 420526, '南阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526105, 420526, '黄粮镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526106, 420526, '水月寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526201, 420526, '高桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420526202, 420526, '榛子乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527101, 420527, '茅坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527102, 420527, '归州镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527103, 420527, '屈原镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527104, 420527, '沙镇溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527105, 420527, '两河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527106, 420527, '郭家坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527107, 420527, '杨林桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527108, 420527, '九畹溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527201, 420527, '水田坝乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527202, 420527, '泄滩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527203, 420527, '梅家河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420527204, 420527, '磨坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528101, 420528, '龙舟坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528102, 420528, '高家堰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528103, 420528, '磨市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528104, 420528, '都镇湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528105, 420528, '资丘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528106, 420528, '渔峡口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528107, 420528, '榔坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528108, 420528, '贺家坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528201, 420528, '大堰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528202, 420528, '鸭子口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420528203, 420528, '火烧坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529111, 420529, '渔洋关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529112, 420529, '仁和坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529113, 420529, '长乐坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529114, 420529, '五峰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529115, 420529, '湾潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529201, 420529, '付家堰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529202, 420529, '牛庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420529203, 420529, '采花乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581001, 420581, '陆城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581100, 420581, '红花套镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581101, 420581, '高坝洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581102, 420581, '聂家河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581103, 420581, '松木坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581104, 420581, '枝城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581105, 420581, '姚家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581106, 420581, '五眼泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581107, 420581, '王家畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581200, 420581, '潘家湾土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420581400, 420581, '松宜矿区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582001, 420582, '当阳市玉阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582002, 420582, '当阳市坝陵街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582003, 420582, '当阳市玉泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582101, 420582, '当阳市两河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582102, 420582, '当阳市河溶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582103, 420582, '当阳市淯溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582104, 420582, '当阳市庙前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582105, 420582, '当阳市王店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582106, 420582, '当阳市半月镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420582107, 420582, '当阳市草埠湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583001, 420583, '马家店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583101, 420583, '安福寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583102, 420583, '白洋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583103, 420583, '顾家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583104, 420583, '董市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583105, 420583, '仙女镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583106, 420583, '问安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583107, 420583, '七星台镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420583108, 420583, '百里洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602001, 420602, '真武山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602002, 420602, '古城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602003, 420602, '庞公街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602004, 420602, '檀溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602005, 420602, '隆中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602006, 420602, '余家湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602100, 420602, '欧庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602101, 420602, '卧龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420602200, 420602, '尹集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606001, 420606, '汉江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606002, 420606, '王寨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606003, 420606, '中原街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606004, 420606, '定中门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606005, 420606, '清河口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606006, 420606, '屏襄门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606007, 420606, '米公街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606008, 420606, '柿铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606070, 420606, '高新区紫贞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606071, 420606, '高新区七里河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606072, 420606, '高新区东风街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606100, 420606, '牛首镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606101, 420606, '太平店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606170, 420606, '高新区团山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606171, 420606, '高新区米庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606400, 420606, '经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606480, 420606, '鱼梁洲开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606570, 420606, '高新区汽车工业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606571, 420606, '高新区高新技术产业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420606572, 420606, '高新区高新技术创业服务中心', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607001, 420607, '张湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607002, 420607, '刘集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607003, 420607, '肖湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607004, 420607, '六两河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607100, 420607, '龙王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607101, 420607, '石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607102, 420607, '黄集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607103, 420607, '伙牌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607104, 420607, '古驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607105, 420607, '朱集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607106, 420607, '程河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607107, 420607, '双沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607108, 420607, '张家集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607109, 420607, '黄龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607110, 420607, '峪山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607111, 420607, '东津镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607402, 420607, '鹿门风景名胜区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607500, 420607, '襄北农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420607570, 420607, '深圳工业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624100, 420624, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624101, 420624, '武安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624102, 420624, '九集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624103, 420624, '李庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624104, 420624, '长坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624105, 420624, '薛坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624106, 420624, '板桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624107, 420624, '巡检镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624108, 420624, '东巩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624109, 420624, '肖堰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420624500, 420624, '清河管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625100, 420625, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625101, 420625, '石花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625102, 420625, '盛康镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625103, 420625, '庙滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625104, 420625, '五山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625105, 420625, '茨河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625106, 420625, '南河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625107, 420625, '紫金镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625108, 420625, '冷集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625200, 420625, '赵湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420625500, 420625, '薤山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626100, 420626, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626101, 420626, '黄堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626102, 420626, '后坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626103, 420626, '龙坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626104, 420626, '店垭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626105, 420626, '马良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626106, 420626, '歇马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626107, 420626, '马桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626108, 420626, '寺坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626109, 420626, '过渡湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626200, 420626, '两峪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420626400, 420626, '湖北保康经济开发区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682001, 420682, '光化街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682002, 420682, '酂阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682100, 420682, '孟楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682101, 420682, '竹林桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682102, 420682, '薛集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682103, 420682, '张集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682104, 420682, '仙人渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682105, 420682, '洪山嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682106, 420682, '李楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682200, 420682, '袁冲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682501, 420682, '蔬菜原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682502, 420682, '百花山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420682503, 420682, '林茂山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683001, 420683, '北城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683002, 420683, '南城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683003, 420683, '环城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683100, 420683, '琚湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683101, 420683, '七方镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683102, 420683, '杨当镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683103, 420683, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683104, 420683, '新市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683105, 420683, '鹿头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683106, 420683, '刘升镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683107, 420683, '兴隆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683108, 420683, '王城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683109, 420683, '吴店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683110, 420683, '熊集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683111, 420683, '平林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683402, 420683, '枣阳经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683500, 420683, '随阳农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420683501, 420683, '车河农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684001, 420684, '鄢城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684002, 420684, '南营街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684003, 420684, '龙头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684102, 420684, '郑集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684103, 420684, '小河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684104, 420684, '刘猴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684105, 420684, '孔湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684106, 420684, '流水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684107, 420684, '板桥店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684108, 420684, '王集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684109, 420684, '雷河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684400, 420684, '襄南监狱', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684401, 420684, '劳教所', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684450, 420684, '大雁工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420684452, 420684, '宜城经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420702100, 420702, '太和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420702101, 420702, '东沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420702102, 420702, '梁子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420702103, 420702, '涂家垴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420702104, 420702, '沼山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420702400, 420702, '梧桐湖新区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703100, 420703, '华容镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703101, 420703, '葛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703102, 420703, '庙岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703103, 420703, '段店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703200, 420703, '临江乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703201, 420703, '蒲团乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420703400, 420703, '葛店开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704001, 420704, '凤凰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704002, 420704, '古楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704003, 420704, '西山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704100, 420704, '泽林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704101, 420704, '杜山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704102, 420704, '新庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704103, 420704, '碧石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704104, 420704, '汀祖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704105, 420704, '燕矶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704106, 420704, '杨叶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704107, 420704, '花湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704108, 420704, '长港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704200, 420704, '沙窝乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704400, 420704, '鄂州经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420704401, 420704, '临空经济区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802001, 420802, '龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802002, 420802, '泉口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802100, 420802, '栗溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802101, 420802, '子陵铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802102, 420802, '漳河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802103, 420802, '马河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802104, 420802, '石桥驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802105, 420802, '牌楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802200, 420802, '仙居乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420802400, 420802, '东宝工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420804001, 420804, '掇刀石街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420804002, 420804, '白庙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420804003, 420804, '兴隆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420804004, 420804, '双喜街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420804100, 420804, '团林铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420804101, 420804, '麻城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822100, 420822, '沙洋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822101, 420822, '五里铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822102, 420822, '十里铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822103, 420822, '纪山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822104, 420822, '拾回桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822105, 420822, '后港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822106, 420822, '毛李镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822107, 420822, '官垱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822108, 420822, '李市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822109, 420822, '马良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822110, 420822, '高阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822111, 420822, '沈集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822112, 420822, '曾集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822400, 420822, '湖北沙洋经济开发区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822401, 420822, '沙洋新港区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822402, 420822, '沙洋滨江新区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420822450, 420822, '沙洋监狱管理局', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881001, 420881, '郢中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881100, 420881, '洋梓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881101, 420881, '长寿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881102, 420881, '丰乐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881103, 420881, '胡集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881104, 420881, '双河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881105, 420881, '磷矿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881106, 420881, '文集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881107, 420881, '冷水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881108, 420881, '石牌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881109, 420881, '旧口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881110, 420881, '柴湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881111, 420881, '长滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881112, 420881, '东桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881113, 420881, '客店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881114, 420881, '张集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881200, 420881, '九里乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881400, 420881, '湖北钟祥经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881450, 420881, '钟祥市官庄湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881451, 420881, '南湖原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881452, 420881, '罗汉寺种畜场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881453, 420881, '双桥原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881454, 420881, '东岳种畜场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881455, 420881, '康桥湖农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881456, 420881, '大口林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881457, 420881, '盘石岭林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881458, 420881, '温峡水库', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881459, 420881, '石门水库', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881460, 420881, '黄坡水库', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420881461, 420881, '湖北钟祥胡集经济技术开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882001, 420882, '新市街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882002, 420882, '永兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882003, 420882, '温泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882102, 420882, '曹武镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882103, 420882, '罗店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882104, 420882, '宋河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882105, 420882, '坪坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882106, 420882, '三阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882107, 420882, '绿林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882108, 420882, '杨集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882109, 420882, '孙桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882110, 420882, '石龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882111, 420882, '永漋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882112, 420882, '雁门口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882113, 420882, '钱场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882450, 420882, '太子山', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882451, 420882, '罗汉寺办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882452, 420882, '长滩办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882453, 420882, '何集办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420882455, 420882, '易家岭办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902001, 420902, '书院街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902002, 420902, '新华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902003, 420902, '广场街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902004, 420902, '车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902100, 420902, '新铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902101, 420902, '西河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902102, 420902, '杨店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902103, 420902, '陡岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902104, 420902, '肖港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902105, 420902, '毛陈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902106, 420902, '三汊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902107, 420902, '祝站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902200, 420902, '朋兴乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902201, 420902, '卧龙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902202, 420902, '闵集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902400, 420902, '经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902450, 420902, '朱湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902500, 420902, '东山头办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902570, 420902, '孝感开发区丹阳办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902571, 420902, '孝感开发区孝天办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420902572, 420902, '孝感开发区槐荫办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921100, 420921, '花园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921101, 420921, '丰山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921102, 420921, '周巷镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921103, 420921, '小河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921104, 420921, '王店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921105, 420921, '卫店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921106, 420921, '白沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921107, 420921, '邹岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921200, 420921, '小悟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921201, 420921, '季店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921202, 420921, '花西乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921203, 420921, '陡山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921400, 420921, '开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921450, 420921, '观音湖生态文化旅游渡假区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420921500, 420921, '双峰山旅游渡假区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922100, 420922, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922101, 420922, '阳平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922102, 420922, '芳畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922103, 420922, '新城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922104, 420922, '夏店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922105, 420922, '刘集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922106, 420922, '河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922107, 420922, '四姑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922108, 420922, '吕王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922109, 420922, '黄站镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922110, 420922, '宣化店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922111, 420922, '丰店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922112, 420922, '大新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922113, 420922, '三里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922200, 420922, '高店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922201, 420922, '彭店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922202, 420922, '东新乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922501, 420922, '高铁试验区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420922502, 420922, '悟峰山度假区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923100, 420923, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923101, 420923, '义堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923102, 420923, '曾店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923103, 420923, '吴铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923104, 420923, '伍洛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923105, 420923, '下辛店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923106, 420923, '道桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923107, 420923, '隔蒲潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923108, 420923, '胡金店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923200, 420923, '倒店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923201, 420923, '沙河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923202, 420923, '清明河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420923450, 420923, '县经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981001, 420981, '城中街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981002, 420981, '城北街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981003, 420981, '四里棚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981004, 420981, '东马坊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981005, 420981, '长江埠街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981100, 420981, '田店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981101, 420981, '杨河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981102, 420981, '三合镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981103, 420981, '郎君镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981104, 420981, '黄滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981105, 420981, '天鹅镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981106, 420981, '义和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981107, 420981, '陈河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981108, 420981, '杨岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981109, 420981, '汤池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981400, 420981, '经济技术开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420981500, 420981, '南垸良种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982001, 420982, '府城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982002, 420982, '南城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982100, 420982, '赵棚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982101, 420982, '李店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982102, 420982, '巡店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982103, 420982, '棠棣镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982104, 420982, '雷公镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982105, 420982, '王义贞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982106, 420982, '烟店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982107, 420982, '孛畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982108, 420982, '洑水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982200, 420982, '陈店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982201, 420982, '辛榨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982202, 420982, '木梓乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982203, 420982, '接官乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420982400, 420982, '开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984001, 420984, '仙女山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984002, 420984, '汈东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984100, 420984, '马口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984101, 420984, '脉旺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984102, 420984, '城隍镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984103, 420984, '分水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984104, 420984, '沉湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984105, 420984, '田二河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984106, 420984, '回龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984107, 420984, '新堰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984108, 420984, '垌塚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984109, 420984, '麻河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984110, 420984, '刘家隔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984111, 420984, '新河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984112, 420984, '庙头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984113, 420984, '杨林沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984200, 420984, '西江乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984201, 420984, '湾潭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984202, 420984, '南河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984203, 420984, '马鞍乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984204, 420984, '里潭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984205, 420984, '韩集乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984450, 420984, '国营中洲农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984500, 420984, '华严农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984502, 420984, '三星垸原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984503, 420984, '汈汊湖养殖场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (420984504, 420984, '汉川市经济技术开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002001, 421002, '中山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002002, 421002, '崇文街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002003, 421002, '解放街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002004, 421002, '胜利街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002005, 421002, '朝阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002006, 421002, '立新街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002100, 421002, '锣场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002101, 421002, '岑河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002102, 421002, '观音垱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421002103, 421002, '关沮镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003001, 421003, '西城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003002, 421003, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003003, 421003, '城南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003004, 421003, '凤凰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003100, 421003, '纪南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003101, 421003, '川店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003102, 421003, '马山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003103, 421003, '八岭山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003104, 421003, '李埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003105, 421003, '弥市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003106, 421003, '郢城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003450, 421003, '太湖港管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421003451, 421003, '菱角湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022100, 421022, '埠河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022101, 421022, '斗湖堤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022102, 421022, '夹竹园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022103, 421022, '闸口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022104, 421022, '杨家厂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022105, 421022, '麻豪口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022106, 421022, '藕池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022107, 421022, '黄山头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022108, 421022, '孟家溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022109, 421022, '南平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022110, 421022, '章庄铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022111, 421022, '狮子口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022112, 421022, '斑竹垱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022113, 421022, '毛家港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022200, 421022, '甘家厂乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421022201, 421022, '章田寺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024100, 421024, '资市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024102, 421024, '熊河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024103, 421024, '白马寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024104, 421024, '沙岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024105, 421024, '普济镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024106, 421024, '郝穴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024200, 421024, '马家寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024201, 421024, '秦市乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024450, 421024, '江北监狱', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024500, 421024, '三湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421024501, 421024, '六合垸管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421071001, 421071, '联合街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421071002, 421071, '西湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421071003, 421071, '鱼农桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421071100, 421071, '滩桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081001, 421081, '绣林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081002, 421081, '笔架山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081100, 421081, '新厂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081101, 421081, '横沟市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081102, 421081, '大垸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081103, 421081, '小河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081104, 421081, '桃花山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081105, 421081, '调关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081106, 421081, '东升镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081107, 421081, '高基庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081108, 421081, '南口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081109, 421081, '高陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081110, 421081, '团山寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081200, 421081, '久合垸乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421081500, 421081, '天鹅洲开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083001, 421083, '新堤街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083002, 421083, '滨湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083100, 421083, '螺山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083101, 421083, '乌林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083102, 421083, '龙口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083103, 421083, '燕窝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083104, 421083, '新滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083105, 421083, '峰口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083106, 421083, '曹市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083107, 421083, '府场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083108, 421083, '戴家场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083109, 421083, '瞿家湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083110, 421083, '沙口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083111, 421083, '万全镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083112, 421083, '汊河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083113, 421083, '黄家口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083200, 421083, '老湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083450, 421083, '小港管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083451, 421083, '大同湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421083452, 421083, '大沙湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087001, 421087, '新江口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087002, 421087, '乐乡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087101, 421087, '南海镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087102, 421087, '八宝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087103, 421087, '涴市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087104, 421087, '老城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087105, 421087, '陈店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087106, 421087, '王家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087107, 421087, '斯家场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087108, 421087, '杨林市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087109, 421087, '纸厂河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087110, 421087, '街河市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087111, 421087, '洈水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087112, 421087, '刘家场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087113, 421087, '沙道观镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087200, 421087, '万家乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421087201, 421087, '卸甲坪土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088100, 421088, '容城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088101, 421088, '朱河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088102, 421088, '新沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088103, 421088, '龚场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088104, 421088, '周老嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088105, 421088, '黄歇口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088106, 421088, '汪桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088107, 421088, '程集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088108, 421088, '分盐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088109, 421088, '毛市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088110, 421088, '福田寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088111, 421088, '上车湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088112, 421088, '汴河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088113, 421088, '尺八镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088114, 421088, '白螺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088115, 421088, '网市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088116, 421088, '三洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088117, 421088, '桥市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088200, 421088, '红城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088201, 421088, '棋盘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088202, 421088, '柘木乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088450, 421088, '人民大垸农场管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421088451, 421088, '荒湖农场管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102001, 421102, '赤壁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102002, 421102, '东湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102003, 421102, '禹王街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102004, 421102, '南湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102005, 421102, '西湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102100, 421102, '路口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102101, 421102, '堵城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102102, 421102, '陈策楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102200, 421102, '陶店乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421102450, 421102, '火车站开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121100, 421121, '团风镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121101, 421121, '淋山河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121102, 421121, '方高坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121103, 421121, '回龙山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121104, 421121, '马曹庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121105, 421121, '上巴河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121106, 421121, '总路咀镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121107, 421121, '但店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121200, 421121, '贾庙乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121201, 421121, '杜皮乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421121400, 421121, '黄湖农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122100, 421122, '城关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122101, 421122, '七里坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122102, 421122, '华家河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122103, 421122, '二程镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122104, 421122, '上新集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122105, 421122, '高桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122106, 421122, '觅儿寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122107, 421122, '八里湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122108, 421122, '太平桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122109, 421122, '永佳河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122200, 421122, '杏花乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122500, 421122, '火连畈茶场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122501, 421122, '天台山管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421122503, 421122, '红安经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123100, 421123, '凤山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123101, 421123, '骆驼坳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123102, 421123, '大河岸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123103, 421123, '九资河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123104, 421123, '胜利镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123105, 421123, '河铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123106, 421123, '三里畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123107, 421123, '匡河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123108, 421123, '白庙河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123109, 421123, '大崎镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123200, 421123, '白莲河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123203, 421123, '平湖乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123400, 421123, '罗田县经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123500, 421123, '青苔关林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123501, 421123, '天堂寨林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123502, 421123, '薄刀峰林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421123503, 421123, '黄狮寨林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124100, 421124, '温泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124101, 421124, '南河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124102, 421124, '红山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124103, 421124, '金家铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124104, 421124, '石头咀镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124105, 421124, '草盘地镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124106, 421124, '雷家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124107, 421124, '杨柳湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124200, 421124, '方家咀乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124201, 421124, '孔家坊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124202, 421124, '陶家河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124400, 421124, '桃花冲林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124401, 421124, '吴家山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124402, 421124, '五峰山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421124403, 421124, '英山县经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125100, 421125, '清泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125101, 421125, '巴河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125102, 421125, '竹瓦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125103, 421125, '汪岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125104, 421125, '团陂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125105, 421125, '关口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125106, 421125, '白莲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125107, 421125, '蔡河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125108, 421125, '洗马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125109, 421125, '丁司垱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125110, 421125, '散花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125111, 421125, '兰溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125200, 421125, '绿杨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125400, 421125, '策湖国家湿地公园管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125401, 421125, '三角山旅游度假区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421125402, 421125, '经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126100, 421126, '漕河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126101, 421126, '赤东镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126102, 421126, '蕲州镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126103, 421126, '管窑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126104, 421126, '彭思镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126105, 421126, '横车镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126106, 421126, '株林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126107, 421126, '刘河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126108, 421126, '狮子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126109, 421126, '青石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126110, 421126, '张塝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126111, 421126, '大同镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126112, 421126, '檀林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126200, 421126, '向桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126450, 421126, '八里湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126451, 421126, '蕲春经济开发区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126453, 421126, '李时珍医药工业园区管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126454, 421126, '蕲春赤龙湖国家湿地公园管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421126456, 421126, '蕲春县仙人台茶厂', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127100, 421127, '黄梅镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127101, 421127, '孔垄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127102, 421127, '小池镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127103, 421127, '下新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127104, 421127, '大河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127105, 421127, '停前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127106, 421127, '五祖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127107, 421127, '濯港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127108, 421127, '蔡山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127109, 421127, '新开镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127110, 421127, '独山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127111, 421127, '分路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127200, 421127, '柳林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127201, 421127, '杉木乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127202, 421127, '苦竹乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127203, 421127, '刘佐乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421127400, 421127, '五祖寺(挪步园)风景名胜区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171450, 421171, '严家闸办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171451, 421171, '芦柴湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171452, 421171, '洋湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171453, 421171, '沙湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171454, 421171, '春港办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171455, 421171, '塞湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171456, 421171, '青泥湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421171457, 421171, '湖北龙感湖工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181001, 421181, '龙池桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181002, 421181, '鼓楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181003, 421181, '南湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181100, 421181, '中馆驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181101, 421181, '宋埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181102, 421181, '歧亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181103, 421181, '白果镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181104, 421181, '夫子河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181105, 421181, '阎家河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181106, 421181, '龟山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181107, 421181, '盐田河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181108, 421181, '张家畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181109, 421181, '木子店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181110, 421181, '三河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181111, 421181, '黄土岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181112, 421181, '福田河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181113, 421181, '乘马岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181114, 421181, '顺河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181200, 421181, '铁门岗乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181401, 421181, '宋埠良种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181402, 421181, '麻城明山水库', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181403, 421181, '麻城三河水库', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181404, 421181, '国营狮子峰林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181405, 421181, '麻城林店茶场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181471, 421181, '湖北麻城经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181472, 421181, '龟峰山风景区管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181473, 421181, '浮桥河国家湿地公园管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421181500, 421181, '五脑山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182001, 421182, '武穴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182002, 421182, '刊江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182003, 421182, '田镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182004, 421182, '万丈湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182100, 421182, '梅川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182101, 421182, '余川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182102, 421182, '花桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182103, 421182, '大金镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182104, 421182, '石佛寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182105, 421182, '四望镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182106, 421182, '大法寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421182107, 421182, '龙坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202001, 421202, '温泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202002, 421202, '浮山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202003, 421202, '永安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202100, 421202, '汀泗桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202101, 421202, '向阳湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202102, 421202, '官埠桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202103, 421202, '横沟桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202104, 421202, '贺胜桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202105, 421202, '双溪桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202106, 421202, '马桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202107, 421202, '桂花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202108, 421202, '高桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202200, 421202, '大幕乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202450, 421202, '向阳湖奶牛良种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202451, 421202, '咸安商贸物流区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202570, 421202, '咸宁市经济技术开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421202571, 421202, '湖北咸安经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221100, 421221, '陆溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221101, 421221, '高铁岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221102, 421221, '官桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221103, 421221, '鱼岳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221104, 421221, '新街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221105, 421221, '渡普镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221106, 421221, '潘家湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221107, 421221, '牌洲湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221450, 421221, '头墩农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421221570, 421221, '嘉鱼县经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222100, 421222, '隽水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222101, 421222, '麦市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222102, 421222, '塘湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222103, 421222, '关刀镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222104, 421222, '沙堆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222105, 421222, '五里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222106, 421222, '石南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222107, 421222, '北港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222108, 421222, '马港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222200, 421222, '四庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222201, 421222, '大坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222500, 421222, '鹿角山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222501, 421222, '锡山森林公园管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222502, 421222, '黄龙林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222503, 421222, '黄袍林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421222504, 421222, '药姑林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223100, 421223, '天城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223101, 421223, '沙坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223102, 421223, '石城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223103, 421223, '桂花泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223104, 421223, '白霓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223105, 421223, '路口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223106, 421223, '金塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223107, 421223, '青山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223200, 421223, '肖岭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223201, 421223, '铜钟乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223202, 421223, '港口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223203, 421223, '高枧乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421223570, 421223, '崇阳县工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224100, 421224, '通羊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224101, 421224, '南林桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224102, 421224, '黄沙铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224103, 421224, '厦铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224104, 421224, '九宫山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224105, 421224, '闯王镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224106, 421224, '洪港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224107, 421224, '大畈镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224200, 421224, '大路乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224201, 421224, '杨芳林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224202, 421224, '燕厦乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224203, 421224, '慈口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224450, 421224, '九宫山自然保护管理局', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421224570, 421224, '开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281001, 421281, '蒲圻街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281002, 421281, '赤马港街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281003, 421281, '陆水湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281100, 421281, '新店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281101, 421281, '赵李桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281102, 421281, '茶庵岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281103, 421281, '车埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281104, 421281, '赤壁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281105, 421281, '柳山湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281106, 421281, '神山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281107, 421281, '中伙铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281108, 421281, '官塘驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281109, 421281, '黄盖湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281200, 421281, '余家桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281400, 421281, '蒲纺工业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281401, 421281, '官塘驿林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281402, 421281, '羊楼洞茶场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281403, 421281, '沧湖开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421281404, 421281, '赤壁市经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303001, 421303, '西城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303002, 421303, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303003, 421303, '南郊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303004, 421303, '北郊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303005, 421303, '城南新区街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303101, 421303, '万店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303102, 421303, '何店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303103, 421303, '洛阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303104, 421303, '府河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303187, 421303, '淅河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303499, 421303, '曾都区新型工业基地', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421303587, 421303, '随州市经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321101, 421321, '厉山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321102, 421321, '高城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321103, 421321, '殷店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321104, 421321, '草店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321105, 421321, '小林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321106, 421321, '淮河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321107, 421321, '万和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321108, 421321, '尚市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321109, 421321, '唐县镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321110, 421321, '吴山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321111, 421321, '新街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321112, 421321, '安居镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321113, 421321, '澴潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321114, 421321, '洪山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321115, 421321, '长岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321116, 421321, '三里岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321117, 421321, '柳林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321118, 421321, '均川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421321119, 421321, '万福店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381001, 421381, '应山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381002, 421381, '十里街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381003, 421381, '广水街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381004, 421381, '城郊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381100, 421381, '武胜关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381101, 421381, '杨寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381102, 421381, '陈巷镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381103, 421381, '长岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381104, 421381, '马坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381105, 421381, '关庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381106, 421381, '余店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381107, 421381, '吴店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381108, 421381, '郝店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381109, 421381, '蔡河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381110, 421381, '李店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381111, 421381, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381112, 421381, '骆店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381400, 421381, '中华山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381401, 421381, '三潭风景区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (421381402, 421381, '工业基地', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801001, 422801, '舞阳坝街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801002, 422801, '六角亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801003, 422801, '小渡船街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801004, 422801, '七里坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801005, 422801, '金子坝街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801100, 422801, '龙凤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801101, 422801, '崔家坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801102, 422801, '板桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801103, 422801, '白杨坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801104, 422801, '三岔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801105, 422801, '盛家坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801201, 422801, '新塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801202, 422801, '红土乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801203, 422801, '沙地乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801204, 422801, '太阳河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801205, 422801, '屯堡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801206, 422801, '白果乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801207, 422801, '芭蕉侗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422801400, 422801, '恩施大峡谷风景管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802001, 422802, '都亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802002, 422802, '东城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802100, 422802, '谋道镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802101, 422802, '柏杨坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802102, 422802, '汪营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802103, 422802, '建南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802104, 422802, '忠路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802105, 422802, '团堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802106, 422802, '毛坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802107, 422802, '文斗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802200, 422802, '凉雾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802201, 422802, '元堡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802202, 422802, '南坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802205, 422802, '沙溪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422802401, 422802, '佛宝山生态综合开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822100, 422822, '业州镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822101, 422822, '高坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822102, 422822, '红岩寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822103, 422822, '景阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822104, 422822, '官店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822105, 422822, '花坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822106, 422822, '长梁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822201, 422822, '茅田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822202, 422822, '龙坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422822203, 422822, '三里乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823100, 422823, '信陵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823101, 422823, '东瀼口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823102, 422823, '沿渡河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823103, 422823, '官渡口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823104, 422823, '茶店子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823105, 422823, '绿葱坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823106, 422823, '大支坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823107, 422823, '野三关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823108, 422823, '水布垭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823109, 422823, '清太坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823200, 422823, '溪丘湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823201, 422823, '金果坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422823401, 422823, '高铁新区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825100, 422825, '珠山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825101, 422825, '椒园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825102, 422825, '沙道沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825103, 422825, '李家河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825104, 422825, '高罗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825200, 422825, '万寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825201, 422825, '长潭河侗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825203, 422825, '晓关侗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422825205, 422825, '椿木营乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826100, 422826, '高乐山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826101, 422826, '忠堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826102, 422826, '坪坝营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826103, 422826, '朝阳寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826104, 422826, '清坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826105, 422826, '唐崖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826106, 422826, '曲江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826202, 422826, '活龙坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826203, 422826, '小村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826204, 422826, '黄金洞乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422826400, 422826, '大路坝区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827100, 422827, '翔凤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827101, 422827, '百福司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827102, 422827, '大河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827103, 422827, '绿水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827104, 422827, '旧司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827105, 422827, '革勒车镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827200, 422827, '漫水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422827202, 422827, '三胡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828100, 422828, '走马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828101, 422828, '容美镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828102, 422828, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828103, 422828, '燕子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828104, 422828, '中营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828200, 422828, '铁炉乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828201, 422828, '五里乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828203, 422828, '下坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (422828204, 422828, '邬阳乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004001, 429004, '沙嘴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004002, 429004, '干河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004003, 429004, '龙华山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004100, 429004, '郑场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004101, 429004, '毛嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004102, 429004, '豆河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004103, 429004, '三伏潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004104, 429004, '胡场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004105, 429004, '长倘口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004106, 429004, '西流河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004107, 429004, '沙湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004108, 429004, '杨林尾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004109, 429004, '彭场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004110, 429004, '张沟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004111, 429004, '郭河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004112, 429004, '沔城回族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004113, 429004, '通海口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004114, 429004, '陈场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004400, 429004, '工业园区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004401, 429004, '九合垸原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004402, 429004, '沙湖原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004404, 429004, '五湖渔场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004405, 429004, '赵西垸林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004407, 429004, '畜禽良种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429004408, 429004, '排湖风景区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005001, 429005, '园林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005002, 429005, '杨市街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005003, 429005, '周矶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005004, 429005, '广华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005005, 429005, '泰丰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005006, 429005, '高场街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005100, 429005, '竹根滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005101, 429005, '渔洋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005102, 429005, '王场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005103, 429005, '高石碑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005104, 429005, '熊口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005105, 429005, '老新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005106, 429005, '浩口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005107, 429005, '积玉口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005108, 429005, '张金镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005109, 429005, '龙湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005401, 429005, '潜江经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005450, 429005, '周矶管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005451, 429005, '后湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005452, 429005, '熊口管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005453, 429005, '总口管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005454, 429005, '白鹭湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005455, 429005, '运粮湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429005457, 429005, '浩口原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006001, 429006, '竟陵街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006002, 429006, '候口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006003, 429006, '杨林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006100, 429006, '多宝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006101, 429006, '拖市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006102, 429006, '张港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006103, 429006, '蒋场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006104, 429006, '汪场镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006105, 429006, '渔薪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006106, 429006, '黄潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006107, 429006, '岳口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006108, 429006, '横林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006109, 429006, '彭市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006110, 429006, '麻洋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006111, 429006, '多祥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006112, 429006, '干驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006113, 429006, '马湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006114, 429006, '卢市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006115, 429006, '小板镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006116, 429006, '九真镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006118, 429006, '皂市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006119, 429006, '胡市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006120, 429006, '石家河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006121, 429006, '佛子山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006201, 429006, '净潭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006450, 429006, '蒋湖农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006451, 429006, '白茅湖农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429006452, 429006, '沉湖管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021100, 429021, '松柏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021101, 429021, '阳日镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021102, 429021, '木鱼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021103, 429021, '红坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021104, 429021, '新华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021105, 429021, '九湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021201, 429021, '宋洛乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (429021203, 429021, '下谷坪土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102001, 430102, '文艺路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102002, 430102, '朝阳街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102003, 430102, '韭菜园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102008, 430102, '五里牌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102009, 430102, '火星街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102010, 430102, '马王堆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102011, 430102, '东屯渡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102012, 430102, '湘湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102013, 430102, '定王台街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102014, 430102, '荷花园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102015, 430102, '东岸街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102016, 430102, '马坡岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102017, 430102, '东湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430102400, 430102, '隆平高科技园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103002, 430103, '坡子街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103004, 430103, '城南路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103005, 430103, '裕南街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103006, 430103, '金盆岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103007, 430103, '新开铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103008, 430103, '青园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103009, 430103, '桂花坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103010, 430103, '赤岭路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103011, 430103, '文源街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103012, 430103, '先锋街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103013, 430103, '黑石铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103014, 430103, '大托铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103015, 430103, '暮云街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430103016, 430103, '南托街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104001, 430104, '望月湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104002, 430104, '岳麓街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104003, 430104, '桔子洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104004, 430104, '银盆岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104005, 430104, '观沙岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104006, 430104, '望城坡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104007, 430104, '西湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104008, 430104, '咸嘉湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104009, 430104, '望岳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104010, 430104, '梅溪湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104011, 430104, '麓谷街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104012, 430104, '坪塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104013, 430104, '含浦街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104014, 430104, '天顶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104015, 430104, '洋湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104016, 430104, '学士街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104017, 430104, '东方红街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104102, 430104, '莲花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430104105, 430104, '雨敞坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105001, 430105, '芙蓉北路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105002, 430105, '东风路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105003, 430105, '清水塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105004, 430105, '望麓园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105005, 430105, '湘雅路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105006, 430105, '伍家岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105009, 430105, '新河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105010, 430105, '通泰街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105012, 430105, '四方坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105013, 430105, '洪山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105014, 430105, '浏阳河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105015, 430105, '月湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105016, 430105, '秀峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105019, 430105, '沙坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105020, 430105, '捞刀河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430105021, 430105, '青竹湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111001, 430111, '侯家塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111002, 430111, '左家塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111003, 430111, '圭塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111004, 430111, '砂子塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111005, 430111, '东塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111006, 430111, '雨花亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111007, 430111, '高桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111008, 430111, '洞井街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111009, 430111, '黎托街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111010, 430111, '井湾子街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111011, 430111, '同升街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111012, 430111, '东山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111101, 430111, '跳马镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430111400, 430111, '长沙雨花经济开发区管理委员会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112001, 430112, '高塘岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112003, 430112, '丁字湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112005, 430112, '大泽湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112006, 430112, '月亮岛街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112007, 430112, '白沙洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112008, 430112, '金山桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112009, 430112, '黄金园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112011, 430112, '乌山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112012, 430112, '铜官街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112013, 430112, '雷锋街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112014, 430112, '白马街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112101, 430112, '桥驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112103, 430112, '茶亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112106, 430112, '靖港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112107, 430112, '乔口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430112115, 430112, '白箬铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121001, 430121, '星沙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121002, 430121, '泉塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121003, 430121, '湘龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121004, 430121, '榔梨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121005, 430121, '长龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121102, 430121, '黄兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121104, 430121, '江背镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121105, 430121, '黄花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121106, 430121, '春华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121107, 430121, '果园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121108, 430121, '路口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121109, 430121, '高桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121110, 430121, '金井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121111, 430121, '福临镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121112, 430121, '青山铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121113, 430121, '安沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121114, 430121, '北山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430121116, 430121, '开慧镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181001, 430181, '淮川街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181002, 430181, '集里街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181003, 430181, '荷花街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181004, 430181, '关口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181102, 430181, '社港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181104, 430181, '官渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181105, 430181, '张坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181106, 430181, '达浒镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181107, 430181, '沿溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181108, 430181, '古港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181109, 430181, '永和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181110, 430181, '大瑶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181111, 430181, '金刚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181112, 430181, '文家市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181114, 430181, '枨冲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181115, 430181, '镇头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181116, 430181, '普迹镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181117, 430181, '永安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181118, 430181, '北盛镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181120, 430181, '龙伏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181121, 430181, '澄潭江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181122, 430181, '中和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181123, 430181, '柏加镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181124, 430181, '洞阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181125, 430181, '大围山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181126, 430181, '沙市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181127, 430181, '淳口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181128, 430181, '高坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181130, 430181, '官桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181131, 430181, '葛家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181132, 430181, '蕉溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430181201, 430181, '小河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182001, 430182, '玉潭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182002, 430182, '白马桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182003, 430182, '历经铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182004, 430182, '城郊街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182101, 430182, '道林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182102, 430182, '花明楼镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182103, 430182, '东湖塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182104, 430182, '夏铎铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182105, 430182, '双江口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182106, 430182, '煤炭坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182107, 430182, '坝塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182109, 430182, '灰汤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182110, 430182, '双凫铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182111, 430182, '老粮仓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182112, 430182, '流沙河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182113, 430182, '巷子口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182114, 430182, '龙田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182116, 430182, '横市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182117, 430182, '回龙铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182118, 430182, '黄材镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182119, 430182, '大成桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182120, 430182, '青山桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182121, 430182, '金洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182122, 430182, '大屯营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182123, 430182, '资福镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182203, 430182, '菁华铺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182209, 430182, '喻家坳乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182213, 430182, '沙田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430182218, 430182, '沩山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430202001, 430202, '月塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430202002, 430202, '茨菇塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430202003, 430202, '宋家桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430202004, 430202, '桂花街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430202005, 430202, '金山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430202100, 430202, '仙庾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203001, 430203, '贺家土街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203002, 430203, '建设街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203003, 430203, '建宁街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203004, 430203, '董家段街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203005, 430203, '庆云街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203006, 430203, '枫溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203007, 430203, '龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430203100, 430203, '白关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430204001, 430204, '田心街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430204002, 430204, '响石岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430204003, 430204, '清水塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430204004, 430204, '铜塘湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430204005, 430204, '井龙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211001, 430211, '嵩山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211002, 430211, '泰山路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211003, 430211, '栗雨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211004, 430211, '马家河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211101, 430211, '群丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211102, 430211, '雷打石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430211103, 430211, '三门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212100, 430212, '渌口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212101, 430212, '朱亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212106, 430212, '古岳峰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212107, 430212, '淦田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212108, 430212, '龙门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212109, 430212, '龙潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212110, 430212, '南洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430212111, 430212, '龙船镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223001, 430223, '联星街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223002, 430223, '江桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223003, 430223, '春联街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223004, 430223, '谭桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223102, 430223, '酒埠江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223103, 430223, '桃水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223106, 430223, '网岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223109, 430223, '渌田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223115, 430223, '石羊塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223118, 430223, '黄丰桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223119, 430223, '鸾山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223120, 430223, '丫江桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223122, 430223, '皇图岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223123, 430223, '新市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223124, 430223, '菜花坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223125, 430223, '莲塘坳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223126, 430223, '宁家坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223400, 430223, '攸县工业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430223401, 430223, '攸县网岭循环经济园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224002, 430224, '下东街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224003, 430224, '思聪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224004, 430224, '洣江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224005, 430224, '云阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224101, 430224, '界首镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224103, 430224, '湖口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224105, 430224, '马江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224106, 430224, '高陇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224109, 430224, '虎踞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224111, 430224, '枣市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224112, 430224, '火田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224113, 430224, '严塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224115, 430224, '秩堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224116, 430224, '腰潞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224203, 430224, '舲舫乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224213, 430224, '桃坑乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224404, 430224, '汉背办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430224500, 430224, '茶陵县红色农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225100, 430225, '霞阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225101, 430225, '沔渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225102, 430225, '十都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225103, 430225, '水口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225105, 430225, '鹿原镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225200, 430225, '垄溪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225202, 430225, '策源乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225203, 430225, '下村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225207, 430225, '船形乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225209, 430225, '中村瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225400, 430225, '炎陵县大院农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430225401, 430225, '炎陵县桃源洞管理局', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430271006, 430271, '学林街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430271007, 430271, '龙头铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430271101, 430271, '云田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281002, 430281, '阳三石街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281003, 430281, '仙岳山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281004, 430281, '国瓷街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281006, 430281, '来龙门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281007, 430281, '长庆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281102, 430281, '白兔潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281103, 430281, '浦口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281105, 430281, '王仙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281107, 430281, '泗汾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281108, 430281, '沈潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281109, 430281, '船湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281120, 430281, '均楚镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281121, 430281, '东富镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281122, 430281, '石亭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281125, 430281, '孙家湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281126, 430281, '官庄镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281127, 430281, '嘉树镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281128, 430281, '板杉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281129, 430281, '沩山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281130, 430281, '枫林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281131, 430281, '李畋镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281132, 430281, '明月镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281133, 430281, '左权镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281134, 430281, '茶山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430281400, 430281, '湖南醴陵经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302001, 430302, '雨湖路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302002, 430302, '城正街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302003, 430302, '云塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302004, 430302, '广场街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302005, 430302, '窑湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302006, 430302, '昭潭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302007, 430302, '万楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302008, 430302, '先锋街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302100, 430302, '鹤岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302101, 430302, '楠竹山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302102, 430302, '姜畲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430302202, 430302, '长城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304001, 430304, '岳塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304002, 430304, '东坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304004, 430304, '书院路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304005, 430304, '下摄司街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304006, 430304, '建设路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304008, 430304, '五里堆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304010, 430304, '宝塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304014, 430304, '霞城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430304015, 430304, '荷塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321100, 430321, '易俗河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321102, 430321, '谭家山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321103, 430321, '中路铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321104, 430321, '茶恩寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321105, 430321, '河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321106, 430321, '射埠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321107, 430321, '花石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321108, 430321, '青山桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321109, 430321, '石鼓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321111, 430321, '云湖桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321112, 430321, '石潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321113, 430321, '杨嘉桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321114, 430321, '乌石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321115, 430321, '白石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321202, 430321, '分水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321203, 430321, '排头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430321205, 430321, '锦石乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430371001, 430371, '板塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430371002, 430371, '双马街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430372100, 430372, '昭山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430373001, 430373, '和平街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430373002, 430373, '九华街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430373200, 430373, '响水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381001, 430381, '望春门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381002, 430381, '新湘路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381003, 430381, '昆仑桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381004, 430381, '东山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381100, 430381, '山枣镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381101, 430381, '栗山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381102, 430381, '中沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381103, 430381, '虞唐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381104, 430381, '潭市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381105, 430381, '棋梓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381106, 430381, '壶天镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381107, 430381, '翻江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381108, 430381, '金石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381109, 430381, '白田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381110, 430381, '月山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381111, 430381, '泉塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381112, 430381, '梅桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381113, 430381, '毛田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381114, 430381, '龙洞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381200, 430381, '东郊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381202, 430381, '金薮乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430381203, 430381, '育塅乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430382100, 430382, '清溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430382101, 430382, '银田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430382200, 430382, '韶山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430382203, 430382, '杨林乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405007, 430405, '衡州路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405009, 430405, '广东路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405010, 430405, '东风路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405011, 430405, '冶金街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405012, 430405, '苗圃街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405013, 430405, '粤汉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405014, 430405, '东阳渡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405100, 430405, '茶山坳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405200, 430405, '和平乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405201, 430405, '酃湖乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430405403, 430405, '松林茶场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406001, 430406, '先锋街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406002, 430406, '雁峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406003, 430406, '天马山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406004, 430406, '黄茶岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406005, 430406, '白沙洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406100, 430406, '岳屏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430406400, 430406, '白沙洲工业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407001, 430407, '人民街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407002, 430407, '青山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407003, 430407, '潇湘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407004, 430407, '五一街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407005, 430407, '合江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407006, 430407, '黄沙湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430407100, 430407, '角山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430408001, 430408, '蒸湘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430408002, 430408, '红湘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430408004, 430408, '联合街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430408100, 430408, '呆鹰岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430408101, 430408, '雨母山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430412001, 430412, '祝融街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430412100, 430412, '南岳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430412203, 430412, '寿岳乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421100, 430421, '西渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421101, 430421, '集兵镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421103, 430421, '杉桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421104, 430421, '井头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421105, 430421, '演陂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421106, 430421, '金兰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421107, 430421, '洪市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421108, 430421, '曲兰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421109, 430421, '金溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421110, 430421, '界牌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421111, 430421, '渣江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421112, 430421, '三湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421113, 430421, '台源镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421114, 430421, '关市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421115, 430421, '库宗桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421116, 430421, '岘山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421117, 430421, '石市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421200, 430421, '樟木乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421201, 430421, '岣嵝乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421205, 430421, '栏垅乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421207, 430421, '大安乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421208, 430421, '溪江乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421210, 430421, '长安乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421211, 430421, '板市乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430421212, 430421, '樟树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422001, 430422, '云集街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422002, 430422, '车江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422003, 430422, '向阳桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422103, 430422, '茶市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422104, 430422, '冠市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422105, 430422, '江口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422106, 430422, '宝盖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422107, 430422, '花桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422108, 430422, '铁丝塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422109, 430422, '泉溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422110, 430422, '洪山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422111, 430422, '三塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422112, 430422, '谭子山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422113, 430422, '岐山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422114, 430422, '泉湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422115, 430422, '柞市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422116, 430422, '茅市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422117, 430422, '硫市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422118, 430422, '栗江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422119, 430422, '近尾洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422121, 430422, '咸塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422122, 430422, '松江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422200, 430422, '相市乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430422407, 430422, '衡州监狱', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423100, 430423, '开云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423101, 430423, '白果镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423102, 430423, '东湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423103, 430423, '萱洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423104, 430423, '长江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423105, 430423, '新桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423107, 430423, '店门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423201, 430423, '永和乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423203, 430423, '福田铺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423204, 430423, '岭坡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423207, 430423, '贯塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430423208, 430423, '江东乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424100, 430424, '洣水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424101, 430424, '石湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424102, 430424, '新塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424103, 430424, '大浦镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424104, 430424, '吴集镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424105, 430424, '甘溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424106, 430424, '杨林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424107, 430424, '草市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424108, 430424, '杨桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424109, 430424, '霞流镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424110, 430424, '荣桓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424111, 430424, '高湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424112, 430424, '白莲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424113, 430424, '三樟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424114, 430424, '蓬源镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424204, 430424, '南湾乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424211, 430424, '石滩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424401, 430424, '河西开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430424403, 430424, '大浦工业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426001, 430426, '洪桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426002, 430426, '玉合街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426003, 430426, '永昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426004, 430426, '白鹤街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426102, 430426, '金桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426103, 430426, '鸟江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426104, 430426, '粮市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426105, 430426, '河洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426106, 430426, '归阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426107, 430426, '过水坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426108, 430426, '双桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426109, 430426, '灵官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426110, 430426, '风石堰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426111, 430426, '白地市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426112, 430426, '黄土铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426113, 430426, '石亭子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426114, 430426, '官家嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426115, 430426, '步云桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426116, 430426, '砖塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426117, 430426, '蒋家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426118, 430426, '太和堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426200, 430426, '马杜桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426201, 430426, '凤歧坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430426202, 430426, '城连圩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430471401, 430471, '衡阳综合保税区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430472003, 430472, '华兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430473400, 430473, '松木工业园', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481001, 430481, '蔡子池街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481002, 430481, '灶市街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481003, 430481, '水东江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481004, 430481, '五里牌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481005, 430481, '三架街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481006, 430481, '余庆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481100, 430481, '黄市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481101, 430481, '小水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481102, 430481, '公平圩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481104, 430481, '三都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481105, 430481, '南阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481107, 430481, '夏塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481108, 430481, '龙塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481109, 430481, '哲桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481110, 430481, '永济镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481111, 430481, '遥田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481112, 430481, '新市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481113, 430481, '淝田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481114, 430481, '大市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481115, 430481, '仁义镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481116, 430481, '南京镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481117, 430481, '大义镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481118, 430481, '东湖圩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481119, 430481, '马水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481120, 430481, '导子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481201, 430481, '亮源乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481203, 430481, '太平圩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481213, 430481, '长坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481214, 430481, '太和圩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430481215, 430481, '坛下乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482001, 430482, '宜阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482002, 430482, '泉峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482003, 430482, '培元街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482005, 430482, '曲潭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482006, 430482, '天堂山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482101, 430482, '柏坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482102, 430482, '水口山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482103, 430482, '烟洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482104, 430482, '荫田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482105, 430482, '白沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482106, 430482, '西岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482108, 430482, '三角塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482109, 430482, '洋泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482110, 430482, '庙前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482111, 430482, '罗桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482112, 430482, '板桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482113, 430482, '胜桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482114, 430482, '官岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482115, 430482, '新河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482201, 430482, '蓬塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482202, 430482, '兰江乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482203, 430482, '大堡乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430482206, 430482, '塔山瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502001, 430502, '兴隆街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502002, 430502, '龙须塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502003, 430502, '汽车站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502004, 430502, '小江湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502005, 430502, '东风路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502006, 430502, '桥头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502007, 430502, '滨江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502008, 430502, '石桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502009, 430502, '爱莲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502100, 430502, '高崇山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502101, 430502, '渡头桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430502202, 430502, '火车站乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503001, 430503, '中心路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503002, 430503, '红旗路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503003, 430503, '城北路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503004, 430503, '城西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503005, 430503, '翠园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503006, 430503, '百春园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503007, 430503, '城南街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503008, 430503, '火车南站街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503009, 430503, '学院路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503010, 430503, '雨溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503011, 430503, '檀江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503101, 430503, '罗市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503202, 430503, '蔡锷乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430503203, 430503, '板桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430511001, 430511, '新滩镇街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430511002, 430511, '状元洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430511003, 430511, '田江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430511004, 430511, '茶元头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430511101, 430511, '陈家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522100, 430522, '酿溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522101, 430522, '严塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522102, 430522, '雀塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522103, 430522, '陈家坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522104, 430522, '潭溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522105, 430522, '寸石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522106, 430522, '坪上镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522107, 430522, '龙溪铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522108, 430522, '巨口铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522109, 430522, '新田铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522110, 430522, '小塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522111, 430522, '太芝庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522112, 430522, '大新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522200, 430522, '潭府乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430522203, 430522, '迎光乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523100, 430523, '塘渡口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523101, 430523, '白仓镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523102, 430523, '金称市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523103, 430523, '塘田市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523104, 430523, '黄亭市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523105, 430523, '长阳铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523106, 430523, '岩口铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523107, 430523, '九公桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523108, 430523, '下花桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523109, 430523, '谷洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523110, 430523, '郦家坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523111, 430523, '五峰铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523201, 430523, '小溪市乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523203, 430523, '长乐乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523204, 430523, '蔡桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523205, 430523, '河伯乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523206, 430523, '黄荆乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523207, 430523, '诸甲亭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523208, 430523, '罗城乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523209, 430523, '金江乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523401, 430523, '七里山园艺场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523402, 430523, '五峰铺国有林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430523403, 430523, '河伯岭国有林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524001, 430524, '桃花坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524002, 430524, '花门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524101, 430524, '小沙江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524102, 430524, '金石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524103, 430524, '司门前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524104, 430524, '高平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524105, 430524, '六都寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524106, 430524, '荷香桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524107, 430524, '横板桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524108, 430524, '周旺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524109, 430524, '滩头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524110, 430524, '鸭田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524111, 430524, '西洋江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524113, 430524, '岩口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524114, 430524, '北山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524115, 430524, '三阁司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524116, 430524, '南岳庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524117, 430524, '七江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524118, 430524, '羊古坳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524119, 430524, '罗洪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524200, 430524, '麻塘山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524201, 430524, '虎形山瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524203, 430524, '大水田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524207, 430524, '荷田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430524212, 430524, '山界回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525001, 430525, '文昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525002, 430525, '雪峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525003, 430525, '花古街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525101, 430525, '江口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525102, 430525, '毓兰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525103, 430525, '高沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525104, 430525, '竹市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525105, 430525, '石江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525106, 430525, '黄桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525107, 430525, '山门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525108, 430525, '醪田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525109, 430525, '花园镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525110, 430525, '岩山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525111, 430525, '水东镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525112, 430525, '杨林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525113, 430525, '月溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525114, 430525, '石柱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525201, 430525, '古楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525202, 430525, '长塘瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525203, 430525, '罗溪瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525205, 430525, '渣坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525211, 430525, '桐山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525212, 430525, '大屋瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430525500, 430525, '茶铺茶场管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527100, 430527, '长铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527101, 430527, '武阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527102, 430527, '李熙桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527103, 430527, '红岩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527104, 430527, '唐家坊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527105, 430527, '金屋塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527106, 430527, '瓦屋塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527107, 430527, '黄土矿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527200, 430527, '东山侗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527201, 430527, '鹅公岭侗族苗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527203, 430527, '寨市苗族侗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527204, 430527, '乐安铺苗族侗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527206, 430527, '关峡苗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527207, 430527, '长铺子苗族侗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527210, 430527, '麻塘苗族瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527212, 430527, '河口苗族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430527217, 430527, '水口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528100, 430528, '金石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528101, 430528, '水庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528102, 430528, '崀山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528104, 430528, '黄龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528105, 430528, '高桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528106, 430528, '回龙寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528107, 430528, '一渡水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528108, 430528, '马头桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528200, 430528, '黄金瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528201, 430528, '麻林瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528203, 430528, '万塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528204, 430528, '清江桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528205, 430528, '安山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528206, 430528, '丰田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528208, 430528, '巡田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430528209, 430528, '靖位乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529100, 430529, '儒林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529101, 430529, '茅坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529102, 430529, '西岩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529103, 430529, '丹口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529104, 430529, '五团镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529106, 430529, '长安营镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529107, 430529, '白毛坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529200, 430529, '威溪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529203, 430529, '兰蓉乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529204, 430529, '汀坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529205, 430529, '蒋坊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430529206, 430529, '金紫乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581001, 430581, '辕门口街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581002, 430581, '迎春亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581003, 430581, '法相岩街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581004, 430581, '水西门街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581100, 430581, '邓元泰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581101, 430581, '湾头桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581102, 430581, '文坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581103, 430581, '荆竹铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581104, 430581, '稠树塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581105, 430581, '邓家铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581106, 430581, '龙溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581107, 430581, '司马冲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581108, 430581, '秦桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581109, 430581, '双牌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581110, 430581, '大甸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581204, 430581, '马坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581205, 430581, '晏田乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430581207, 430581, '水浸坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582001, 430582, '大禾塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582002, 430582, '两市塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582003, 430582, '宋家塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582101, 430582, '牛马司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582102, 430582, '界岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582103, 430582, '九龙岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582104, 430582, '仙槎桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582105, 430582, '火厂坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582106, 430582, '佘田桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582107, 430582, '灵官殿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582108, 430582, '团山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582109, 430582, '砂石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582110, 430582, '廉桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582111, 430582, '流光岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582112, 430582, '流泽镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582113, 430582, '魏家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582114, 430582, '野鸡坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582115, 430582, '杨桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582116, 430582, '水东江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582117, 430582, '黑田铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582118, 430582, '简家陇镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582201, 430582, '双凤乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582202, 430582, '周官桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582203, 430582, '堡面前乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430582204, 430582, '斫曹乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602001, 430602, '岳阳楼街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602002, 430602, '三眼桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602003, 430602, '吕仙亭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602004, 430602, '金鹗山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602005, 430602, '东茅岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602006, 430602, '五里牌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602007, 430602, '望岳路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602008, 430602, '城陵矶街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602009, 430602, '枫桥湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602010, 430602, '奇家岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602011, 430602, '洞庭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602012, 430602, '洛王街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602013, 430602, '南湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602014, 430602, '站前街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602015, 430602, '王家河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602016, 430602, '求索街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602017, 430602, '湖滨街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602018, 430602, '龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602019, 430602, '月山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602100, 430602, '西塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602201, 430602, '郭镇乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602203, 430602, '康王乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602402, 430602, '经济技术开发区通海路管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602406, 430602, '金凤桥管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430602407, 430602, '木里港管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430603001, 430603, '长岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430603002, 430603, '云溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430603003, 430603, '松杨湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430603101, 430603, '陆城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430603102, 430603, '路口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430611001, 430611, '柳林洲街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430611101, 430611, '广兴洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430611102, 430611, '许市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430611103, 430611, '钱粮湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430611104, 430611, '良心堡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621100, 430621, '荣家湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621104, 430621, '黄沙街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621105, 430621, '新墙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621106, 430621, '柏祥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621107, 430621, '筻口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621108, 430621, '公田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621109, 430621, '毛田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621110, 430621, '月田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621111, 430621, '张谷英镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621112, 430621, '新开镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621113, 430621, '步仙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621114, 430621, '杨林街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621202, 430621, '中洲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621203, 430621, '长湖乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430621500, 430621, '东洞庭湖管委会', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623101, 430623, '三封寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623102, 430623, '治河渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623103, 430623, '北景港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623104, 430623, '鲇鱼须镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623106, 430623, '万庾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623110, 430623, '插旗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623111, 430623, '注滋口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623112, 430623, '操军镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623114, 430623, '东山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623119, 430623, '梅田湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623120, 430623, '章华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623121, 430623, '禹山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623201, 430623, '新河乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430623207, 430623, '团洲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624001, 430624, '文星街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624101, 430624, '东塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624104, 430624, '樟树镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624110, 430624, '三塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624116, 430624, '岭北镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624117, 430624, '新泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624118, 430624, '湘滨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624119, 430624, '南湖洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624120, 430624, '鹤龙湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624122, 430624, '静河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624124, 430624, '石塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624125, 430624, '洋沙湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624126, 430624, '金龙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624201, 430624, '六塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430624206, 430624, '杨林寨乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626001, 430626, '汉昌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626002, 430626, '天岳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626101, 430626, '安定镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626102, 430626, '三市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626103, 430626, '加义镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626104, 430626, '长寿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626105, 430626, '龙门镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626106, 430626, '虹桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626107, 430626, '南江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626108, 430626, '梅仙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626109, 430626, '浯口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626110, 430626, '瓮江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626111, 430626, '伍市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626112, 430626, '向家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626113, 430626, '童市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626114, 430626, '岑川镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626115, 430626, '福寿山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626116, 430626, '余坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626117, 430626, '石牛寨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626118, 430626, '上塔市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626200, 430626, '三阳乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626205, 430626, '木金乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626208, 430626, '板江乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626209, 430626, '大洲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430626210, 430626, '三墩乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430671001, 430671, '天问街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430671101, 430671, '营田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430671102, 430671, '河市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430671203, 430671, '凤凰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681101, 430681, '汨罗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681102, 430681, '新市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681103, 430681, '古培镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681104, 430681, '白水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681105, 430681, '川山坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681107, 430681, '弼时镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681110, 430681, '长乐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681111, 430681, '大荆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681112, 430681, '桃林寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681113, 430681, '三江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681118, 430681, '屈子祠镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681119, 430681, '归义镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681120, 430681, '神鼎山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681121, 430681, '罗江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681122, 430681, '白塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430681403, 430681, '营田办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682001, 430682, '长安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682003, 430682, '桃矿街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682004, 430682, '五里牌街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682005, 430682, '云湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682101, 430682, '忠防镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682103, 430682, '聂市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682105, 430682, '江南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682107, 430682, '桃林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682108, 430682, '长塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682109, 430682, '白羊田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682110, 430682, '詹桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682113, 430682, '黄盖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682114, 430682, '羊楼司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430682115, 430682, '坦渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702001, 430702, '启明街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702002, 430702, '府坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702003, 430702, '穿紫河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702004, 430702, '丹阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702005, 430702, '白马湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702006, 430702, '德山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702007, 430702, '东江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702008, 430702, '永安街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702009, 430702, '南坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702010, 430702, '长庚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702011, 430702, '芷兰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702012, 430702, '芙蓉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702013, 430702, '柳叶湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702014, 430702, '七里桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702015, 430702, '樟木桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702100, 430702, '河洑镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702102, 430702, '白鹤镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702200, 430702, '芦荻山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430702204, 430702, '丹洲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703001, 430703, '玉霞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703002, 430703, '红云街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703003, 430703, '郭家铺街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703004, 430703, '斗姆湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703007, 430703, '灌溪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703101, 430703, '蒿子港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703102, 430703, '中河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703103, 430703, '十美堂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703104, 430703, '牛鼻滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703105, 430703, '韩公渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703106, 430703, '石公桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703107, 430703, '镇德桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703108, 430703, '周家店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703110, 430703, '双桥坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703112, 430703, '蔡家岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703114, 430703, '草坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703115, 430703, '石门桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703116, 430703, '谢家铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703117, 430703, '黄土店镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703118, 430703, '尧天坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703121, 430703, '石板滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703122, 430703, '花岩溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703204, 430703, '许家桥回族维吾尔族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703502, 430703, '花岩溪林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430703503, 430703, '贺家山原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721100, 430721, '深柳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721101, 430721, '大鲸港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721102, 430721, '黄山头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721103, 430721, '三岔河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721104, 430721, '官垱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721105, 430721, '下渔口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721106, 430721, '陈家嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721108, 430721, '大湖口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721201, 430721, '安障乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721205, 430721, '安全乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721208, 430721, '安丰乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430721210, 430721, '安康乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722001, 430722, '龙阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722002, 430722, '辰阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722003, 430722, '沧浪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722004, 430722, '株木山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722101, 430722, '蒋家嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722102, 430722, '岩汪湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722103, 430722, '坡头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722104, 430722, '酉港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722105, 430722, '洲口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722106, 430722, '罐头嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722107, 430722, '沧港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722108, 430722, '朱家铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722109, 430722, '太子庙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722111, 430722, '崔家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722112, 430722, '军山铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722113, 430722, '百禄桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722114, 430722, '西湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722115, 430722, '洋淘湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722117, 430722, '丰家铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722118, 430722, '龙潭桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722205, 430722, '聂家桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722206, 430722, '毛家滩回族维吾尔族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430722501, 430722, '西湖管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723001, 430723, '澧西街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723002, 430723, '澧阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723003, 430723, '澧浦街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723004, 430723, '澧澹街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723102, 430723, '小渡口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723103, 430723, '梦溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723104, 430723, '复兴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723105, 430723, '盐井镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723107, 430723, '大堰垱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723108, 430723, '王家厂镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723109, 430723, '金罗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723110, 430723, '码头铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723112, 430723, '甘溪滩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723113, 430723, '火连坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723114, 430723, '澧南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723115, 430723, '如东镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723116, 430723, '涔南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723117, 430723, '官垸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430723118, 430723, '城头山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724001, 430724, '安福街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724002, 430724, '望城街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724101, 430724, '合口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724102, 430724, '新安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724103, 430724, '佘市桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724104, 430724, '太浮镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724105, 430724, '四新岗镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724106, 430724, '停弦渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724107, 430724, '修梅镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724204, 430724, '烽火乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430724209, 430724, '刻木山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725001, 430725, '漳江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725002, 430725, '浔阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725101, 430725, '陬市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725102, 430725, '盘塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725103, 430725, '热市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725104, 430725, '黄石镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725105, 430725, '漆河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725106, 430725, '理公港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725107, 430725, '观音寺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725108, 430725, '龙潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725109, 430725, '三阳港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725110, 430725, '剪市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725111, 430725, '茶庵铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725112, 430725, '西安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725113, 430725, '沙坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725114, 430725, '桃花源镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725115, 430725, '架桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725116, 430725, '马鬃岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725117, 430725, '夷望溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725118, 430725, '双溪口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725119, 430725, '九溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725120, 430725, '牛车河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725121, 430725, '杨溪桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725122, 430725, '郑家驿镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725123, 430725, '木塘垸镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725124, 430725, '佘家坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725200, 430725, '青林回族维吾尔族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725202, 430725, '枫树维吾尔族回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430725216, 430725, '泥窝潭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726001, 430726, '楚江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726002, 430726, '永兴街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726003, 430726, '宝峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726004, 430726, '二都街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726101, 430726, '蒙泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726102, 430726, '夹山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726103, 430726, '易家渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726104, 430726, '新关镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726105, 430726, '皂市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726106, 430726, '维新镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726107, 430726, '太平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726108, 430726, '磨市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726109, 430726, '壶瓶山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726110, 430726, '南北镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726111, 430726, '白云镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726112, 430726, '新铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726113, 430726, '子良镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726203, 430726, '三圣乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726205, 430726, '所街乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726206, 430726, '雁池乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726207, 430726, '罗坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726500, 430726, '秀坪园艺场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726502, 430726, '东山峰管理区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726503, 430726, '大同山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726504, 430726, '白云山林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726505, 430726, '洛浦寺林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430726506, 430726, '夹山管理处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430771004, 430771, '龙泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430771005, 430771, '金凤街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430771101, 430771, '祝丰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781001, 430781, '三洲驿街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781002, 430781, '汪家桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781003, 430781, '襄阳街街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781004, 430781, '金鱼岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781005, 430781, '嘉山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781100, 430781, '新洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781103, 430781, '白衣镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781105, 430781, '药山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781106, 430781, '毛里湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430781500, 430781, '涔澹农场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802001, 430802, '永定街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802002, 430802, '大庸桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802003, 430802, '西溪坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802004, 430802, '官黎坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802005, 430802, '崇文街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802006, 430802, '南庄坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802100, 430802, '新桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802101, 430802, '茅岩河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802102, 430802, '教字垭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802103, 430802, '天门山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802104, 430802, '沅古坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802105, 430802, '尹家溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802108, 430802, '王家坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802201, 430802, '三家馆乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802204, 430802, '合作桥乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802206, 430802, '谢家垭乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802208, 430802, '罗塔坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802209, 430802, '罗水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802210, 430802, '桥头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802212, 430802, '四都坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430802404, 430802, '原种场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430811001, 430811, '军地坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430811002, 430811, '锣鼓塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430811201, 430811, '协合乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430811202, 430811, '中湖乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821100, 430821, '零阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821101, 430821, '岩泊渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821102, 430821, '溪口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821103, 430821, '东岳观镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821104, 430821, '通津铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821105, 430821, '杉木桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821106, 430821, '象市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821107, 430821, '江垭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821108, 430821, '苗市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821109, 430821, '零溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821110, 430821, '高桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821111, 430821, '龙潭河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821112, 430821, '广福桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821113, 430821, '三合镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821114, 430821, '二坊坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821200, 430821, '南山坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821202, 430821, '洞溪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821209, 430821, '杨柳铺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821211, 430821, '三官寺土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821212, 430821, '高峰土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821213, 430821, '许家坊土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821214, 430821, '金岩土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821215, 430821, '赵家岗土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821216, 430821, '甘堰土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430821217, 430821, '阳和土家族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822100, 430822, '澧源镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822101, 430822, '瑞塔铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822102, 430822, '官地坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822103, 430822, '凉水口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822104, 430822, '龙潭坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822105, 430822, '五道水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822106, 430822, '陈家河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822107, 430822, '廖家村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822108, 430822, '利福塔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822109, 430822, '八大公山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822110, 430822, '桥自弯镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822111, 430822, '人潮溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822200, 430822, '空壳树乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822202, 430822, '竹叶坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822203, 430822, '走马坪白族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822207, 430822, '刘家坪白族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822208, 430822, '芙蓉桥白族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822210, 430822, '马合口白族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822213, 430822, '洪家关白族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822216, 430822, '沙塔坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822224, 430822, '河口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822225, 430822, '上河溪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430822228, 430822, '上洞街乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902005, 430902, '大码头街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902006, 430902, '汽车路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902102, 430902, '迎风桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902104, 430902, '沙头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902105, 430902, '茈湖口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902106, 430902, '长春镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902107, 430902, '新桥河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902203, 430902, '张家塞乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430902401, 430902, '长春经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903001, 430903, '赫山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903002, 430903, '桃花仑街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903003, 430903, '金银山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903006, 430903, '会龙山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903007, 430903, '鱼形山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903008, 430903, '龙光桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903101, 430903, '八字哨镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903103, 430903, '泉交河镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903104, 430903, '欧江岔镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903105, 430903, '沧水铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903107, 430903, '岳家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903110, 430903, '新市渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903111, 430903, '兰溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903113, 430903, '衡龙桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903114, 430903, '泥江口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903209, 430903, '笔架山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430903402, 430903, '龙岭产业开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921102, 430921, '明山头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921103, 430921, '青树嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921106, 430921, '厂窖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921107, 430921, '武圣宫镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921125, 430921, '南洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921126, 430921, '华阁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921127, 430921, '茅草街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921128, 430921, '三仙湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921129, 430921, '麻河口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921131, 430921, '浪拔湖镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921132, 430921, '中鱼口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430921201, 430921, '乌嘴乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922101, 430922, '修山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922103, 430922, '鸬鹚渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922107, 430922, '石牛江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922108, 430922, '牛田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922109, 430922, '松木塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922112, 430922, '桃花江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922113, 430922, '灰山港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922114, 430922, '武潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922115, 430922, '马迹塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922116, 430922, '三堂街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922117, 430922, '大栗港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922118, 430922, '沾溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922119, 430922, '高桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922208, 430922, '鲊埠回族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430922212, 430922, '浮丘山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923101, 430923, '清塘铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923103, 430923, '仙溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923105, 430923, '长塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923106, 430923, '小淹镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923108, 430923, '羊角塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923109, 430923, '冷市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923111, 430923, '奎溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923112, 430923, '烟溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923113, 430923, '渠江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923114, 430923, '平口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923115, 430923, '柘溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923116, 430923, '乐安镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923117, 430923, '滔溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923118, 430923, '梅城镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923119, 430923, '大福镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923120, 430923, '马路镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923121, 430923, '东坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923122, 430923, '江南镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923123, 430923, '龙塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923200, 430923, '高明乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923209, 430923, '田庄乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923211, 430923, '南金乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430923212, 430923, '古楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430971121, 430971, '河坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430971123, 430971, '金盆镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430971124, 430971, '北洲子镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430971130, 430971, '千山红镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430971405, 430971, '南湾湖办事处', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430972005, 430972, '朝阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430972006, 430972, '东部产业园地区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430972109, 430972, '谢林港镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981006, 430981, '琼湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981008, 430981, '胭脂湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981102, 430981, '四季红镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981105, 430981, '泗湖山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981107, 430981, '南嘴镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981108, 430981, '新湾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981110, 430981, '茶盘洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981112, 430981, '南大膳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981113, 430981, '黄茅洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981114, 430981, '草尾镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981115, 430981, '阳罗洲镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981116, 430981, '共华镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981401, 430981, '南洞庭湿地保护与发展事务中心', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (430981402, 430981, '漉湖湿地保护与发展事务中心', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002001, 431002, '人民路街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002002, 431002, '北湖街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002003, 431002, '燕泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002004, 431002, '下湄桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002005, 431002, '骆仙街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002006, 431002, '增福街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002007, 431002, '郴江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002008, 431002, '涌泉街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002009, 431002, '安和街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002010, 431002, '石盖塘街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002101, 431002, '华塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002102, 431002, '鲁塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002209, 431002, '仰天湖瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431002210, 431002, '保和瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003001, 431003, '苏仙岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003002, 431003, '南塔街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003003, 431003, '白鹿洞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003004, 431003, '王仙岭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003005, 431003, '卜里坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003006, 431003, '观山洞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003101, 431003, '白露塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003102, 431003, '良田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003103, 431003, '栖凤渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003104, 431003, '坳上镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003105, 431003, '许家洞镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003107, 431003, '五里牌镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003109, 431003, '五盖山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431003110, 431003, '飞天山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021001, 431021, '龙潭街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021002, 431021, '鹿峰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021003, 431021, '黄沙坪街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021102, 431021, '仁义镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021103, 431021, '太和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021104, 431021, '洋市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021105, 431021, '和平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021106, 431021, '流峰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021107, 431021, '塘市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021108, 431021, '莲塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021109, 431021, '舂陵江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021110, 431021, '荷叶镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021111, 431021, '方元镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021112, 431021, '樟市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021113, 431021, '敖泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021114, 431021, '正和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021115, 431021, '浩塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021116, 431021, '雷坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021117, 431021, '欧阳海镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021118, 431021, '四里镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021209, 431021, '桥市乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431021226, 431021, '白水瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022101, 431022, '白石渡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022102, 431022, '杨梅山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022103, 431022, '瑶岗仙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022104, 431022, '梅田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022106, 431022, '黄沙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022107, 431022, '迎春镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022108, 431022, '一六镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022109, 431022, '栗源镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022110, 431022, '岩泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022111, 431022, '玉溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022112, 431022, '天塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022113, 431022, '笆篱镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022114, 431022, '里田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022115, 431022, '五岭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022201, 431022, '浆水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022202, 431022, '长村乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022205, 431022, '莽山瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022208, 431022, '关溪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431022212, 431022, '赤石乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023001, 431023, '便江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023002, 431023, '湘阴渡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023101, 431023, '马田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023104, 431023, '金龟镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023105, 431023, '柏林镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023106, 431023, '鲤鱼塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023109, 431023, '悦来镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023112, 431023, '黄泥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023113, 431023, '樟树镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023114, 431023, '太和镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023115, 431023, '油麻镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023116, 431023, '高亭司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023203, 431023, '洋塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023214, 431023, '大布江乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023215, 431023, '龙形市乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431023216, 431023, '七甲乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024100, 431024, '珠泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024102, 431024, '塘村镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024103, 431024, '袁家镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024104, 431024, '行廊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024106, 431024, '龙潭镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024107, 431024, '石桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024108, 431024, '坦坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024110, 431024, '广发镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024111, 431024, '晋屏镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431024201, 431024, '普满乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025100, 431025, '舜峰镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025101, 431025, '金江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025104, 431025, '武水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025105, 431025, '南强镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025106, 431025, '汾市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025107, 431025, '水东镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025108, 431025, '楚江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025109, 431025, '麦市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025110, 431025, '香花镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025208, 431025, '花塘乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025211, 431025, '万水乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025214, 431025, '镇南乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431025216, 431025, '西山瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026102, 431026, '热水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026103, 431026, '土桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026104, 431026, '泉水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026105, 431026, '暖水镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026106, 431026, '大坪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026107, 431026, '三江口瑶族镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026108, 431026, '卢阳镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026109, 431026, '马桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026110, 431026, '井坡镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026207, 431026, '南洞乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026209, 431026, '濠头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026214, 431026, '延寿瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026216, 431026, '集益乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026217, 431026, '文明瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026400, 431026, '大坪国有林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431026401, 431026, '汝城经济开发区', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027100, 431027, '沤江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027101, 431027, '沙田镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027102, 431027, '清泉镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027103, 431027, '大塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027104, 431027, '四都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027105, 431027, '寨前镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027106, 431027, '普乐镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027200, 431027, '桥头乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027208, 431027, '新坊乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027210, 431027, '东洛乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027213, 431027, '青山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431027400, 431027, '宋坪林场', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028101, 431028, '安平镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028102, 431028, '龙海镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028105, 431028, '灵官镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028106, 431028, '永乐江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028107, 431028, '金紫仙镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028201, 431028, '龙市乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028204, 431028, '渡口乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028205, 431028, '华王乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028206, 431028, '牌楼乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028207, 431028, '平背乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028209, 431028, '承坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028210, 431028, '竹山乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431028214, 431028, '洋际乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081001, 431081, '唐洞街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081002, 431081, '东江街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081100, 431081, '滁口镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081102, 431081, '三都镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081103, 431081, '蓼江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081105, 431081, '兴宁镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081106, 431081, '州门司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081108, 431081, '黄草镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081110, 431081, '汤溪镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081112, 431081, '清江镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081113, 431081, '白廊镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081219, 431081, '回龙山瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431081220, 431081, '八面山瑶族乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102001, 431102, '朝阳街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102002, 431102, '南津渡街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102003, 431102, '七里店街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102004, 431102, '徐家井街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102005, 431102, '接履桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102006, 431102, '石山脚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102101, 431102, '水口山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102102, 431102, '珠山镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102103, 431102, '黄田铺镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102104, 431102, '富家桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102105, 431102, '菱角塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102106, 431102, '邮亭圩镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102108, 431102, '石岩头镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102200, 431102, '大庆坪乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102201, 431102, '梳子铺乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431102203, 431102, '凼底乡', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103001, 431103, '梅湾街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103002, 431103, '菱角山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103003, 431103, '肖家园街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103004, 431103, '杨家桥街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103005, 431103, '梧桐街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103006, 431103, '凤凰街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103007, 431103, '珊瑚街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103008, 431103, '曲河街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103009, 431103, '岚角山街道', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103101, 431103, '花桥街镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103102, 431103, '普利桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103103, 431103, '牛角坝镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103104, 431103, '高溪市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103105, 431103, '黄阳司镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103106, 431103, '上岭桥镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103108, 431103, '伊塘镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103110, 431103, '蔡市镇', 4, '2022-11-09 10:39:27', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431103201, 431103, '杨村甸乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122100, 431122, '白牙市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122101, 431122, '大庙口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122102, 431122, '紫溪市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122103, 431122, '横塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122104, 431122, '石期市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122105, 431122, '井头圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122106, 431122, '端桥铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122107, 431122, '鹿马桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122108, 431122, '芦洪市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122109, 431122, '新圩江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122110, 431122, '花桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122111, 431122, '大盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122112, 431122, '南桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122201, 431122, '川岩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122202, 431122, '水岭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122400, 431122, '大庙口林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431122401, 431122, '黄泥洞林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123100, 431123, '泷泊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123101, 431123, '江村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123102, 431123, '五里牌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123103, 431123, '茶林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123104, 431123, '何家洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123105, 431123, '麻江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123206, 431123, '塘底乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123207, 431123, '上梧江瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123208, 431123, '理家坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123209, 431123, '五星岭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123210, 431123, '打鼓坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123400, 431123, '双牌打鼓坪林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123401, 431123, '双牌五星岭林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431123402, 431123, '阳明山国家森林公园管理局', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124001, 431124, '濂溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124002, 431124, '西洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124003, 431124, '上关街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124004, 431124, '营江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124005, 431124, '东门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124006, 431124, '富塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124007, 431124, '万家庄街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124101, 431124, '梅花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124102, 431124, '寿雁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124103, 431124, '仙子脚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124104, 431124, '清塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124105, 431124, '祥霖铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124106, 431124, '蚣坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124107, 431124, '四马桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124108, 431124, '白马渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124109, 431124, '柑子园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124111, 431124, '白芒铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124112, 431124, '桥头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124201, 431124, '乐福堂乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124210, 431124, '审章塘瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124212, 431124, '横岭瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124213, 431124, '洪塘营瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431124402, 431124, '道县大坪铺农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125100, 431125, '潇浦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125101, 431125, '上江圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125103, 431125, '夏层铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125104, 431125, '桃川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125105, 431125, '粗石江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125200, 431125, '松柏瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125202, 431125, '千家峒瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125203, 431125, '兰溪瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431125204, 431125, '源口瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126001, 431126, '文庙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126002, 431126, '舜陵街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126003, 431126, '桐山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126004, 431126, '东溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126101, 431126, '天堂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126102, 431126, '水市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126103, 431126, '湾井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126104, 431126, '冷水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126105, 431126, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126106, 431126, '禾亭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126107, 431126, '仁和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126108, 431126, '中和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126109, 431126, '柏家坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126110, 431126, '清水桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126111, 431126, '鲤溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126112, 431126, '保安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126200, 431126, '九疑山瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126202, 431126, '五龙山瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126203, 431126, '棉花坪瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431126204, 431126, '桐木漯瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127100, 431127, '塔峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127102, 431127, '毛俊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127103, 431127, '楠市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127104, 431127, '所城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127105, 431127, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127106, 431127, '祠堂圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127107, 431127, '土市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127108, 431127, '太平圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127200, 431127, '汇源瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127201, 431127, '犁头瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127202, 431127, '浆洞瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127203, 431127, '湘江源瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127204, 431127, '大桥瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127205, 431127, '荆竹瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127400, 431127, '蓝山荆竹林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127401, 431127, '蓝山浆洞林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127402, 431127, '蓝山南岭林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127403, 431127, '蓝山原种场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431127404, 431127, '蓝山黄毛岭茶场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128001, 431128, '龙泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128002, 431128, '中山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128101, 431128, '金陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128102, 431128, '骥村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128103, 431128, '枧头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128104, 431128, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128105, 431128, '石羊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128106, 431128, '新隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128107, 431128, '三井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128108, 431128, '大坪塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128109, 431128, '陶岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128110, 431128, '金盆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431128202, 431128, '门楼下瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129100, 431129, '沱江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129103, 431129, '大路铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129104, 431129, '白芒营镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129105, 431129, '涛圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129106, 431129, '河路口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129108, 431129, '大圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129109, 431129, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129110, 431129, '码市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129111, 431129, '涔天河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129200, 431129, '界牌乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129201, 431129, '桥市乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129202, 431129, '大石桥乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129207, 431129, '湘江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129209, 431129, '蔚竹口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129210, 431129, '大锡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431129211, 431129, '小圩壮族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431171001, 431171, '仁湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431173100, 431173, '回龙圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181001, 431181, '龙山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181002, 431181, '长虹街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181003, 431181, '浯溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181101, 431181, '观音滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181102, 431181, '茅竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181103, 431181, '三口塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181104, 431181, '大忠桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181105, 431181, '肖家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181106, 431181, '八宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181107, 431181, '白水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181108, 431181, '进宝塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181109, 431181, '黄泥塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181110, 431181, '羊角塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181111, 431181, '梅溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181112, 431181, '潘市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181113, 431181, '七里桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181114, 431181, '下马渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181115, 431181, '黎家坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181116, 431181, '文富市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181117, 431181, '大村甸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181118, 431181, '文明铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181119, 431181, '龚家坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181120, 431181, '金洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181201, 431181, '凤凰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181202, 431181, '石鼓源乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181203, 431181, '晒北滩瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181401, 431181, '原种场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431181402, 431181, '畜牧场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202001, 431202, '城中街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202002, 431202, '城北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202003, 431202, '红星街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202004, 431202, '迎丰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202005, 431202, '坨院街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202006, 431202, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202007, 431202, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202101, 431202, '黄金坳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202201, 431202, '盈口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202205, 431202, '凉亭坳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431202400, 431202, '黄岩旅游度假区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221100, 431221, '中方镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221102, 431221, '泸阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221103, 431221, '花桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221104, 431221, '铜湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221105, 431221, '桐木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221106, 431221, '铁坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221107, 431221, '新建镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221108, 431221, '接龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221109, 431221, '铜鼎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221110, 431221, '新路河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221111, 431221, '袁家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431221214, 431221, '蒿吉坪瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222102, 431222, '麻溪铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222105, 431222, '五强溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222110, 431222, '明溪口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222111, 431222, '凉水井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222112, 431222, '七甲坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222113, 431222, '筲箕湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222114, 431222, '官庄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222115, 431222, '沅陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222223, 431222, '杜家坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222224, 431222, '楠木铺乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222230, 431222, '肖家桥乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222234, 431222, '火场土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222238, 431222, '陈家滩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222239, 431222, '清浪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222245, 431222, '借母溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222247, 431222, '荔溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222248, 431222, '大合坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222250, 431222, '马底驿乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222251, 431222, '北溶乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222252, 431222, '二酉乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431222253, 431222, '盘古乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223100, 431223, '辰阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223101, 431223, '孝坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223102, 431223, '田湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223103, 431223, '火马冲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223104, 431223, '黄溪口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223105, 431223, '潭湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223106, 431223, '安坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223108, 431223, '锦滨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223109, 431223, '修溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223200, 431223, '船溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223204, 431223, '长田湾乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223205, 431223, '小龙门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223206, 431223, '后塘瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223207, 431223, '苏木溪瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223208, 431223, '罗子山瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223209, 431223, '上蒲溪瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223210, 431223, '仙人湾瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223211, 431223, '龙头庵乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223215, 431223, '大水田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223216, 431223, '桥头溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223218, 431223, '龙泉岩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223221, 431223, '柿溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431223222, 431223, '谭家场乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224100, 431224, '卢峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224102, 431224, '低庄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224103, 431224, '桥江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224104, 431224, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224105, 431224, '均坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224106, 431224, '观音阁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224107, 431224, '双井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224108, 431224, '水东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224109, 431224, '两丫坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224110, 431224, '黄茅园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224112, 431224, '葛竹坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224118, 431224, '大江口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224119, 431224, '思蒙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224120, 431224, '深子湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224121, 431224, '祖师殿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224122, 431224, '三江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224123, 431224, '统溪河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224124, 431224, '北斗溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224204, 431224, '舒溶溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224213, 431224, '油洋乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224219, 431224, '小横垅乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224223, 431224, '中都乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224224, 431224, '沿溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224230, 431224, '龙庄湾乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431224231, 431224, '淘金坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225100, 431225, '林城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225101, 431225, '坪村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225102, 431225, '堡子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225103, 431225, '团河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225104, 431225, '若水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225106, 431225, '广坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225107, 431225, '马鞍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225108, 431225, '金竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225200, 431225, '沙溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225201, 431225, '金子岩侗族苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225204, 431225, '高椅乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225209, 431225, '宝田侗族苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225210, 431225, '漠滨侗族苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225211, 431225, '蒲稳侗族苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225212, 431225, '青朗侗族苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225213, 431225, '炮团侗族苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225214, 431225, '地灵乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431225215, 431225, '连山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226101, 431226, '锦和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226102, 431226, '江口墟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226103, 431226, '岩门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226104, 431226, '兰里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226105, 431226, '吕家坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226106, 431226, '高村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226107, 431226, '尧市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226108, 431226, '郭公坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226204, 431226, '文昌阁乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226205, 431226, '大桥江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226206, 431226, '舒家村乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226207, 431226, '隆家堡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226208, 431226, '谭家寨乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226209, 431226, '石羊哨乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226210, 431226, '板栗树乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226212, 431226, '兰村乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226215, 431226, '和平溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431226216, 431226, '黄桑乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227101, 431227, '波洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227103, 431227, '鱼市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227104, 431227, '凉伞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227105, 431227, '扶罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227106, 431227, '中寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227107, 431227, '晃洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227108, 431227, '林冲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227109, 431227, '贡溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227110, 431227, '禾滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227200, 431227, '步头降苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431227215, 431227, '米贝苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228100, 431228, '芷江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228101, 431228, '罗旧镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228102, 431228, '新店坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228103, 431228, '碧涌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228104, 431228, '公坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228105, 431228, '岩桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228106, 431228, '三道坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228107, 431228, '土桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228108, 431228, '楠木坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228201, 431228, '牛牯坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228204, 431228, '水宽乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228212, 431228, '大树坳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228215, 431228, '梨溪口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228216, 431228, '洞下场乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228220, 431228, '禾梨坳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228221, 431228, '冷水溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228223, 431228, '晓坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431228224, 431228, '罗卜田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229100, 431229, '渠阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229101, 431229, '甘棠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229102, 431229, '大堡子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229103, 431229, '坳上镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229104, 431229, '新厂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229105, 431229, '平茶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229200, 431229, '太阳坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229201, 431229, '三锹乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229202, 431229, '文溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229203, 431229, '寨牙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431229206, 431229, '藕团乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230100, 431230, '双江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230101, 431230, '县溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230102, 431230, '播阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230104, 431230, '牙屯堡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230105, 431230, '菁芜洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230106, 431230, '溪口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230107, 431230, '陇城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230108, 431230, '万佛山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230109, 431230, '独坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230203, 431230, '大高坪苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230216, 431230, '坪坦乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230400, 431230, '通道县地连林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431230401, 431230, '通道县播阳农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431271001, 431271, '河滨路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431271002, 431271, '沅江路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431271003, 431271, '新街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431271004, 431271, '高坡街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431271218, 431271, '横岩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431271220, 431271, '桂花园乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281101, 431281, '黔城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281102, 431281, '安江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281103, 431281, '托口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281104, 431281, '雪峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281106, 431281, '江市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281107, 431281, '沅河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281108, 431281, '塘湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281202, 431281, '岔头乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281203, 431281, '茅渡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281204, 431281, '大崇乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281205, 431281, '熟坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281206, 431281, '铁山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281207, 431281, '群峰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281208, 431281, '湾溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281209, 431281, '洗马乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281211, 431281, '沙湾乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281212, 431281, '深渡苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281213, 431281, '龙船塘瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281214, 431281, '太平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431281217, 431281, '岩垅乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302001, 431302, '乐坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302002, 431302, '花山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302003, 431302, '黄泥塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302004, 431302, '长青街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302005, 431302, '大科街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302006, 431302, '涟滨街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302007, 431302, '大埠桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302100, 431302, '杉山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302101, 431302, '万宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302104, 431302, '石井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302105, 431302, '水洞底镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302106, 431302, '蛇形山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431302204, 431302, '双江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321001, 431321, '永丰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321002, 431321, '金开街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321101, 431321, '荷叶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321102, 431321, '井字镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321103, 431321, '梓门桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321104, 431321, '杏子铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321105, 431321, '走马街镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321107, 431321, '洪山殿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321108, 431321, '甘棠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321109, 431321, '三塘铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321110, 431321, '青树坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321111, 431321, '花门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321112, 431321, '锁石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321200, 431321, '石牛乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321201, 431321, '沙塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431321202, 431321, '印塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322001, 431322, '上梅街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322002, 431322, '上渡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322003, 431322, '枫林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322101, 431322, '石冲口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322102, 431322, '洋溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322103, 431322, '槎溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322104, 431322, '水车镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322105, 431322, '文田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322106, 431322, '奉家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322107, 431322, '炉观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322108, 431322, '游家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322109, 431322, '西河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322110, 431322, '孟公镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322111, 431322, '琅塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322112, 431322, '白溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322113, 431322, '圳上镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322114, 431322, '吉庆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322115, 431322, '温塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322116, 431322, '田坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322117, 431322, '桑梓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322118, 431322, '曹家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322200, 431322, '科头乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322201, 431322, '维山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322202, 431322, '天门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322203, 431322, '荣华乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322204, 431322, '金凤乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322205, 431322, '油溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322206, 431322, '坐石乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322500, 431322, '大熊山国有林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431322501, 431322, '古台山国有林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381001, 431381, '冷水江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381002, 431381, '锡矿山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381003, 431381, '沙塘湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381004, 431381, '布溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381100, 431381, '禾青镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381102, 431381, '渣渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381103, 431381, '铎山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381105, 431381, '三尖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381106, 431381, '金竹山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431381205, 431381, '中连乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382001, 431382, '蓝田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382002, 431382, '六亩塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382003, 431382, '石马山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382102, 431382, '安平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382103, 431382, '湄江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382104, 431382, '伏口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382105, 431382, '桥头河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382106, 431382, '七星街镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382107, 431382, '杨市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382108, 431382, '枫坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382109, 431382, '斗笠山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382111, 431382, '白马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382112, 431382, '茅塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382113, 431382, '荷塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382114, 431382, '金石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382115, 431382, '龙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382116, 431382, '渡头塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382117, 431382, '湖泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382200, 431382, '三甲乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (431382202, 431382, '古塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101002, 433101, '峒河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101004, 433101, '乾州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101005, 433101, '镇溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101007, 433101, '石家冲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101008, 433101, '双塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101009, 433101, '吉凤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101100, 433101, '矮寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101101, 433101, '马颈坳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101102, 433101, '河溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101104, 433101, '丹青镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101105, 433101, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433101201, 433101, '已略乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122102, 433122, '达岚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122104, 433122, '兴隆场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122105, 433122, '潭溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122106, 433122, '洗溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122107, 433122, '武溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122108, 433122, '浦市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122109, 433122, '合水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122203, 433122, '石榴坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122206, 433122, '解放岩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122207, 433122, '小章乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122208, 433122, '白羊溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433122400, 433122, '军亭界林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123101, 433123, '廖家桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123104, 433123, '茶田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123105, 433123, '吉信镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123107, 433123, '腊尔山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123108, 433123, '禾库镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123109, 433123, '沱江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123110, 433123, '阿拉营镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123111, 433123, '木江坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123112, 433123, '山江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123113, 433123, '落潮井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123114, 433123, '新场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123115, 433123, '筸子坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123116, 433123, '千工坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123204, 433123, '水打田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123205, 433123, '林峰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123216, 433123, '麻冲乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433123220, 433123, '两林乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124102, 433124, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124103, 433124, '民乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124105, 433124, '吉卫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124106, 433124, '麻栗场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124107, 433124, '雅酉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124108, 433124, '边城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124109, 433124, '花垣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124110, 433124, '双龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124111, 433124, '石栏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124200, 433124, '长乐乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124206, 433124, '猫儿乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433124213, 433124, '补抽乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125104, 433125, '普戎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125108, 433125, '复兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125109, 433125, '迁陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125110, 433125, '清水坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125111, 433125, '比耳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125112, 433125, '毛沟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125113, 433125, '水田河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125114, 433125, '葫芦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125115, 433125, '碗米坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125116, 433125, '吕洞山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125217, 433125, '阳朝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433125218, 433125, '长潭河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126101, 433126, '古阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126103, 433126, '岩头寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126104, 433126, '默戎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126105, 433126, '红石林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126106, 433126, '断龙山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126107, 433126, '高峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433126108, 433126, '坪坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127101, 433127, '首车镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127103, 433127, '芙蓉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127104, 433127, '永茂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127108, 433127, '小溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127109, 433127, '青坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127112, 433127, '石堤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127113, 433127, '万坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127114, 433127, '塔卧镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127115, 433127, '砂坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127116, 433127, '灵溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127117, 433127, '松柏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127118, 433127, '泽家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127200, 433127, '两岔乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127202, 433127, '西歧乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127203, 433127, '对山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127210, 433127, '高坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127216, 433127, '朗溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127220, 433127, '润雅乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127222, 433127, '车坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127228, 433127, '毛坝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127229, 433127, '万民乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127230, 433127, '盐井乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433127238, 433127, '颗砂乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130001, 433130, '民安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130002, 433130, '华塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130004, 433130, '兴隆街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130005, 433130, '石羔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130104, 433130, '洗车河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130110, 433130, '石牌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130112, 433130, '茨岩塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130113, 433130, '红岩溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130114, 433130, '靛房镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130115, 433130, '苗儿滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130116, 433130, '里耶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130117, 433130, '桂塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130118, 433130, '召市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130119, 433130, '洗洛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130120, 433130, '水田坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130121, 433130, '农车镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130200, 433130, '洛塔乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130210, 433130, '大安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130220, 433130, '内溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130236, 433130, '咱果乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (433130237, 433130, '茅坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103001, 440103, '沙面街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103002, 440103, '岭南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103003, 440103, '华林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103004, 440103, '多宝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103005, 440103, '昌华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103006, 440103, '逢源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103007, 440103, '龙津街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103008, 440103, '金花街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103009, 440103, '彩虹街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103010, 440103, '南源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103011, 440103, '西村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103012, 440103, '站前街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103013, 440103, '桥中街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103014, 440103, '白鹤洞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103015, 440103, '冲口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103016, 440103, '花地街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103017, 440103, '石围塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103018, 440103, '茶滘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103019, 440103, '东漖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103020, 440103, '海龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103021, 440103, '东沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440103022, 440103, '中南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104001, 440104, '洪桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104003, 440104, '北京街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104004, 440104, '六榕街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104005, 440104, '流花街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104007, 440104, '光塔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104010, 440104, '人民街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104011, 440104, '东山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104012, 440104, '农林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104013, 440104, '梅花村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104014, 440104, '黄花岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104015, 440104, '华乐街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104016, 440104, '建设街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104017, 440104, '大塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104018, 440104, '珠光街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104019, 440104, '大东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104020, 440104, '白云街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104021, 440104, '登峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440104022, 440104, '矿泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105001, 440105, '赤岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105002, 440105, '新港街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105003, 440105, '昌岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105004, 440105, '江南中街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105005, 440105, '滨江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105006, 440105, '素社街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105007, 440105, '海幢街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105008, 440105, '南华西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105009, 440105, '龙凤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105010, 440105, '沙园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105011, 440105, '南石头街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105012, 440105, '凤阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105013, 440105, '瑞宝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105014, 440105, '江海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105015, 440105, '琶洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105016, 440105, '南洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105017, 440105, '华洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440105018, 440105, '官洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106001, 440106, '五山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106002, 440106, '员村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106003, 440106, '车陂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106004, 440106, '沙河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106006, 440106, '石牌街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106007, 440106, '沙东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106008, 440106, '天河南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106009, 440106, '林和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106010, 440106, '兴华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106011, 440106, '棠下街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106012, 440106, '天园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106013, 440106, '猎德街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106014, 440106, '冼村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106015, 440106, '元岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106016, 440106, '黄村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106017, 440106, '长兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106018, 440106, '龙洞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106019, 440106, '凤凰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106020, 440106, '前进街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106021, 440106, '珠吉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440106022, 440106, '新塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111002, 440111, '三元里街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111003, 440111, '松洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111004, 440111, '景泰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111005, 440111, '同德街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111006, 440111, '黄石街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111007, 440111, '棠景街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111008, 440111, '新市街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111009, 440111, '同和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111010, 440111, '京溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111011, 440111, '永平街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111012, 440111, '嘉禾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111013, 440111, '均禾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111014, 440111, '石井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111015, 440111, '金沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111016, 440111, '云城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111017, 440111, '鹤龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111018, 440111, '白云湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111019, 440111, '石门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111020, 440111, '龙归街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111021, 440111, '大源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111103, 440111, '人和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111107, 440111, '太和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111108, 440111, '钟落潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440111113, 440111, '江高镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112001, 440112, '黄埔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112002, 440112, '红山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112003, 440112, '鱼珠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112005, 440112, '大沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112006, 440112, '文冲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112007, 440112, '穗东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112008, 440112, '南岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112010, 440112, '长洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112011, 440112, '夏港街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112012, 440112, '萝岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112013, 440112, '云埔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112014, 440112, '联和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112015, 440112, '永和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112016, 440112, '长岭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112017, 440112, '九佛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112018, 440112, '龙湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440112101, 440112, '新龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113007, 440113, '市桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113008, 440113, '沙头街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113009, 440113, '东环街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113010, 440113, '桥南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113011, 440113, '小谷围街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113012, 440113, '大石街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113013, 440113, '洛浦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113014, 440113, '石壁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113015, 440113, '钟村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113016, 440113, '大龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113017, 440113, '沙湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113102, 440113, '南村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113103, 440113, '新造镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113104, 440113, '化龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113105, 440113, '石楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440113120, 440113, '石碁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114001, 440114, '新华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114002, 440114, '花城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114003, 440114, '秀全街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114004, 440114, '新雅街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114103, 440114, '梯面镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114104, 440114, '花山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114105, 440114, '花东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114107, 440114, '炭步镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114108, 440114, '赤坭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440114109, 440114, '狮岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115001, 440115, '南沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115002, 440115, '珠江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115003, 440115, '龙穴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115100, 440115, '万顷沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115101, 440115, '横沥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115102, 440115, '黄阁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115103, 440115, '东涌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115104, 440115, '大岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440115105, 440115, '榄核镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117001, 440117, '街口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117002, 440117, '江埔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117003, 440117, '城郊街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117103, 440117, '温泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117104, 440117, '良口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117107, 440117, '吕田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117111, 440117, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117113, 440117, '鳌头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117404, 440117, '黄龙带水库', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440117405, 440117, '大岭山林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118001, 440118, '荔城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118002, 440118, '增江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118003, 440118, '朱村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118004, 440118, '永宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118005, 440118, '荔湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118006, 440118, '宁西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118101, 440118, '新塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118102, 440118, '石滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118103, 440118, '中新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118104, 440118, '正果镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118105, 440118, '派潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118106, 440118, '小楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440118107, 440118, '仙村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203001, 440203, '新华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203002, 440203, '惠民街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203100, 440203, '西联镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203101, 440203, '西河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203102, 440203, '龙归镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203103, 440203, '江湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440203104, 440203, '重阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204001, 440204, '东河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204002, 440204, '车站街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204008, 440204, '风采街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204100, 440204, '新韶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204101, 440204, '乐园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204102, 440204, '十里亭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204103, 440204, '犁市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204104, 440204, '花坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204401, 440204, '曲仁矿务局田螺冲办事处', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440204402, 440204, '曲仁矿务局曲仁办事处', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205001, 440205, '松山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205100, 440205, '马坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205101, 440205, '大塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205102, 440205, '枫湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205103, 440205, '小坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205104, 440205, '沙溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205106, 440205, '乌石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205107, 440205, '樟市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205108, 440205, '白土镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440205109, 440205, '罗坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222100, 440222, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222101, 440222, '马市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222102, 440222, '澄江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222103, 440222, '顿岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222104, 440222, '罗坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222105, 440222, '司前镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222106, 440222, '隘子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222107, 440222, '城南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222108, 440222, '沈所镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440222204, 440222, '深渡水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224001, 440224, '丹霞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224102, 440224, '闻韶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224103, 440224, '扶溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224104, 440224, '长江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224105, 440224, '城口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224106, 440224, '红山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224107, 440224, '石塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224108, 440224, '董塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224109, 440224, '大桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224110, 440224, '周田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440224111, 440224, '黄坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229100, 440229, '龙仙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229104, 440229, '坝仔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229106, 440229, '江尾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229109, 440229, '官渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229111, 440229, '周陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229113, 440229, '翁城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229114, 440229, '新江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440229115, 440229, '铁龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232100, 440232, '乳城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232103, 440232, '一六镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232104, 440232, '桂头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232106, 440232, '洛阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232108, 440232, '大布镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232109, 440232, '大桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232111, 440232, '东坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232112, 440232, '游溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232113, 440232, '必背镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232450, 440232, '天井山林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440232451, 440232, '乳阳林业局', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233001, 440233, '丰城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233100, 440233, '黄磜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233101, 440233, '马头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233102, 440233, '梅坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233103, 440233, '沙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233104, 440233, '遥田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440233105, 440233, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281001, 440281, '乐城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281102, 440281, '北乡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281103, 440281, '九峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281104, 440281, '廊田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281105, 440281, '长来镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281106, 440281, '梅花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281107, 440281, '三溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281108, 440281, '坪石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281110, 440281, '黄圃镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281111, 440281, '五山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281112, 440281, '两江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281113, 440281, '沙坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281114, 440281, '云岩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281115, 440281, '秀水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281117, 440281, '大源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281118, 440281, '庆云镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281119, 440281, '白石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281451, 440281, '坪梅矿务局坪石办事处', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440281452, 440281, '坪梅矿务局梅田办事处', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282001, 440282, '雄州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282100, 440282, '乌迳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282103, 440282, '界址镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282104, 440282, '坪田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282105, 440282, '黄坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282106, 440282, '邓坊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282107, 440282, '油山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282109, 440282, '南亩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282110, 440282, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282111, 440282, '江头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282112, 440282, '湖口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282113, 440282, '珠玑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282115, 440282, '主田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282116, 440282, '古市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282118, 440282, '全安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282120, 440282, '百顺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282121, 440282, '澜河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282122, 440282, '帽子峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440282400, 440282, '东莞大岭山(南雄)产业转移工业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303001, 440303, '桂园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303002, 440303, '黄贝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303003, 440303, '东门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303004, 440303, '翠竹街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303005, 440303, '南湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303006, 440303, '笋岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303007, 440303, '东湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303008, 440303, '莲塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303009, 440303, '东晓街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440303010, 440303, '清水河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304001, 440304, '南园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304002, 440304, '园岭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304004, 440304, '福田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304005, 440304, '沙头街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304006, 440304, '香蜜湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304007, 440304, '梅林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304008, 440304, '莲花街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304009, 440304, '华富街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304010, 440304, '福保街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304011, 440304, '华强北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440304400, 440304, '福田保税区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305001, 440305, '南头街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305002, 440305, '南山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305003, 440305, '沙河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305005, 440305, '蛇口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305006, 440305, '招商街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305007, 440305, '粤海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305008, 440305, '桃源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305009, 440305, '西丽街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440305400, 440305, '前海合作区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306017, 440306, '新安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306018, 440306, '西乡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306019, 440306, '航城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306020, 440306, '福永街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306021, 440306, '福海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306022, 440306, '沙井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306023, 440306, '新桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306024, 440306, '松岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306025, 440306, '燕罗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306026, 440306, '石岩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440306400, 440306, '深圳市宝安国际机场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307003, 440307, '平湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307006, 440307, '坪地街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307009, 440307, '葵涌街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307010, 440307, '大鹏街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307011, 440307, '南澳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307012, 440307, '南湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307013, 440307, '坂田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307014, 440307, '布吉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307015, 440307, '龙城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307016, 440307, '龙岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307017, 440307, '横岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307018, 440307, '吉华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307019, 440307, '宝龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440307020, 440307, '园山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440308001, 440308, '梅沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440308002, 440308, '盐田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440308003, 440308, '沙头角街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440308004, 440308, '海山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440308403, 440308, '深圳盐田综合保税区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440309001, 440309, '观湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440309002, 440309, '民治街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440309003, 440309, '龙华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440309004, 440309, '大浪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440309005, 440309, '福城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440309006, 440309, '观澜街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310001, 440310, '坪山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310002, 440310, '马峦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310003, 440310, '碧岭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310004, 440310, '石井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310005, 440310, '坑梓街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310006, 440310, '龙田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440310401, 440310, '深圳坪山综合保税区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440311001, 440311, '光明街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440311002, 440311, '公明街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440311003, 440311, '新湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440311004, 440311, '凤凰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440311005, 440311, '玉塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440311006, 440311, '马田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402001, 440402, '翠香街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402002, 440402, '梅华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402003, 440402, '前山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402004, 440402, '吉大街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402005, 440402, '拱北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402006, 440402, '香湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402007, 440402, '狮山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402008, 440402, '湾仔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402009, 440402, '凤山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402100, 440402, '唐家湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402102, 440402, '南屏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402104, 440402, '横琴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402105, 440402, '桂山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402106, 440402, '万山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402107, 440402, '担杆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402401, 440402, '南屏科技园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402402, 440402, '保税区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402403, 440402, '三溪科创小镇发展中心', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440402404, 440402, '洪湾商贸物流中心', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440403001, 440403, '白藤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440403100, 440403, '莲洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440403103, 440403, '斗门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440403105, 440403, '乾务镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440403106, 440403, '白蕉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440403107, 440403, '井岸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440404100, 440404, '三灶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440404101, 440404, '南水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440404103, 440404, '红旗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440404104, 440404, '平沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440404400, 440404, '联港工业区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440404401, 440404, '航空产业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507001, 440507, '金霞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507003, 440507, '珠池街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507004, 440507, '新津街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507005, 440507, '鸥汀街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507008, 440507, '龙祥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507009, 440507, '外砂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507010, 440507, '龙华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507011, 440507, '新溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507012, 440507, '新海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440507013, 440507, '龙腾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511001, 440511, '石炮台街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511002, 440511, '金砂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511004, 440511, '东方街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511005, 440511, '大华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511007, 440511, '光华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511009, 440511, '广厦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511013, 440511, '岐山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511015, 440511, '鮀莲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511016, 440511, '鮀江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511017, 440511, '月浦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511018, 440511, '小公园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440511019, 440511, '金东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512001, 440512, '达濠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512002, 440512, '马窖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512003, 440512, '礐石街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512004, 440512, '广澳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512005, 440512, '滨海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512006, 440512, '河浦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440512007, 440512, '玉新街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513001, 440513, '文光街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513002, 440513, '棉北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513003, 440513, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513004, 440513, '金浦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513100, 440513, '海门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513101, 440513, '河溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513102, 440513, '和平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513103, 440513, '西胪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513104, 440513, '关埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513106, 440513, '谷饶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513107, 440513, '贵屿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513108, 440513, '铜盂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440513110, 440513, '金灶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514001, 440514, '峡山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514101, 440514, '井都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514103, 440514, '成田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514104, 440514, '司马浦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514105, 440514, '陈店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514106, 440514, '两英镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514107, 440514, '仙城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514108, 440514, '胪岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514109, 440514, '红场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514110, 440514, '雷岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440514112, 440514, '陇田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515001, 440515, '凤翔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515002, 440515, '广益街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515003, 440515, '澄华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515100, 440515, '上华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515101, 440515, '隆都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515102, 440515, '莲下镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515103, 440515, '莲上镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515104, 440515, '溪南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515105, 440515, '东里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515106, 440515, '盐鸿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440515107, 440515, '莲华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440523100, 440523, '后宅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440523101, 440523, '云澳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440523102, 440523, '深澳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440604010, 440604, '石湾镇街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440604011, 440604, '张槎街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440604012, 440604, '祖庙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440604100, 440604, '南庄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605011, 440605, '桂城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605121, 440605, '九江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605122, 440605, '西樵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605123, 440605, '丹灶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605124, 440605, '狮山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605125, 440605, '大沥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440605126, 440605, '里水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606003, 440606, '伦教街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606004, 440606, '勒流街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606005, 440606, '大良街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606006, 440606, '容桂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606101, 440606, '陈村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606102, 440606, '北滘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606103, 440606, '乐从镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606104, 440606, '龙江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606105, 440606, '杏坛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440606106, 440606, '均安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607001, 440607, '西南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607004, 440607, '云东海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607101, 440607, '大塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607103, 440607, '乐平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607104, 440607, '白坭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607105, 440607, '芦苞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607106, 440607, '南山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607400, 440607, '省三水劳教所', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607401, 440607, '省南丰劳教所', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607402, 440607, '省女子劳教所', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607403, 440607, '省第二戒毒劳教所', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440607404, 440607, '广州军区三水农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608004, 440608, '荷城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608106, 440608, '杨和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608107, 440608, '明城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608108, 440608, '更合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608400, 440608, '高明监狱', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608401, 440608, '云勇林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608402, 440608, '对川茶场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440608403, 440608, '佛山监狱', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440703002, 440703, '白沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440703005, 440703, '潮连街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440703006, 440703, '环市街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440703101, 440703, '棠下镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440703102, 440703, '荷塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440703103, 440703, '杜阮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440704001, 440704, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440704004, 440704, '外海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440704005, 440704, '礼乐街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705001, 440705, '会城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705101, 440705, '大泽镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705102, 440705, '司前镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705103, 440705, '罗坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705104, 440705, '双水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705105, 440705, '崖门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705106, 440705, '沙堆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705107, 440705, '古井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705108, 440705, '三江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705109, 440705, '睦洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705110, 440705, '大鳌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705450, 440705, '圭峰区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705451, 440705, '银湖湾', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705452, 440705, '银湖湾滨海新区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705453, 440705, '工业园区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440705470, 440705, '新会经济开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781001, 440781, '台城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781100, 440781, '大江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781101, 440781, '水步镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781102, 440781, '四九镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781103, 440781, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781104, 440781, '三合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781105, 440781, '冲蒌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781106, 440781, '斗山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781107, 440781, '都斛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781108, 440781, '赤溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781109, 440781, '端芬镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781110, 440781, '广海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781111, 440781, '海宴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781112, 440781, '汶村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781113, 440781, '深井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781114, 440781, '北陡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440781115, 440781, '川岛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783001, 440783, '三埠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783002, 440783, '长沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783103, 440783, '沙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783104, 440783, '苍城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783105, 440783, '龙胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783106, 440783, '大沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783107, 440783, '马冈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783108, 440783, '塘口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783109, 440783, '赤坎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783110, 440783, '百合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783111, 440783, '蚬冈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783112, 440783, '金鸡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783115, 440783, '月山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783116, 440783, '赤水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783117, 440783, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440783400, 440783, '翠山湖新区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784001, 440784, '沙坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784101, 440784, '龙口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784102, 440784, '雅瑶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784103, 440784, '古劳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784104, 440784, '桃源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784105, 440784, '鹤城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784106, 440784, '共和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784107, 440784, '址山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784108, 440784, '宅梧镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784112, 440784, '双合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784401, 440784, '广东省江门监狱', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440784402, 440784, '江门市四堡林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785001, 440785, '恩城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785100, 440785, '横陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785101, 440785, '圣堂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785102, 440785, '良西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785103, 440785, '沙湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785104, 440785, '牛江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785105, 440785, '君堂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785106, 440785, '大田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785107, 440785, '那吉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785108, 440785, '大槐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785109, 440785, '东成镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440785400, 440785, '恩平园区管委会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802001, 440802, '中华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802002, 440802, '寸金街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802003, 440802, '民主街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802004, 440802, '中山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802005, 440802, '沙湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802006, 440802, '调顺街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802007, 440802, '南桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440802008, 440802, '北桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803001, 440803, '解放街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803002, 440803, '爱国街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803003, 440803, '工农街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803004, 440803, '友谊街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803005, 440803, '新兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803006, 440803, '海滨街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803009, 440803, '建设街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803010, 440803, '东新街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803011, 440803, '新园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803012, 440803, '海头街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803070, 440803, '泉庄街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440803071, 440803, '乐华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804001, 440804, '南调街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804002, 440804, '麻斜街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804100, 440804, '南三镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804101, 440804, '坡头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804102, 440804, '乾塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804103, 440804, '龙头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804104, 440804, '官渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440804401, 440804, '湛江市坡头区官渡工业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811070, 440811, '东山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811071, 440811, '东简街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811072, 440811, '民安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811100, 440811, '麻章镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811101, 440811, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811102, 440811, '湖光镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811173, 440811, '硇洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440811450, 440811, '湖光农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823100, 440823, '遂城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823101, 440823, '黄略镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823102, 440823, '洋青镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823103, 440823, '界炮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823104, 440823, '乐民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823105, 440823, '江洪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823106, 440823, '杨柑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823107, 440823, '城月镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823108, 440823, '乌塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823109, 440823, '建新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823110, 440823, '岭北镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823111, 440823, '北坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823112, 440823, '港门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823113, 440823, '草潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440823114, 440823, '河头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825001, 440825, '徐城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825102, 440825, '迈陈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825103, 440825, '海安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825104, 440825, '曲界镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825105, 440825, '前山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825106, 440825, '西连镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825107, 440825, '下桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825108, 440825, '龙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825109, 440825, '下洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825110, 440825, '锦和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825111, 440825, '和安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825112, 440825, '新寮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825113, 440825, '南山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825201, 440825, '城北乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440825204, 440825, '角尾乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881001, 440881, '罗州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881002, 440881, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881003, 440881, '城北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881101, 440881, '石城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881102, 440881, '新民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881103, 440881, '吉水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881104, 440881, '河唇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881105, 440881, '石角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881106, 440881, '良垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881107, 440881, '横山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881108, 440881, '安铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881109, 440881, '营仔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881110, 440881, '青平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881111, 440881, '车板镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881112, 440881, '高桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881113, 440881, '石岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881114, 440881, '雅塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881115, 440881, '石颈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881116, 440881, '长山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881117, 440881, '塘蓬镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881118, 440881, '和寮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440881401, 440881, '九洲江开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882001, 440882, '雷城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882002, 440882, '西湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882003, 440882, '新城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882100, 440882, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882101, 440882, '沈塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882102, 440882, '客路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882103, 440882, '杨家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882104, 440882, '唐家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882105, 440882, '企水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882106, 440882, '纪家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882107, 440882, '松竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882108, 440882, '南兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882109, 440882, '雷高镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882110, 440882, '东里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882111, 440882, '调风镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882112, 440882, '龙门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882113, 440882, '英利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882114, 440882, '北和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882115, 440882, '乌石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882116, 440882, '覃斗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882117, 440882, '附城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440882450, 440882, '湛江奋勇高新技术产业开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883001, 440883, '梅菉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883002, 440883, '塘尾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883003, 440883, '大山江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883004, 440883, '博铺街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883005, 440883, '海滨街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883100, 440883, '浅水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883101, 440883, '长岐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883102, 440883, '覃巴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883103, 440883, '王村港镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883104, 440883, '振文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883105, 440883, '樟铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883106, 440883, '吴阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883107, 440883, '塘㙍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883109, 440883, '黄坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440883111, 440883, '兰石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902001, 440902, '红旗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902002, 440902, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902003, 440902, '河东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902004, 440902, '露天矿街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902005, 440902, '新华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902006, 440902, '官渡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902007, 440902, '站前街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902008, 440902, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902100, 440902, '金塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902101, 440902, '公馆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902102, 440902, '新坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902103, 440902, '镇盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902104, 440902, '鳌头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902105, 440902, '袂花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902106, 440902, '高山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902107, 440902, '山阁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440902108, 440902, '羊角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904001, 440904, '南海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904002, 440904, '高地街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904003, 440904, '水东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904004, 440904, '电海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904005, 440904, '陈村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904100, 440904, '马踏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904101, 440904, '岭门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904102, 440904, '坡心镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904103, 440904, '七迳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904104, 440904, '树仔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904105, 440904, '沙院镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904106, 440904, '麻岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904107, 440904, '旦场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904109, 440904, '小良镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904115, 440904, '霞洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904116, 440904, '观珠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904117, 440904, '沙琅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904118, 440904, '黄岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904119, 440904, '望夫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904120, 440904, '罗坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904121, 440904, '那霍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904125, 440904, '博贺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904126, 440904, '林头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904127, 440904, '电城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904451, 440904, '曙光农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904452, 440904, '水丰农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904453, 440904, '新华农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440904454, 440904, '电白盐场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981002, 440981, '石仔岭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981003, 440981, '山美街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981006, 440981, '金山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981007, 440981, '潘州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981008, 440981, '宝光街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981100, 440981, '谢鸡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981101, 440981, '新垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981102, 440981, '云潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981103, 440981, '分界镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981104, 440981, '根子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981105, 440981, '泗水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981107, 440981, '镇江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981109, 440981, '沙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981110, 440981, '南塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981111, 440981, '荷花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981112, 440981, '石板镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981115, 440981, '大井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981116, 440981, '潭头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981119, 440981, '大坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981120, 440981, '平山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981121, 440981, '深镇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981122, 440981, '马贵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981123, 440981, '古丁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981124, 440981, '曹江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981126, 440981, '荷塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981127, 440981, '石鼓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981128, 440981, '东岸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981129, 440981, '长坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981450, 440981, '团结农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981451, 440981, '胜利农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440981452, 440981, '火星农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982001, 440982, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982002, 440982, '东山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982003, 440982, '下郭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982004, 440982, '南盛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982005, 440982, '石湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982006, 440982, '鉴江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982100, 440982, '长岐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982101, 440982, '同庆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982102, 440982, '杨梅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982103, 440982, '良光镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982104, 440982, '笪桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982106, 440982, '丽岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982107, 440982, '新安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982108, 440982, '官桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982110, 440982, '林尘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982112, 440982, '合江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982113, 440982, '那务镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982114, 440982, '播扬镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982115, 440982, '宝圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982116, 440982, '平定镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982117, 440982, '文楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982118, 440982, '江湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982120, 440982, '中垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982401, 440982, '新时代农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982402, 440982, '新华农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982403, 440982, '和平农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982404, 440982, '红阳农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982405, 440982, '红峰农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982406, 440982, '建设农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440982407, 440982, '石滩农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983001, 440983, '东镇街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983101, 440983, '镇隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983102, 440983, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983105, 440983, '丁堡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983106, 440983, '池洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983112, 440983, '贵子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983113, 440983, '怀乡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983114, 440983, '茶山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983115, 440983, '洪冠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983116, 440983, '白石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983117, 440983, '大成镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983118, 440983, '钱排镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983119, 440983, '合水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983120, 440983, '新宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983121, 440983, '平塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983122, 440983, '思贺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983123, 440983, '金垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983124, 440983, '朱砂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983125, 440983, '北界镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (440983400, 440983, '信宜市国营红旗农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441202001, 441202, '端州区城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441202003, 441202, '端州区城西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441202005, 441202, '端州区黄岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441202006, 441202, '端州区睦岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203001, 441203, '坑口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203002, 441203, '桂城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203003, 441203, '广利街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203101, 441203, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203102, 441203, '沙浦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203103, 441203, '凤凰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441203104, 441203, '莲花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204001, 441204, '南岸街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204100, 441204, '河台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204101, 441204, '乐城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204102, 441204, '水南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204103, 441204, '禄步镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204105, 441204, '小湘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204106, 441204, '大湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204107, 441204, '新桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204108, 441204, '白诸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204109, 441204, '莲塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204110, 441204, '活道镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204111, 441204, '蛟塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204112, 441204, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204113, 441204, '白土镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204114, 441204, '金渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204115, 441204, '金利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441204116, 441204, '蚬岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223001, 441223, '南街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223100, 441223, '排沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223102, 441223, '潭布镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223103, 441223, '江屯镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223105, 441223, '螺岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223106, 441223, '北市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223107, 441223, '坑口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223108, 441223, '赤坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223110, 441223, '宾亨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223111, 441223, '五和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223112, 441223, '横山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223113, 441223, '木格镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223114, 441223, '石咀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223115, 441223, '古水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441223116, 441223, '洲仔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224001, 441224, '怀城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224002, 441224, '幸福街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224102, 441224, '坳仔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224103, 441224, '汶朗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224104, 441224, '甘洒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224105, 441224, '凤岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224106, 441224, '洽水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224107, 441224, '梁村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224108, 441224, '大岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224109, 441224, '岗坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224110, 441224, '冷坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224111, 441224, '马宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224112, 441224, '蓝钟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224113, 441224, '永固镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224114, 441224, '诗洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224115, 441224, '桥头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224116, 441224, '中洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224118, 441224, '连麦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441224200, 441224, '下帅壮族瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225001, 441225, '江口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225101, 441225, '江川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225102, 441225, '白垢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225103, 441225, '大洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225104, 441225, '渔涝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225105, 441225, '河儿口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225106, 441225, '连都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225107, 441225, '杏花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225108, 441225, '罗董镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225109, 441225, '长岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225110, 441225, '平凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225111, 441225, '南丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225112, 441225, '大玉口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225113, 441225, '都平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225114, 441225, '金装镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441225115, 441225, '长安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226001, 441226, '德城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226101, 441226, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226102, 441226, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226103, 441226, '官圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226105, 441226, '马圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226106, 441226, '高良镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226107, 441226, '莫村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226109, 441226, '永丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226110, 441226, '武垄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226111, 441226, '播植镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226112, 441226, '凤村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226113, 441226, '悦城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441226114, 441226, '九市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284001, 441284, '城中街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284002, 441284, '东城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284003, 441284, '贞山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284100, 441284, '龙甫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284101, 441284, '地豆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284102, 441284, '威整镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284103, 441284, '罗源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284104, 441284, '迳口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284105, 441284, '大沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284107, 441284, '石狗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284108, 441284, '黄田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284110, 441284, '江谷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284113, 441284, '下茆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284400, 441284, '广东省济广监狱', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441284450, 441284, '肇庆高新技术产业开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302001, 441302, '桥东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302002, 441302, '桥西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302003, 441302, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302004, 441302, '江北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302005, 441302, '龙丰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302006, 441302, '河南岸街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302007, 441302, '惠环街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302008, 441302, '陈江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302009, 441302, '水口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302010, 441302, '小金口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302100, 441302, '汝湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302103, 441302, '三栋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302106, 441302, '潼湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302107, 441302, '沥林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302109, 441302, '马安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302110, 441302, '横沥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302112, 441302, '芦洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302114, 441302, '潼侨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302401, 441302, '东江高新科技产业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302402, 441302, '惠南高新科技产业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441302450, 441302, '惠州市林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303001, 441303, '淡水街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303002, 441303, '秋长街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303003, 441303, '三和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303006, 441303, '大亚湾澳头街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303007, 441303, '大亚湾霞涌街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303008, 441303, '大亚湾西区街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303101, 441303, '沙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303103, 441303, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303104, 441303, '镇隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303108, 441303, '永湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303109, 441303, '良井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441303110, 441303, '平潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322001, 441322, '罗阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322002, 441322, '龙溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322100, 441322, '石坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322102, 441322, '麻陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322103, 441322, '观音阁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322104, 441322, '公庄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322105, 441322, '杨村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322106, 441322, '柏塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322108, 441322, '泰美镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322113, 441322, '湖镇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322115, 441322, '长宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322116, 441322, '福田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322117, 441322, '龙华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322119, 441322, '园洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322121, 441322, '石湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322122, 441322, '杨侨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322123, 441322, '横河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441322570, 441322, '罗浮山管委会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323001, 441323, '平山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323002, 441323, '大岭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323102, 441323, '白花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323103, 441323, '梁化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323104, 441323, '稔山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323105, 441323, '铁涌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323106, 441323, '平海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323109, 441323, '吉隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323110, 441323, '黄埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323113, 441323, '多祝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323115, 441323, '安墩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323118, 441323, '高潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323120, 441323, '宝口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323121, 441323, '白盆珠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323450, 441323, '广东省惠州市国营惠东梁化林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323451, 441323, '广东省惠州市国营惠东九龙峰林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323452, 441323, '惠东县港口海龟湾自然保护区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323453, 441323, '莲花山白盆珠省级自然保护区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323454, 441323, '广东惠东古田省级自然保护区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323455, 441323, '惠东县珠三角产业转移园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441323570, 441323, '巺寮滨海旅游度假区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324001, 441324, '龙城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324002, 441324, '平陵街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324100, 441324, '麻榨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324101, 441324, '永汉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324115, 441324, '龙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324116, 441324, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324117, 441324, '地派镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324118, 441324, '龙华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324119, 441324, '龙江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324200, 441324, '蓝田瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324453, 441324, '龙门县密溪林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441324570, 441324, '南昆山生态旅游区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402004, 441402, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402006, 441402, '金山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402007, 441402, '西郊街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402102, 441402, '三角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402103, 441402, '长沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402105, 441402, '城北镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441402106, 441402, '西阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403001, 441403, '新城办事处街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403101, 441403, '城东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403102, 441403, '石扇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403103, 441403, '梅西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403104, 441403, '大坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403105, 441403, '石坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403109, 441403, '水车镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403110, 441403, '梅南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403113, 441403, '丙村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403115, 441403, '白渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403116, 441403, '松源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403117, 441403, '隆文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403118, 441403, '桃尧镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403126, 441403, '畲江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403129, 441403, '雁洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403130, 441403, '松口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403131, 441403, '南口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403132, 441403, '程江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403133, 441403, '扶大镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441403500, 441403, '梅西水库', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422100, 441422, '湖寮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422103, 441422, '青溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422105, 441422, '三河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422108, 441422, '银江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422109, 441422, '洲瑞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422112, 441422, '光德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422113, 441422, '桃源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422116, 441422, '百侯镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422117, 441422, '大东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422121, 441422, '大麻镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422122, 441422, '枫朗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422123, 441422, '茶阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422124, 441422, '高陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422125, 441422, '西河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422400, 441422, '丰溪林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422401, 441422, '洲瑞林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441422402, 441422, '大埔林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423103, 441423, '北斗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423104, 441423, '汤西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423105, 441423, '汤南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423106, 441423, '埔寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423110, 441423, '建桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423111, 441423, '龙岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423112, 441423, '潘田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423114, 441423, '黄金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423122, 441423, '小胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423123, 441423, '砂田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423124, 441423, '八乡山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423125, 441423, '丰良镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423126, 441423, '潭江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423127, 441423, '汤坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423128, 441423, '留隍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423129, 441423, '大龙华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441423450, 441423, '埔寨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424103, 441424, '转水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424108, 441424, '潭下镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424117, 441424, '郭田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424118, 441424, '双华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424125, 441424, '梅林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424126, 441424, '华阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424130, 441424, '华城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424131, 441424, '周江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424134, 441424, '水寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424135, 441424, '河东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424136, 441424, '岐岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424137, 441424, '长布镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424138, 441424, '横陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424139, 441424, '安流镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424140, 441424, '棉洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441424141, 441424, '龙村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426101, 441426, '石正镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426104, 441426, '八尺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426105, 441426, '差干镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426107, 441426, '河头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426108, 441426, '中行镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426109, 441426, '上举镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426110, 441426, '泗水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426114, 441426, '长田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426115, 441426, '热柘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426117, 441426, '东石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426118, 441426, '仁居镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441426119, 441426, '大柘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427103, 441427, '三圳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427106, 441427, '文福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427107, 441427, '广福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427112, 441427, '新铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427113, 441427, '蓝坊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427114, 441427, '南礤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427115, 441427, '蕉城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427116, 441427, '长潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441427450, 441427, '华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481001, 441481, '兴田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481002, 441481, '福兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481003, 441481, '宁新街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481107, 441481, '永和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481111, 441481, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481115, 441481, '罗浮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481116, 441481, '罗岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481117, 441481, '黄槐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481123, 441481, '龙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481124, 441481, '石马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481128, 441481, '宁中镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481129, 441481, '径南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481130, 441481, '坭陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481131, 441481, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481132, 441481, '黄陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481133, 441481, '合水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481134, 441481, '大坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481135, 441481, '叶塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481136, 441481, '新陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441481137, 441481, '刁坊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502001, 441502, '新港街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502002, 441502, '香洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502003, 441502, '凤山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502004, 441502, '田墘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502005, 441502, '东洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502006, 441502, '遮浪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502007, 441502, '马宫街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502100, 441502, '红草镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502102, 441502, '东涌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441502103, 441502, '捷胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521101, 441521, '梅陇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521102, 441521, '小漠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521103, 441521, '鹅埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521104, 441521, '赤石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521105, 441521, '鮜门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521106, 441521, '联安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521107, 441521, '陶河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521108, 441521, '赤坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521109, 441521, '大湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521110, 441521, '可塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521112, 441521, '黄羌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521113, 441521, '平东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521115, 441521, '海城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521118, 441521, '公平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521119, 441521, '附城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441521120, 441521, '城东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523100, 441523, '河田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523101, 441523, '水唇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523102, 441523, '河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523103, 441523, '新田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523104, 441523, '上护镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523105, 441523, '螺溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523106, 441523, '东坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441523107, 441523, '南万镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581001, 441581, '东海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581002, 441581, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581003, 441581, '城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581101, 441581, '甲子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581102, 441581, '碣石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581103, 441581, '湖东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581104, 441581, '大安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581105, 441581, '博美镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581106, 441581, '内湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581107, 441581, '南塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581108, 441581, '陂洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581109, 441581, '八万镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581110, 441581, '金厢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581111, 441581, '潭西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581112, 441581, '甲东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581115, 441581, '河东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581116, 441581, '上英镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581117, 441581, '桥冲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581118, 441581, '甲西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581119, 441581, '西南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581400, 441581, '华侨管理区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581450, 441581, '铜锣湖农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581451, 441581, '星都经济开发试验区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581452, 441581, '大安农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581453, 441581, '罗经嶂林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581454, 441581, '湖东林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581455, 441581, '东海岸林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581456, 441581, '红岭林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441581457, 441581, '畜牧果林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602001, 441602, '上城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602002, 441602, '新江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602003, 441602, '东埔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602004, 441602, '源西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602005, 441602, '高埔岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602006, 441602, '城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602100, 441602, '源南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441602101, 441602, '埔前镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621100, 441621, '紫城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621102, 441621, '龙窝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621103, 441621, '九和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621104, 441621, '上义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621105, 441621, '蓝塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621106, 441621, '凤安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621107, 441621, '义容镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621108, 441621, '古竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621109, 441621, '临江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621110, 441621, '柏埔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621111, 441621, '黄塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621112, 441621, '敬梓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621114, 441621, '水墩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621115, 441621, '南岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621116, 441621, '苏区镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621117, 441621, '瓦溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621118, 441621, '好义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441621119, 441621, '中坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622100, 441622, '老隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622102, 441622, '义都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622103, 441622, '佗城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622104, 441622, '鹤市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622105, 441622, '黄布镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622106, 441622, '紫市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622107, 441622, '通衢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622109, 441622, '登云镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622110, 441622, '丰稔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622111, 441622, '四都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622112, 441622, '铁场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622114, 441622, '龙母镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622115, 441622, '田心镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622116, 441622, '黎咀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622117, 441622, '黄石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622118, 441622, '赤光镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622119, 441622, '廻龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622120, 441622, '新田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622121, 441622, '车田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622123, 441622, '岩镇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622124, 441622, '麻布岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622125, 441622, '贝岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622126, 441622, '细坳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441622127, 441622, '上坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623100, 441623, '元善镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623101, 441623, '上坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623102, 441623, '内莞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623104, 441623, '陂头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623105, 441623, '溪山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623107, 441623, '隆街镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623108, 441623, '田源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623109, 441623, '油溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623110, 441623, '忠信镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623111, 441623, '高莞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623113, 441623, '大湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623114, 441623, '三角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441623115, 441623, '绣缎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624100, 441624, '阳明镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624101, 441624, '大坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624102, 441624, '长塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624103, 441624, '下车镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624104, 441624, '上陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624105, 441624, '优胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624106, 441624, '贝墩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624107, 441624, '古寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624108, 441624, '彭寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624109, 441624, '合水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624110, 441624, '公白镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624111, 441624, '青州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624112, 441624, '浰源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624113, 441624, '热水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624114, 441624, '东水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624115, 441624, '礼士镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441624116, 441624, '林寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625100, 441625, '仙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625101, 441625, '灯塔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625102, 441625, '骆湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625103, 441625, '船塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625104, 441625, '顺天镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625105, 441625, '上莞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625106, 441625, '曾田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625107, 441625, '柳城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625108, 441625, '义合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625109, 441625, '蓝口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625110, 441625, '黄田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625111, 441625, '叶潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625112, 441625, '黄村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625113, 441625, '康禾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625114, 441625, '锡场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625115, 441625, '新港镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625116, 441625, '双江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625117, 441625, '涧头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625121, 441625, '新回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625122, 441625, '半江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441625200, 441625, '漳溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702001, 441702, '南恩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702002, 441702, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702003, 441702, '城北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702004, 441702, '中洲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702006, 441702, '城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702008, 441702, '岗列街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702009, 441702, '城西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702011, 441702, '白沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702102, 441702, '埠场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702103, 441702, '平冈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702105, 441702, '闸坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702106, 441702, '双捷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441702401, 441702, '阳江林场罗琴分场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704100, 441704, '东城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704101, 441704, '北惯镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704102, 441704, '那龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704103, 441704, '东平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704104, 441704, '雅韶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704105, 441704, '大沟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704106, 441704, '新洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704107, 441704, '合山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704108, 441704, '塘坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704109, 441704, '大八镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704110, 441704, '红丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704400, 441704, '阳江监狱', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704501, 441704, '阳江林场宝山分场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704502, 441704, '阳江林场田畔分场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704503, 441704, '阳东原种场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704504, 441704, '阳东林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441704505, 441704, '阳江林场东岸分场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721100, 441721, '织篢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721101, 441721, '程村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721102, 441721, '塘口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721103, 441721, '上洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721104, 441721, '溪头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721105, 441721, '沙扒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721106, 441721, '儒洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721107, 441721, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441721502, 441721, '阳江林场儒洞分场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781001, 441781, '春城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781002, 441781, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781101, 441781, '河朗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781102, 441781, '松柏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781103, 441781, '石望镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781105, 441781, '春湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781106, 441781, '合水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781107, 441781, '陂面镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781108, 441781, '圭岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781109, 441781, '永宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781110, 441781, '马水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781111, 441781, '岗美镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781112, 441781, '河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781113, 441781, '潭水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781114, 441781, '三甲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781116, 441781, '双窖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781117, 441781, '八甲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781403, 441781, '石录矿区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781404, 441781, '花滩林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781405, 441781, '东湖林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781406, 441781, '河尾山林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781407, 441781, '南山矿', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781408, 441781, '阳春监狱', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441781410, 441781, '硫铁矿', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802006, 441802, '凤城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802007, 441802, '东城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802008, 441802, '洲心街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802009, 441802, '横荷街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802103, 441802, '源潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802105, 441802, '龙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802106, 441802, '石角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802107, 441802, '飞来峡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802400, 441802, '清远市高新技术产业开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441802450, 441802, '清远市国营银盏林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803102, 441803, '太和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803104, 441803, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803105, 441803, '山塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803106, 441803, '三坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803112, 441803, '龙颈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803113, 441803, '禾云镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803117, 441803, '浸潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803118, 441803, '石潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441803450, 441803, '笔架林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821100, 441821, '石角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821101, 441821, '水头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821102, 441821, '汤塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821103, 441821, '龙山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821104, 441821, '高岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821107, 441821, '迳头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821400, 441821, '清远市羊角山林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441821401, 441821, '广东佛冈观音山省级自然保护区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823100, 441823, '青莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823101, 441823, '江英镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823104, 441823, '杜步镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823105, 441823, '七拱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823107, 441823, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823108, 441823, '杨梅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823110, 441823, '大崀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823111, 441823, '小江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823113, 441823, '岭背镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823115, 441823, '黄坌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823116, 441823, '黎埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823119, 441823, '阳城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441823201, 441823, '秤架瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825100, 441825, '永和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825104, 441825, '吉田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825105, 441825, '太保镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825106, 441825, '禾洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825108, 441825, '福堂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825109, 441825, '小三江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825111, 441825, '上帅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825450, 441825, '连山林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441825451, 441825, '禾洞农林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826100, 441826, '三江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826101, 441826, '大麦山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826102, 441826, '寨岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826105, 441826, '三排镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826106, 441826, '涡水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826108, 441826, '大坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441826109, 441826, '香坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881001, 441881, '英城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881101, 441881, '沙口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881102, 441881, '望埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881103, 441881, '横石水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881105, 441881, '桥头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881106, 441881, '青塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881108, 441881, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881109, 441881, '大站镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881110, 441881, '西牛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881111, 441881, '九龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881112, 441881, '浛洸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881114, 441881, '大湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881115, 441881, '石灰铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881116, 441881, '石牯塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881120, 441881, '下石太镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881124, 441881, '波罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881125, 441881, '横石塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881126, 441881, '大洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881129, 441881, '连江口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881130, 441881, '黎溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881131, 441881, '水边镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881136, 441881, '英红镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881137, 441881, '东华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441881138, 441881, '黄花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882100, 441882, '连州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882101, 441882, '星子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882102, 441882, '大路边镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882103, 441882, '龙坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882104, 441882, '西岸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882105, 441882, '保安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882106, 441882, '丰阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882107, 441882, '东陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882109, 441882, '九陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882118, 441882, '西江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882200, 441882, '瑶安瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441882201, 441882, '三水瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900003, 441900, '东城街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900004, 441900, '南城街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900005, 441900, '万江街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900006, 441900, '莞城街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900101, 441900, '石碣镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900102, 441900, '石龙镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900103, 441900, '茶山镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900104, 441900, '石排镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900105, 441900, '企石镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900106, 441900, '横沥镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900107, 441900, '桥头镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900108, 441900, '谢岗镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900109, 441900, '东坑镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900110, 441900, '常平镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900111, 441900, '寮步镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900112, 441900, '樟木头镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900113, 441900, '大朗镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900114, 441900, '黄江镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900115, 441900, '清溪镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900116, 441900, '塘厦镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900117, 441900, '凤岗镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900118, 441900, '大岭山镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900119, 441900, '长安镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900121, 441900, '虎门镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900122, 441900, '厚街镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900123, 441900, '沙田镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900124, 441900, '道滘镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900125, 441900, '洪梅镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900126, 441900, '麻涌镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900127, 441900, '望牛墩镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900128, 441900, '中堂镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900129, 441900, '高埗镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900401, 441900, '松山湖', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900402, 441900, '东莞港', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900403, 441900, '东莞生态园', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (441900404, 441900, '东莞滨海湾新区', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000001, 442000, '石岐街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000002, 442000, '东区街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000003, 442000, '中山港街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000004, 442000, '西区街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000005, 442000, '南区街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000006, 442000, '五桂山街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000007, 442000, '民众街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000008, 442000, '南朗街道', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000101, 442000, '黄圃镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000103, 442000, '东凤镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000105, 442000, '古镇镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000106, 442000, '沙溪镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000107, 442000, '坦洲镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000108, 442000, '港口镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000109, 442000, '三角镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000110, 442000, '横栏镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000111, 442000, '南头镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000112, 442000, '阜沙镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000114, 442000, '三乡镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000115, 442000, '板芙镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000116, 442000, '大涌镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000117, 442000, '神湾镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (442000118, 442000, '小榄镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102007, 445102, '桥东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102008, 445102, '城西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102009, 445102, '凤新街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102010, 445102, '太平街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102011, 445102, '西新街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102100, 445102, '意溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102111, 445102, '磷溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102112, 445102, '铁铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102113, 445102, '官塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102400, 445102, '红山林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102401, 445102, '开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445102402, 445102, '潮州市凤泉湖高新技术产业开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103100, 445103, '古巷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103101, 445103, '登塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103103, 445103, '凤塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103104, 445103, '浮洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103105, 445103, '龙湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103106, 445103, '金石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103107, 445103, '沙溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103108, 445103, '彩塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103109, 445103, '东凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103110, 445103, '庵埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103114, 445103, '江东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103115, 445103, '归湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103116, 445103, '文祠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103117, 445103, '凤凰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103120, 445103, '赤凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103121, 445103, '枫溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103400, 445103, '万峰林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103404, 445103, '大坑苗圃场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103405, 445103, '东山湖农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445103450, 445103, '庵埠经济开发试验区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122100, 445122, '黄冈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122102, 445122, '上饶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122103, 445122, '饶洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122104, 445122, '新丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122106, 445122, '建饶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122107, 445122, '三饶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122108, 445122, '新塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122109, 445122, '汤溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122110, 445122, '浮滨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122112, 445122, '浮山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122113, 445122, '东山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122114, 445122, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122116, 445122, '樟溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122117, 445122, '钱东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122118, 445122, '高堂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122119, 445122, '联饶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122120, 445122, '所城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122121, 445122, '大埕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122122, 445122, '柘林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122123, 445122, '汫洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122124, 445122, '海山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445122400, 445122, '韩江林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202001, 445202, '榕华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202002, 445202, '新兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202003, 445202, '中山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202004, 445202, '西马街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202005, 445202, '东兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202006, 445202, '榕东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202007, 445202, '仙桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202008, 445202, '梅云街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202009, 445202, '东升街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202010, 445202, '东阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202011, 445202, '渔湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202102, 445202, '炮台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202103, 445202, '地都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445202105, 445202, '登岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203001, 445203, '曲溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203002, 445203, '磐东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203102, 445203, '云路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203103, 445203, '玉窖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203104, 445203, '锡场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203105, 445203, '新亨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203106, 445203, '玉湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203107, 445203, '埔田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203108, 445203, '霖磐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203109, 445203, '月城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203110, 445203, '白塔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203111, 445203, '龙尾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203112, 445203, '桂岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203401, 445203, '东径茶场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203402, 445203, '坪上农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203403, 445203, '揭阳高新技术产业开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203404, 445203, '卅岭农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203405, 445203, '蓝城区工业园区管理处', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445203406, 445203, '珠海(揭阳)产业转移工业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222001, 445222, '河婆街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222102, 445222, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222103, 445222, '南山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222104, 445222, '五经富镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222105, 445222, '京溪园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222106, 445222, '灰寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222107, 445222, '塔头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222108, 445222, '东园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222109, 445222, '凤江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222110, 445222, '棉湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222111, 445222, '金和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222112, 445222, '大溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222113, 445222, '钱坑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222114, 445222, '坪上镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222115, 445222, '五云镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222116, 445222, '上砂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222201, 445222, '良田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222401, 445222, '北山农林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222402, 445222, '果林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222403, 445222, '油桐林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222404, 445222, '高田农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222405, 445222, '河輋农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445222406, 445222, '县苗圃场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224100, 445224, '惠城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224102, 445224, '华湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224103, 445224, '仙庵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224104, 445224, '靖海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224105, 445224, '周田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224106, 445224, '前詹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224107, 445224, '神泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224108, 445224, '东陇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224109, 445224, '岐石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224110, 445224, '隆江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224111, 445224, '溪西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224112, 445224, '鳌江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224113, 445224, '东港镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224114, 445224, '葵潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224115, 445224, '侨园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224401, 445224, '东埔农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224403, 445224, '葵潭农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224404, 445224, '青坑林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445224450, 445224, '揭阳(惠来)沿海经济开发试验区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281001, 445281, '流沙东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281002, 445281, '流沙南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281003, 445281, '流沙西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281004, 445281, '流沙北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281005, 445281, '池尾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281006, 445281, '燎原街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281007, 445281, '大南山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281102, 445281, '赤岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281103, 445281, '大坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281104, 445281, '洪阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281105, 445281, '南溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281106, 445281, '广太镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281107, 445281, '麒麟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281108, 445281, '南径镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281109, 445281, '占陇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281110, 445281, '军埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281111, 445281, '下架山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281113, 445281, '高埔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281114, 445281, '云落镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281115, 445281, '大坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281116, 445281, '船埔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281117, 445281, '梅林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281119, 445281, '里湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281121, 445281, '梅塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281123, 445281, '普侨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281201, 445281, '后溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281401, 445281, '大池农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281402, 445281, '马鞍山农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281403, 445281, '大坪农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281405, 445281, '三坑农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281406, 445281, '乌石农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281407, 445281, '科技工业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445281408, 445281, '英歌山工业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302001, 445302, '云城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302002, 445302, '高峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302003, 445302, '河口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302004, 445302, '安塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302102, 445302, '腰古镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302103, 445302, '思劳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302105, 445302, '前锋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445302106, 445302, '南盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303100, 445303, '六都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303101, 445303, '高村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303102, 445303, '白石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303103, 445303, '镇安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303104, 445303, '富林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303105, 445303, '石城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445303106, 445303, '都杨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321100, 445321, '新城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321101, 445321, '车岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321103, 445321, '水台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321104, 445321, '稔村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321105, 445321, '东成镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321107, 445321, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321108, 445321, '里洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321110, 445321, '大江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321112, 445321, '天堂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321113, 445321, '河头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321114, 445321, '簕竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321115, 445321, '六祖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321501, 445321, '广东省西江林业局良洞迳林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321502, 445321, '云浮市国有水台林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445321503, 445321, '国营新兴县岩头林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322100, 445322, '都城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322101, 445322, '平台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322102, 445322, '桂圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322104, 445322, '通门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322105, 445322, '建城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322106, 445322, '宝珠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322108, 445322, '大方镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322110, 445322, '千官镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322111, 445322, '大湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322112, 445322, '河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322113, 445322, '宋桂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322114, 445322, '东坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322115, 445322, '连滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322116, 445322, '历洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322117, 445322, '南江口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322400, 445322, '西江林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322401, 445322, '通门林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322402, 445322, '大历林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445322403, 445322, '同乐林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381001, 445381, '罗城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381002, 445381, '素龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381003, 445381, '附城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381004, 445381, '双东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381100, 445381, '罗镜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381101, 445381, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381102, 445381, '分界镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381104, 445381, '罗平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381105, 445381, '船步镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381106, 445381, '满(lang)塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381107, 445381, '苹塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381108, 445381, '金鸡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381109, 445381, '围底镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381110, 445381, '华石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381111, 445381, '榃滨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381113, 445381, '黎少镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381114, 445381, '生江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381115, 445381, '连州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381116, 445381, '泗纶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381118, 445381, '加益镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381119, 445381, '龙湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (445381400, 445381, '罗平农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450102001, 450102, '民生街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450102002, 450102, '朝阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450102003, 450102, '兴东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450102101, 450102, '三塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450102102, 450102, '五塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450102104, 450102, '昆仑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103001, 450103, '新竹街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103002, 450103, '中山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103003, 450103, '建政街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103004, 450103, '南湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103005, 450103, '津头街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103100, 450103, '刘圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103101, 450103, '南阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103102, 450103, '伶俐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103103, 450103, '长塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103400, 450103, '仙葫经济开发区管理委员会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450103451, 450103, '青秀山管理委员会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105001, 450105, '福建园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105002, 450105, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105003, 450105, '沙井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105004, 450105, '那洪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105005, 450105, '金凯街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105102, 450105, '吴圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105103, 450105, '苏圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105104, 450105, '延安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105105, 450105, '江西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105450, 450105, '经济技术开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450105451, 450105, '明阳工业园区管委会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107001, 450107, '衡阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107002, 450107, '北湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107003, 450107, '西乡塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107004, 450107, '安吉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107005, 450107, '华强街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107006, 450107, '新阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107007, 450107, '上尧街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107008, 450107, '安宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107009, 450107, '石埠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107010, 450107, '心圩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107100, 450107, '金陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107101, 450107, '双定镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107105, 450107, '坛洛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107450, 450107, '那龙矿务局', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450107454, 450107, '高新技术开发区管委会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108001, 450108, '大沙田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108002, 450108, '玉洞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108100, 450108, '良庆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108101, 450108, '那马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108102, 450108, '那陈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108103, 450108, '大塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108104, 450108, '南晓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450108452, 450108, '良庆经济开发区管委会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450109100, 450109, '蒲庙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450109101, 450109, '那楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450109102, 450109, '新江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450109103, 450109, '百济镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450109104, 450109, '中和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110100, 450110, '城厢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110102, 450110, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110103, 450110, '双桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110104, 450110, '宁武镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110105, 450110, '锣圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110106, 450110, '仙湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110107, 450110, '府城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110108, 450110, '陆斡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110109, 450110, '两江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110110, 450110, '罗波镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110111, 450110, '灵马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110112, 450110, '甘圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110113, 450110, '马头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450110451, 450110, '南宁华侨投资区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123100, 450123, '城厢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123101, 450123, '南圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123102, 450123, '雁江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123103, 450123, '那桐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123104, 450123, '乔建镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123105, 450123, '丁当镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123201, 450123, '古潭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123203, 450123, '都结乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123204, 450123, '布泉乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123205, 450123, '屏山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450123450, 450123, '隆安华侨管理区管理委员会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124100, 450124, '白山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124101, 450124, '百龙滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124102, 450124, '林圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124103, 450124, '古零镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124104, 450124, '金钗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124105, 450124, '周鹿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124106, 450124, '永州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124200, 450124, '乔利乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124201, 450124, '加方乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124202, 450124, '古寨瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450124203, 450124, '里当瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125100, 450125, '大丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125101, 450125, '明亮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125102, 450125, '巷贤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125103, 450125, '白圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125104, 450125, '三里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125105, 450125, '乔贤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125106, 450125, '西燕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125200, 450125, '澄泰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125202, 450125, '木山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125203, 450125, '塘红乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450125205, 450125, '镇圩瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126100, 450126, '宾州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126101, 450126, '黎塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126102, 450126, '甘棠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126103, 450126, '思陇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126104, 450126, '新桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126105, 450126, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126106, 450126, '邹圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126107, 450126, '大桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126108, 450126, '武陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126109, 450126, '中华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126110, 450126, '古辣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126111, 450126, '露圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126112, 450126, '王灵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126113, 450126, '和吉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126114, 450126, '洋桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126115, 450126, '陈平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450126451, 450126, '廖平农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181100, 450181, '横州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181101, 450181, '百合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181102, 450181, '那阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181103, 450181, '南乡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181104, 450181, '新福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181105, 450181, '莲塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181106, 450181, '平马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181107, 450181, '峦城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181108, 450181, '六景镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181110, 450181, '石塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181112, 450181, '陶圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181113, 450181, '校椅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181114, 450181, '云表镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181115, 450181, '马岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181118, 450181, '马山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181119, 450181, '平朗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181204, 450181, '镇龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450181400, 450181, '南宁六景工业园区管委会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202001, 450202, '城中街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202002, 450202, '公园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202003, 450202, '中南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202004, 450202, '沿江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202005, 450202, '潭中街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202006, 450202, '河东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450202007, 450202, '静兰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203001, 450203, '天马街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203002, 450203, '驾鹤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203003, 450203, '箭盘山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203004, 450203, '五里亭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203005, 450203, '荣军街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203006, 450203, '白莲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203007, 450203, '麒麟街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203008, 450203, '阳和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203100, 450203, '雒容镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203101, 450203, '洛埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203102, 450203, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450203103, 450203, '里雍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204001, 450204, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204002, 450204, '南站街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204003, 450204, '鹅山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204004, 450204, '柳南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204005, 450204, '柳石街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204006, 450204, '银山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204007, 450204, '潭西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204008, 450204, '南环街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204100, 450204, '太阳村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204101, 450204, '洛满镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450204102, 450204, '流山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205001, 450205, '解放街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205002, 450205, '雅儒街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205003, 450205, '胜利街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205004, 450205, '雀儿山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205005, 450205, '钢城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205006, 450205, '锦绣街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205007, 450205, '白露街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205008, 450205, '跃进街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205009, 450205, '柳长街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205100, 450205, '石碑坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205101, 450205, '沙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450205102, 450205, '长塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206100, 450206, '拉堡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206102, 450206, '百朋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206103, 450206, '成团镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206106, 450206, '三都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206107, 450206, '里高镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206108, 450206, '进德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206109, 450206, '穿山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450206110, 450206, '土博镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222100, 450222, '大埔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222101, 450222, '龙头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222102, 450222, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222103, 450222, '沙埔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222104, 450222, '东泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222105, 450222, '凤山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222106, 450222, '六塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222107, 450222, '冲脉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222108, 450222, '寨隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222109, 450222, '马山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222200, 450222, '古砦仫佬族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450222202, 450222, '社冲乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223100, 450223, '鹿寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223102, 450223, '中渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223103, 450223, '寨沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223104, 450223, '平山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223105, 450223, '黄冕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223106, 450223, '四排镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223201, 450223, '江口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223202, 450223, '导江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450223203, 450223, '拉沟乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224100, 450224, '长安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224101, 450224, '浮石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224102, 450224, '泗顶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224103, 450224, '板榄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224104, 450224, '大将镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224105, 450224, '大良镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224200, 450224, '雅瑶乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224201, 450224, '大坡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224202, 450224, '东起乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224203, 450224, '沙子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224204, 450224, '桥板乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450224205, 450224, '潭头乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225100, 450225, '融水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225101, 450225, '和睦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225102, 450225, '三防镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225103, 450225, '怀宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225104, 450225, '洞头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225105, 450225, '大浪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225106, 450225, '永乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225201, 450225, '四荣乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225202, 450225, '香粉乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225203, 450225, '安太乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225205, 450225, '汪洞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225206, 450225, '同练瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225207, 450225, '滚贝侗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225208, 450225, '杆洞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225209, 450225, '安陲乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225211, 450225, '白云乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225212, 450225, '红水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225213, 450225, '拱洞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225214, 450225, '良寨乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450225215, 450225, '大年乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226100, 450226, '古宜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226101, 450226, '斗江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226102, 450226, '丹洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226103, 450226, '八江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226104, 450226, '林溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226105, 450226, '独峒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226203, 450226, '同乐苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226204, 450226, '梅林乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226205, 450226, '富禄苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226206, 450226, '洋溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226207, 450226, '良口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226208, 450226, '老堡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226209, 450226, '高基瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226210, 450226, '和平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450226211, 450226, '程村乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450302001, 450302, '秀峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450302002, 450302, '丽君街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450302003, 450302, '甲山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450303001, 450303, '叠彩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450303002, 450303, '北门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450303200, 450303, '大河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450304001, 450304, '南门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450304002, 450304, '象山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450304003, 450304, '平山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450304200, 450304, '二塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450305001, 450305, '七星区街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450305002, 450305, '东江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450305003, 450305, '穿山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450305004, 450305, '漓东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450305200, 450305, '朝阳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450305400, 450305, '桂林华侨旅游经济区管理委员会', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450311001, 450311, '良丰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450311100, 450311, '雁山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450311101, 450311, '柘木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450311200, 450311, '大埠乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450311201, 450311, '草坪回族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312100, 450312, '临桂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312101, 450312, '六塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312102, 450312, '会仙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312103, 450312, '两江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312104, 450312, '五通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312105, 450312, '四塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312106, 450312, '南边山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312107, 450312, '中庸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312108, 450312, '茶洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312204, 450312, '宛田瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450312205, 450312, '黄沙瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321100, 450321, '阳朔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321101, 450321, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321102, 450321, '福利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321103, 450321, '兴坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321104, 450321, '葡萄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321105, 450321, '高田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321200, 450321, '金宝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321201, 450321, '普益乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450321202, 450321, '杨堤乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323100, 450323, '灵川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323101, 450323, '大圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323102, 450323, '定江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323103, 450323, '三街镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323104, 450323, '潭下镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323106, 450323, '九屋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323107, 450323, '灵田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323200, 450323, '潮田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323201, 450323, '大境瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323202, 450323, '海洋乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323206, 450323, '兰田瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450323207, 450323, '公平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324100, 450324, '全州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324101, 450324, '黄沙河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324102, 450324, '庙头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324103, 450324, '文桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324104, 450324, '大西江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324105, 450324, '龙水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324106, 450324, '才湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324107, 450324, '绍水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324108, 450324, '石塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324109, 450324, '咸水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324110, 450324, '凤凰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324111, 450324, '安和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324112, 450324, '两河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324113, 450324, '枧塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324114, 450324, '永岁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324204, 450324, '蕉江瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324207, 450324, '白宝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450324208, 450324, '东山瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325100, 450325, '兴安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325101, 450325, '湘漓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325102, 450325, '界首镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325103, 450325, '高尚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325104, 450325, '严关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325105, 450325, '溶江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325200, 450325, '漠川乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325201, 450325, '白石乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325202, 450325, '崔家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450325203, 450325, '华江瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326100, 450326, '永福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326101, 450326, '罗锦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326102, 450326, '百寿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326103, 450326, '苏桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326104, 450326, '三皇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326105, 450326, '堡里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326202, 450326, '广福乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326204, 450326, '永安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450326205, 450326, '龙江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327100, 450327, '灌阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327101, 450327, '黄关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327102, 450327, '文市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327103, 450327, '新街镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327104, 450327, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327105, 450327, '水车镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327200, 450327, '洞井瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327201, 450327, '观音阁乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450327202, 450327, '西山瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328100, 450328, '龙胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328101, 450328, '瓢里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328102, 450328, '三门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328103, 450328, '龙脊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328104, 450328, '平等镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328105, 450328, '乐江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328201, 450328, '泗水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328202, 450328, '江底乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328203, 450328, '马堤乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450328204, 450328, '伟江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329100, 450329, '资源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329101, 450329, '中峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329102, 450329, '梅溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329202, 450329, '瓜里乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329203, 450329, '车田苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329204, 450329, '两水苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450329205, 450329, '河口瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330100, 450330, '平乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330101, 450330, '二塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330102, 450330, '沙子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330103, 450330, '同安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330104, 450330, '张家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330105, 450330, '源头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330200, 450330, '阳安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330201, 450330, '青龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330202, 450330, '桥亭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450330203, 450330, '大发瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332100, 450332, '恭城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332101, 450332, '栗木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332102, 450332, '莲花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332103, 450332, '嘉会镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332104, 450332, '西岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332105, 450332, '平安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332201, 450332, '三江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332204, 450332, '观音乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450332205, 450332, '龙虎乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381100, 450381, '荔城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381101, 450381, '东昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381102, 450381, '新坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381103, 450381, '杜莫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381104, 450381, '青山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381105, 450381, '修仁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381106, 450381, '大塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381107, 450381, '花箦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381108, 450381, '双江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381109, 450381, '马岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381200, 450381, '龙怀乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381201, 450381, '茶城乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450381202, 450381, '蒲芦瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403005, 450403, '角嘴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403006, 450403, '东兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403007, 450403, '富民街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403008, 450403, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403009, 450403, '城北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403101, 450403, '城东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403103, 450403, '龙湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450403104, 450403, '夏郢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450405001, 450405, '大塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450405002, 450405, '兴龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450405003, 450405, '红岭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450405101, 450405, '长洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450405102, 450405, '倒水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450406100, 450406, '龙圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450406101, 450406, '大坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450406102, 450406, '广平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450406103, 450406, '新地镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421100, 450421, '石桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421101, 450421, '沙头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421102, 450421, '梨埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421105, 450421, '岭脚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421108, 450421, '京南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421109, 450421, '狮寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421110, 450421, '旺甫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421112, 450421, '六堡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450421114, 450421, '木双镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422100, 450422, '藤州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422103, 450422, '塘步镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422104, 450422, '埌南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422105, 450422, '同心镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422106, 450422, '金鸡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422107, 450422, '新庆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422108, 450422, '象棋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422109, 450422, '岭景镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422110, 450422, '天平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422111, 450422, '蒙江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422112, 450422, '和平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422113, 450422, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422114, 450422, '古龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422115, 450422, '东荣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422116, 450422, '大黎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422200, 450422, '平福乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450422201, 450422, '宁康乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423100, 450423, '蒙山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423101, 450423, '西河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423102, 450423, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423103, 450423, '文圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423104, 450423, '黄村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423105, 450423, '陈塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423200, 450423, '汉豪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423201, 450423, '长坪瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450423202, 450423, '夏宜瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481100, 450481, '岑城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481102, 450481, '马路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481103, 450481, '南渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481105, 450481, '水汶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481106, 450481, '大隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481107, 450481, '梨木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481108, 450481, '大业镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481109, 450481, '筋竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481110, 450481, '诚谏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481111, 450481, '归义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481112, 450481, '糯垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481113, 450481, '安平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481114, 450481, '三堡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450481115, 450481, '波塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502001, 450502, '中街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502002, 450502, '东街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502003, 450502, '西街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502004, 450502, '海角街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502005, 450502, '地角街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502006, 450502, '高德街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502007, 450502, '驿马街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450502100, 450502, '涠洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450503100, 450503, '福成镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450503101, 450503, '银滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450503102, 450503, '平阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450503103, 450503, '侨港镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450512100, 450512, '南康镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450512101, 450512, '营盘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450512102, 450512, '兴港镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521100, 450521, '廉州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521101, 450521, '党江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521102, 450521, '西场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521103, 450521, '沙岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521104, 450521, '乌家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521105, 450521, '闸口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521106, 450521, '公馆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521107, 450521, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521108, 450521, '山口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521109, 450521, '沙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521110, 450521, '石湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521111, 450521, '石康镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521112, 450521, '常乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521113, 450521, '星岛湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450521200, 450521, '曲樟乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450602001, 450602, '渔州坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450602002, 450602, '白沙万街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450602003, 450602, '沙潭江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450602004, 450602, '王府街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450602100, 450602, '企沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450602101, 450602, '光坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603001, 450603, '水营街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603002, 450603, '珠河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603003, 450603, '文昌街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603101, 450603, '大菉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603102, 450603, '华石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603103, 450603, '那梭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603104, 450603, '那良镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603105, 450603, '峒中镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603106, 450603, '江山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603107, 450603, '茅岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603108, 450603, '扶隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603203, 450603, '滩营乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603209, 450603, '十万山瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450603450, 450603, '小峰经济作物场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621100, 450621, '思阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621101, 450621, '在妙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621102, 450621, '华兰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621103, 450621, '叫安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621203, 450621, '南屏瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621204, 450621, '平福乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621205, 450621, '那琴乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450621206, 450621, '公正乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450681100, 450681, '东兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450681101, 450681, '江平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450681102, 450681, '马路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702001, 450702, '向阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702002, 450702, '水东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702003, 450702, '文峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702004, 450702, '南珠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702005, 450702, '尖山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702100, 450702, '沙埠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702101, 450702, '康熙岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702102, 450702, '黄屋屯镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702104, 450702, '大番坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702105, 450702, '龙门港镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702107, 450702, '久隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702108, 450702, '东场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702109, 450702, '那丽镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702110, 450702, '那彭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702111, 450702, '那思镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702112, 450702, '犀牛脚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702400, 450702, '丽光华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702401, 450702, '钦州港经济技术开发区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702402, 450702, '三娘湾旅游管理区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702403, 450702, '广西钦州保税港区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450702404, 450702, '中马钦州产业园区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703001, 450703, '长田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703002, 450703, '鸿亭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703003, 450703, '子材街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703100, 450703, '大垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703101, 450703, '平吉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703102, 450703, '青塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703103, 450703, '小董镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703104, 450703, '板城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703105, 450703, '那蒙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703106, 450703, '长滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703107, 450703, '新棠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703108, 450703, '大直镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703109, 450703, '大寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450703110, 450703, '贵台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721001, 450721, '灵城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721002, 450721, '三海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721101, 450721, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721102, 450721, '丰塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721103, 450721, '平山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721104, 450721, '石塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721105, 450721, '佛子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721106, 450721, '平南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721107, 450721, '烟墩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721108, 450721, '檀圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721109, 450721, '那隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721110, 450721, '三隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721111, 450721, '陆屋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721112, 450721, '旧州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721113, 450721, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721114, 450721, '沙坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721115, 450721, '武利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721116, 450721, '文利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450721117, 450721, '伯劳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722001, 450722, '小江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722002, 450722, '江城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722101, 450722, '泉水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722102, 450722, '石埇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722103, 450722, '安石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722104, 450722, '张黄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722105, 450722, '大成镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722106, 450722, '白石水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722107, 450722, '北通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722108, 450722, '三合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722109, 450722, '龙门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722110, 450722, '福旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722111, 450722, '寨圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722112, 450722, '乐民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722113, 450722, '六硍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722114, 450722, '平睦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450722115, 450722, '官垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802001, 450802, '贵城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802002, 450802, '港城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802101, 450802, '大圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802102, 450802, '庆丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802103, 450802, '根竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802104, 450802, '武乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802200, 450802, '奇石乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450802201, 450802, '中里乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803001, 450803, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803002, 450803, '八塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803100, 450803, '桥圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803101, 450803, '木格镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803102, 450803, '木梓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803103, 450803, '湛江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803104, 450803, '东津镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803106, 450803, '新塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450803107, 450803, '瓦塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804001, 450804, '覃塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804101, 450804, '东龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804102, 450804, '三里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804103, 450804, '黄练镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804104, 450804, '石卡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804105, 450804, '五里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804106, 450804, '樟木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804107, 450804, '蒙公镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804200, 450804, '山北乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450804204, 450804, '大岭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821001, 450821, '平南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821002, 450821, '上渡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821101, 450821, '平山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821102, 450821, '寺面镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821103, 450821, '六陈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821104, 450821, '大新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821105, 450821, '大安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821106, 450821, '武林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821107, 450821, '大坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821108, 450821, '大洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821109, 450821, '镇隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821112, 450821, '安怀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821113, 450821, '丹竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821114, 450821, '官成镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821115, 450821, '思旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821116, 450821, '大鹏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821117, 450821, '同和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821118, 450821, '东华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821204, 450821, '思界乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821205, 450821, '国安瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450821206, 450821, '马练瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881101, 450881, '木乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881102, 450881, '木圭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881103, 450881, '石咀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881104, 450881, '油麻镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881105, 450881, '社坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881106, 450881, '罗秀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881107, 450881, '麻垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881108, 450881, '社步镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881109, 450881, '下湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881110, 450881, '木根镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881111, 450881, '中沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881113, 450881, '大洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881114, 450881, '大湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881115, 450881, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881116, 450881, '石龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881117, 450881, '蒙圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881118, 450881, '西山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881119, 450881, '南木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881120, 450881, '江口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881121, 450881, '金田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881122, 450881, '紫荆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881200, 450881, '马皮乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881202, 450881, '寻旺乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881203, 450881, '罗播乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881204, 450881, '厚禄乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450881206, 450881, '垌心乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902001, 450902, '玉城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902002, 450902, '南江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902003, 450902, '城西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902004, 450902, '城北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902005, 450902, '名山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902100, 450902, '大塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902105, 450902, '茂林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902106, 450902, '仁东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450902113, 450902, '仁厚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450903107, 450903, '福绵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450903108, 450903, '成均镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450903109, 450903, '樟木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450903110, 450903, '新桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450903111, 450903, '沙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450903112, 450903, '石和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921100, 450921, '容州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921102, 450921, '杨梅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921103, 450921, '灵山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921104, 450921, '六王镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921105, 450921, '黎村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921106, 450921, '杨村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921107, 450921, '县底镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921108, 450921, '自良镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921109, 450921, '松山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921110, 450921, '罗江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921111, 450921, '石头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921112, 450921, '石寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921113, 450921, '十里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921114, 450921, '容西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450921115, 450921, '浪水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922101, 450922, '温泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922102, 450922, '米场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922103, 450922, '马坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922104, 450922, '珊罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922105, 450922, '平乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922106, 450922, '沙坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922107, 450922, '大桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922108, 450922, '乌石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922109, 450922, '良田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922110, 450922, '清湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922111, 450922, '古城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922112, 450922, '沙湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922113, 450922, '横山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450922114, 450922, '滩面镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923100, 450923, '博白镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923102, 450923, '双凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923105, 450923, '顿谷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923106, 450923, '水鸣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923107, 450923, '那林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923108, 450923, '江宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923109, 450923, '三滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923110, 450923, '黄凌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923111, 450923, '亚山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923112, 450923, '旺茂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923114, 450923, '东平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923115, 450923, '沙河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923116, 450923, '菱角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923117, 450923, '新田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923118, 450923, '凤山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923119, 450923, '宁潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923120, 450923, '文地镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923121, 450923, '英桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923122, 450923, '那卜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923123, 450923, '大垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923124, 450923, '沙陂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923125, 450923, '双旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923126, 450923, '松旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923127, 450923, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923128, 450923, '大坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923129, 450923, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923130, 450923, '径口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450923131, 450923, '浪平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924100, 450924, '石南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924101, 450924, '大平山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924102, 450924, '葵阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924103, 450924, '城隍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924104, 450924, '山心镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924105, 450924, '沙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924106, 450924, '蒲塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924107, 450924, '北市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924108, 450924, '龙安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924109, 450924, '高峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924110, 450924, '小平山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924111, 450924, '卖酒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450924112, 450924, '洛阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981001, 450981, '陵城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981002, 450981, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981003, 450981, '城北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981100, 450981, '北流镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981101, 450981, '新荣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981102, 450981, '民安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981103, 450981, '山围镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981104, 450981, '民乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981105, 450981, '西埌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981106, 450981, '新圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981107, 450981, '大里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981108, 450981, '塘岸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981109, 450981, '清水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981110, 450981, '隆盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981111, 450981, '大坡外镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981112, 450981, '六麻镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981113, 450981, '新丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981114, 450981, '沙垌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981115, 450981, '平政镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981116, 450981, '白马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981117, 450981, '大伦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981118, 450981, '扶新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981119, 450981, '六靖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981120, 450981, '石窝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (450981121, 450981, '清湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002001, 451002, '百城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002002, 451002, '龙景街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002101, 451002, '阳圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002102, 451002, '四塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002103, 451002, '龙川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002104, 451002, '永乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002202, 451002, '汪甸瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002203, 451002, '大楞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451002204, 451002, '泮水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003100, 451003, '田州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003101, 451003, '那坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003102, 451003, '坡洪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003103, 451003, '那满镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003104, 451003, '百育镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003105, 451003, '玉凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003106, 451003, '头塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003107, 451003, '五村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003108, 451003, '洞靖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451003204, 451003, '巴别乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022100, 451022, '平马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022101, 451022, '祥周镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022103, 451022, '林逢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022105, 451022, '思林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022106, 451022, '印茶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022107, 451022, '江城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022108, 451022, '朔良镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022109, 451022, '义圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022110, 451022, '那拔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451022201, 451022, '作登瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024100, 451024, '城关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024101, 451024, '足荣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024102, 451024, '隆桑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024103, 451024, '敬德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024104, 451024, '马隘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024105, 451024, '东凌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024106, 451024, '那甲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024200, 451024, '都安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024203, 451024, '荣华乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024204, 451024, '燕峒乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024205, 451024, '龙光乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024206, 451024, '巴头乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451024450, 451024, '德保铝业', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026100, 451026, '城厢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026101, 451026, '平孟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026102, 451026, '龙合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026200, 451026, '坡荷乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026203, 451026, '德隆乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026204, 451026, '百合乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026205, 451026, '百南乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026207, 451026, '百省乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451026208, 451026, '百都乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027100, 451027, '泗城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027101, 451027, '逻楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027102, 451027, '加尤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027103, 451027, '下甲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027201, 451027, '伶站瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027202, 451027, '朝里瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027203, 451027, '沙里瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451027205, 451027, '玉洪瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028100, 451028, '同乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028101, 451028, '甘田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028102, 451028, '新化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028103, 451028, '花坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028201, 451028, '逻沙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028203, 451028, '逻西乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028204, 451028, '幼平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451028205, 451028, '雅长乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029100, 451029, '乐里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029101, 451029, '旧州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029102, 451029, '定安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029103, 451029, '六隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029104, 451029, '浪平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029200, 451029, '潞城瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029201, 451029, '利周瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029202, 451029, '平塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029204, 451029, '八桂瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029205, 451029, '八渡瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029206, 451029, '那比乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029207, 451029, '高龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029208, 451029, '百乐乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451029209, 451029, '者苗乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030100, 451030, '八达镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030101, 451030, '古障镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030102, 451030, '那劳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030103, 451030, '马蚌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030203, 451030, '普合苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030204, 451030, '西平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030206, 451030, '那佐苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451030208, 451030, '足别瑶族苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031100, 451031, '新州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031101, 451031, '桠杈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031102, 451031, '天生桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031103, 451031, '平班镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031104, 451031, '德峨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031105, 451031, '隆或镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031200, 451031, '沙梨乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031203, 451031, '者保乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031204, 451031, '者浪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031205, 451031, '革步乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031206, 451031, '金钟山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031208, 451031, '猪场乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031210, 451031, '蛇场乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031211, 451031, '克长乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031213, 451031, '岩茶乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451031215, 451031, '介廷乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081100, 451081, '新靖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081101, 451081, '化峒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081102, 451081, '湖润镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081103, 451081, '安德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081104, 451081, '龙临镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081105, 451081, '渠洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081106, 451081, '岳圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081107, 451081, '龙邦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081108, 451081, '禄峒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081109, 451081, '武平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081110, 451081, '地州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081200, 451081, '同德乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081201, 451081, '壬庄乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081202, 451081, '安宁乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081206, 451081, '南坡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081207, 451081, '吞盘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081209, 451081, '果乐乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081211, 451081, '新甲乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451081215, 451081, '魁圩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082100, 451082, '马头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082101, 451082, '新安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082102, 451082, '果化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082103, 451082, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082104, 451082, '坡造镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082105, 451082, '四塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082106, 451082, '旧城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082107, 451082, '榜圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082108, 451082, '凤梧镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082202, 451082, '海城乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082205, 451082, '黎明乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082206, 451082, '同老乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451082450, 451082, '平果铝', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102001, 451102, '八步街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102002, 451102, '城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102003, 451102, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102101, 451102, '贺街镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102102, 451102, '步头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102103, 451102, '莲塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102104, 451102, '大宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102105, 451102, '南乡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102106, 451102, '桂岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102107, 451102, '开山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102109, 451102, '里松镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102114, 451102, '信都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102115, 451102, '灵峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102116, 451102, '仁义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102117, 451102, '铺门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451102200, 451102, '黄洞瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103001, 451103, '西湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103101, 451103, '黄田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103102, 451103, '鹅塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103103, 451103, '沙田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103104, 451103, '公会镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103105, 451103, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103106, 451103, '望高镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103107, 451103, '羊头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451103201, 451103, '大平瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121100, 451121, '昭平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121101, 451121, '文竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121102, 451121, '黄姚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121103, 451121, '富罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121104, 451121, '北陀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121105, 451121, '马江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121107, 451121, '五将镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121108, 451121, '走马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121109, 451121, '樟木林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121201, 451121, '仙回瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121206, 451121, '凤凰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451121208, 451121, '木格乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122100, 451122, '钟山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122104, 451122, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122105, 451122, '石龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122106, 451122, '凤翔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122107, 451122, '珊瑚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122108, 451122, '同古镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122109, 451122, '公安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122111, 451122, '清塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122112, 451122, '燕塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122113, 451122, '红花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122200, 451122, '花山瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451122201, 451122, '两安瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123100, 451123, '富阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123101, 451123, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123102, 451123, '莲山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123103, 451123, '古城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123104, 451123, '福利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123105, 451123, '麦岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123106, 451123, '葛坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123107, 451123, '城北镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123108, 451123, '朝东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123200, 451123, '新华乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123201, 451123, '石家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451123203, 451123, '柳家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202001, 451202, '金城江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202101, 451202, '东江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202102, 451202, '六圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202103, 451202, '六甲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202104, 451202, '河池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202105, 451202, '拔贡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202106, 451202, '九圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202107, 451202, '五圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202200, 451202, '白土乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202203, 451202, '侧岭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202204, 451202, '保平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451202205, 451202, '长老乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203100, 451203, '庆远镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203101, 451203, '三岔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203102, 451203, '洛西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203103, 451203, '怀远镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203104, 451203, '德胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203105, 451203, '石别镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203106, 451203, '北山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203107, 451203, '刘三姐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203108, 451203, '洛东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203200, 451203, '祥贝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203203, 451203, '屏南乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203207, 451203, '福龙瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203208, 451203, '北牙瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203210, 451203, '同德乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203211, 451203, '安马乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451203213, 451203, '龙头乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221100, 451221, '城关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221101, 451221, '大厂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221102, 451221, '车河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221103, 451221, '芒场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221104, 451221, '六寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221105, 451221, '月里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221106, 451221, '吾隘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221107, 451221, '罗富镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221202, 451221, '中堡苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221203, 451221, '八圩瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451221204, 451221, '里湖瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222100, 451222, '六排镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222101, 451222, '向阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222200, 451222, '岜暮乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222201, 451222, '八腊瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222203, 451222, '纳直乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222204, 451222, '更新乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222206, 451222, '下老乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222207, 451222, '坡结乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451222208, 451222, '三堡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223100, 451223, '凤城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223101, 451223, '长洲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223102, 451223, '三门海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223201, 451223, '砦牙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223203, 451223, '乔音乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223205, 451223, '金牙瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223207, 451223, '中亭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223208, 451223, '平乐瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451223209, 451223, '江洲瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224100, 451224, '东兰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224101, 451224, '隘洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224102, 451224, '长乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224103, 451224, '三石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224104, 451224, '武篆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224105, 451224, '长江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224200, 451224, '泗孟乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224201, 451224, '兰木乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224203, 451224, '巴畴乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224204, 451224, '金谷乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224205, 451224, '三弄瑶族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224206, 451224, '大同乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224207, 451224, '花香乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451224208, 451224, '切学乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225100, 451225, '东门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225101, 451225, '龙岸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225102, 451225, '黄金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225103, 451225, '小长安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225105, 451225, '四把镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225106, 451225, '天河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225107, 451225, '怀群镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225200, 451225, '宝坛乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225202, 451225, '乔善乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225203, 451225, '纳翁乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451225204, 451225, '兼爱乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226100, 451226, '思恩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226101, 451226, '水源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226102, 451226, '洛阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226103, 451226, '川山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226104, 451226, '明伦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226105, 451226, '东兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226200, 451226, '大才乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226202, 451226, '下南乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226204, 451226, '大安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226205, 451226, '长美乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226206, 451226, '龙岩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451226207, 451226, '驯乐苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227100, 451227, '巴马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227101, 451227, '甲篆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227102, 451227, '燕洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227202, 451227, '那社乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227203, 451227, '所略乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227205, 451227, '西山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227207, 451227, '东山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227208, 451227, '凤凰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227209, 451227, '百林乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451227210, 451227, '那桃乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228100, 451228, '安阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228101, 451228, '高岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228102, 451228, '地苏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228103, 451228, '下坳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228104, 451228, '拉烈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228105, 451228, '百旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228106, 451228, '澄江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228107, 451228, '大兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228108, 451228, '拉仁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228109, 451228, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228204, 451228, '东庙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228208, 451228, '隆福乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228209, 451228, '保安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228210, 451228, '板岭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228212, 451228, '三只羊乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228213, 451228, '龙湾乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228214, 451228, '菁盛乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228217, 451228, '加贵乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451228219, 451228, '九渡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229100, 451229, '大化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229101, 451229, '都阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229102, 451229, '岩滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229103, 451229, '北景镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229200, 451229, '共和乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229201, 451229, '贡川乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229202, 451229, '百马乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229203, 451229, '古河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229204, 451229, '古文乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229205, 451229, '江南乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229206, 451229, '羌圩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229207, 451229, '乙圩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229210, 451229, '板升乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229211, 451229, '七百弄乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229213, 451229, '雅龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451229214, 451229, '六也乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302001, 451302, '城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302002, 451302, '城北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302003, 451302, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302005, 451302, '来华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302101, 451302, '凤凰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302102, 451302, '良江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302103, 451302, '小平阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302104, 451302, '迁江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302105, 451302, '石陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302106, 451302, '平阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302107, 451302, '蒙村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302108, 451302, '大湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302109, 451302, '桥巩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302110, 451302, '寺山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302111, 451302, '城厢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302112, 451302, '三五镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302113, 451302, '陶邓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302114, 451302, '石牙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302115, 451302, '五山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302116, 451302, '良塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302206, 451302, '七洞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302213, 451302, '南泗乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302214, 451302, '高安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302216, 451302, '正龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451302402, 451302, '来华投资区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321100, 451321, '城关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321101, 451321, '大塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321102, 451321, '思练镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321103, 451321, '红渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321104, 451321, '古蓬镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321105, 451321, '果遂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321201, 451321, '马泗乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321202, 451321, '欧洞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321203, 451321, '安东乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321205, 451321, '新圩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321206, 451321, '遂意乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451321207, 451321, '北更乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322100, 451322, '象州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322101, 451322, '石龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322102, 451322, '运江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322103, 451322, '寺村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322104, 451322, '中平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322105, 451322, '罗秀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322106, 451322, '大乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322107, 451322, '马坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322201, 451322, '妙皇乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322202, 451322, '百丈乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451322203, 451322, '水晶乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323100, 451323, '武宣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323101, 451323, '桐岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323102, 451323, '通挽镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323103, 451323, '东乡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323104, 451323, '三里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323105, 451323, '二塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323106, 451323, '黄茆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323107, 451323, '禄新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323108, 451323, '思灵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451323204, 451323, '金鸡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324100, 451324, '金秀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324101, 451324, '桐木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324102, 451324, '头排镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324200, 451324, '三角乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324201, 451324, '忠良乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324202, 451324, '罗香乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324203, 451324, '长垌乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324204, 451324, '大樟乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324205, 451324, '六巷乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451324207, 451324, '三江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451381100, 451381, '岭南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451381101, 451381, '北泗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451381102, 451381, '河里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402001, 451402, '太平街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402002, 451402, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402003, 451402, '石景林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402101, 451402, '新和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402102, 451402, '濑湍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402103, 451402, '江州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402104, 451402, '左州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402105, 451402, '那隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402106, 451402, '驮卢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402201, 451402, '罗白乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402202, 451402, '板利乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402400, 451402, '新和华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402401, 451402, '左江华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451402402, 451402, '中泰产业园', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421100, 451421, '新宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421101, 451421, '渠黎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421102, 451421, '渠旧镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421103, 451421, '柳桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421104, 451421, '东门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421105, 451421, '山圩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421106, 451421, '中东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421107, 451421, '东罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421201, 451421, '龙头乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421202, 451421, '岜盆乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421203, 451421, '昌平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421401, 451421, '中国东盟南宁空港扶绥经济区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451421402, 451421, '扶绥县木业家居产业集聚区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422100, 451422, '城中镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422101, 451422, '爱店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422102, 451422, '明江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422103, 451422, '海渊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422104, 451422, '桐棉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422105, 451422, '那堪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422106, 451422, '亭亮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422202, 451422, '寨安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422203, 451422, '峙浪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422204, 451422, '东安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422205, 451422, '板棍乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422206, 451422, '北江乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422209, 451422, '那楠乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422401, 451422, '国营宁明华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422402, 451422, '国营天西华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451422403, 451422, '国营海渊华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423100, 451423, '龙州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423101, 451423, '下冻镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423102, 451423, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423103, 451423, '金龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423104, 451423, '响水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423201, 451423, '八角乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423202, 451423, '上降乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423203, 451423, '彬桥乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423204, 451423, '上龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423205, 451423, '武德乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423206, 451423, '逐卜乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451423207, 451423, '上金乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424100, 451424, '桃城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424101, 451424, '全茗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424102, 451424, '雷平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424103, 451424, '硕龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424104, 451424, '下雷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424200, 451424, '五山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424201, 451424, '龙门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424202, 451424, '昌明乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424203, 451424, '福隆乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424204, 451424, '那岭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424205, 451424, '恩城乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424206, 451424, '榄圩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424207, 451424, '宝圩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424208, 451424, '堪圩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451424400, 451424, '国营桃城华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425100, 451425, '天等镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425101, 451425, '龙茗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425102, 451425, '进结镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425103, 451425, '向都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425104, 451425, '东平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425105, 451425, '福新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425200, 451425, '都康乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425201, 451425, '宁干乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425202, 451425, '驮堪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425205, 451425, '进远乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425206, 451425, '上映乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425207, 451425, '把荷乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451425208, 451425, '小山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451481100, 451481, '凭祥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451481101, 451481, '友谊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451481102, 451481, '上石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451481103, 451481, '夏石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (451481400, 451481, '广西凭祥综合保税区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105001, 460105, '秀英街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105002, 460105, '海秀街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105100, 460105, '长流镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105101, 460105, '西秀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105102, 460105, '海秀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105103, 460105, '石山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105104, 460105, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460105105, 460105, '东山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106001, 460106, '中山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106002, 460106, '滨海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106003, 460106, '金贸街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106004, 460106, '大同街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106005, 460106, '海垦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106006, 460106, '金宇街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106100, 460106, '城西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106101, 460106, '龙桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106102, 460106, '新坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106103, 460106, '遵谭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460106104, 460106, '龙泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107001, 460107, '国兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107002, 460107, '府城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107003, 460107, '滨江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107004, 460107, '凤翔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107101, 460107, '龙塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107102, 460107, '云龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107103, 460107, '红旗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107104, 460107, '三门坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107105, 460107, '大坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107106, 460107, '甲子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107107, 460107, '旧州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107500, 460107, '省岭脚热带作物场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460107501, 460107, '省长昌煤矿', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108001, 460108, '海府街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108002, 460108, '蓝天街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108003, 460108, '博爱街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108004, 460108, '海甸街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108005, 460108, '人民路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108006, 460108, '白龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108007, 460108, '和平南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108008, 460108, '白沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108009, 460108, '新埠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108101, 460108, '灵山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108102, 460108, '演丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108103, 460108, '三江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108104, 460108, '大致坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108400, 460108, '海口桂林洋经济开发区(农场)', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460108500, 460108, '罗牛山农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460202198, 460202, '海棠区直辖村级区划', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460203198, 460203, '吉阳区直辖村级区划', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460204198, 460204, '天涯区直辖村级区划', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460205198, 460205, '崖州区直辖村级区划', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460321451, 460321, '永兴', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460321452, 460321, '永乐', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460321453, 460321, '七连屿', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460322451, 460322, '永暑岛', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460323451, 460323, '中沙岛礁', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400100, 460400, '那大镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400101, 460400, '和庆镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400102, 460400, '南丰镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400103, 460400, '大成镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400104, 460400, '雅星镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400105, 460400, '兰洋镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400106, 460400, '光村镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400107, 460400, '木棠镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400108, 460400, '海头镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400109, 460400, '峨蔓镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400111, 460400, '王五镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400112, 460400, '白马井镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400113, 460400, '中和镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400114, 460400, '排浦镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400115, 460400, '东成镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400116, 460400, '新州镇', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400499, 460400, '洋浦经济开发区', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (460400500, 460400, '华南热作学院', 3, '2022-11-09 10:32:31', '2022-11-09 10:36:23'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001100, 469001, '通什镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001101, 469001, '南圣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001102, 469001, '毛阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001103, 469001, '番阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001198, 469001, '县直辖村级区划', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001200, 469001, '畅好乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001201, 469001, '毛道乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469001202, 469001, '水满乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002100, 469002, '嘉积镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002101, 469002, '万泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002102, 469002, '石壁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002103, 469002, '中原镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002104, 469002, '博鳌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002105, 469002, '阳江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002106, 469002, '龙江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002107, 469002, '潭门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002108, 469002, '塔洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002109, 469002, '长坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002110, 469002, '大路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002111, 469002, '会山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469002500, 469002, '彬村山华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005100, 469005, '文城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005101, 469005, '重兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005102, 469005, '蓬莱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005103, 469005, '会文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005104, 469005, '东路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005105, 469005, '潭牛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005106, 469005, '东阁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005107, 469005, '文教镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005108, 469005, '东郊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005109, 469005, '龙楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005110, 469005, '昌洒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005111, 469005, '翁田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005112, 469005, '抱罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005113, 469005, '冯坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005114, 469005, '锦山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005115, 469005, '铺前镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469005116, 469005, '公坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006100, 469006, '万城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006101, 469006, '龙滚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006102, 469006, '和乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006103, 469006, '后安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006104, 469006, '大茂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006105, 469006, '东澳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006106, 469006, '礼纪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006107, 469006, '长丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006108, 469006, '山根镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006109, 469006, '北大镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006110, 469006, '南桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006111, 469006, '三更罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006500, 469006, '兴隆华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469006501, 469006, '地方国营六连林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007100, 469007, '八所镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007101, 469007, '东河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007102, 469007, '大田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007103, 469007, '感城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007104, 469007, '板桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007105, 469007, '三家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007106, 469007, '四更镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007107, 469007, '新龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007200, 469007, '天安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007201, 469007, '江边乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469007500, 469007, '东方华侨农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021100, 469021, '定城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021101, 469021, '新竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021102, 469021, '龙湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021103, 469021, '黄竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021104, 469021, '雷鸣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021105, 469021, '龙门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021106, 469021, '龙河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021107, 469021, '岭口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021108, 469021, '翰林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469021109, 469021, '富文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022100, 469022, '屯城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022101, 469022, '新兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022102, 469022, '枫木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022103, 469022, '乌坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022104, 469022, '南吕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022105, 469022, '南坤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022106, 469022, '坡心镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469022107, 469022, '西昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023100, 469023, '金江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023101, 469023, '老城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023102, 469023, '瑞溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023103, 469023, '永发镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023104, 469023, '加乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023105, 469023, '文儒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023106, 469023, '中兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023107, 469023, '仁兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023108, 469023, '福山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023109, 469023, '桥头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023110, 469023, '大丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469023405, 469023, '国营金安农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024100, 469024, '临城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024101, 469024, '波莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024102, 469024, '东英镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024103, 469024, '博厚镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024104, 469024, '皇桐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024105, 469024, '多文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024106, 469024, '和舍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024107, 469024, '南宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024108, 469024, '新盈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024109, 469024, '调楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469024401, 469024, '国营加来农场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025100, 469025, '牙叉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025101, 469025, '七坊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025102, 469025, '邦溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025103, 469025, '打安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025200, 469025, '细水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025201, 469025, '元门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025202, 469025, '南开乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025203, 469025, '阜龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025204, 469025, '青松乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025205, 469025, '金波乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469025206, 469025, '荣邦乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026100, 469026, '石碌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026101, 469026, '叉河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026102, 469026, '十月田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026103, 469026, '乌烈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026104, 469026, '昌化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026105, 469026, '海尾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026106, 469026, '七叉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026200, 469026, '王下乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469026500, 469026, '国营霸王岭林场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027100, 469027, '抱由镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027101, 469027, '万冲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027102, 469027, '大安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027103, 469027, '志仲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027104, 469027, '千家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027105, 469027, '九所镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027106, 469027, '利国镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027107, 469027, '黄流镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027108, 469027, '佛罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027109, 469027, '尖峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027110, 469027, '莺歌海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027500, 469027, '国营尖峰岭林业公司', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469027501, 469027, '国营莺歌海盐场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028100, 469028, '椰林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028101, 469028, '光坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028102, 469028, '三才镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028103, 469028, '英州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028104, 469028, '隆广镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028105, 469028, '文罗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028106, 469028, '本号镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028107, 469028, '新村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028108, 469028, '黎安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028200, 469028, '提蒙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028201, 469028, '群英乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469028500, 469028, '国营吊罗山林业公司', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029100, 469029, '保城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029101, 469029, '什玲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029102, 469029, '加茂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029103, 469029, '响水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029104, 469029, '新政镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029105, 469029, '三道镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029198, 469029, '县直辖村级区划', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029200, 469029, '六弓乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029201, 469029, '南林乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469029202, 469029, '毛感乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030100, 469030, '营根镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030101, 469030, '湾岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030102, 469030, '黎母山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030103, 469030, '和平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030104, 469030, '长征镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030105, 469030, '红毛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030106, 469030, '中平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030200, 469030, '吊罗山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030201, 469030, '上安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030202, 469030, '什运乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (469030500, 469030, '海南热带雨林国家公园管理局黎母山分局', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101001, 500101, '高笋塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101017, 500101, '太白街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101018, 500101, '牌楼街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101019, 500101, '双河口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101020, 500101, '龙都街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101021, 500101, '周家坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101022, 500101, '沙河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101023, 500101, '钟鼓楼街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101024, 500101, '百安坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101025, 500101, '五桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101026, 500101, '陈家坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101027, 500101, '高峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101028, 500101, '天城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101029, 500101, '九池街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101109, 500101, '小周镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101110, 500101, '大周镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101123, 500101, '新乡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101132, 500101, '孙家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101135, 500101, '龙沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101136, 500101, '响水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101137, 500101, '武陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101138, 500101, '瀼渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101139, 500101, '甘宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101141, 500101, '熊家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101142, 500101, '高梁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101143, 500101, '李河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101144, 500101, '分水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101145, 500101, '余家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101146, 500101, '后山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101147, 500101, '弹子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101148, 500101, '长岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101149, 500101, '新田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101150, 500101, '白羊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101151, 500101, '龙驹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101152, 500101, '走马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101153, 500101, '罗田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101154, 500101, '太龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101155, 500101, '长滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101156, 500101, '太安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101157, 500101, '白土镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101158, 500101, '郭村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101201, 500101, '柱山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101212, 500101, '铁峰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101225, 500101, '溪口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101226, 500101, '长坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101227, 500101, '燕山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101234, 500101, '梨树乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101237, 500101, '普子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101238, 500101, '地宝土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101239, 500101, '恒合土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101244, 500101, '黄柏乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500101247, 500101, '茨竹乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102006, 500102, '敦仁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102007, 500102, '崇义街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102008, 500102, '荔枝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102009, 500102, '江北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102010, 500102, '江东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102011, 500102, '李渡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102012, 500102, '龙桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102013, 500102, '白涛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102014, 500102, '马鞍街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102015, 500102, '蔺市街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102016, 500102, '义和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102103, 500102, '南沱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102107, 500102, '青羊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102118, 500102, '百胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102119, 500102, '珍溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102120, 500102, '清溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102121, 500102, '焦石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102122, 500102, '马武镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102123, 500102, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102125, 500102, '新妙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102126, 500102, '石沱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102128, 500102, '同乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102129, 500102, '大顺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102130, 500102, '增福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102131, 500102, '罗云镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102206, 500102, '大木乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500102208, 500102, '武陵山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103001, 500103, '七星岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103003, 500103, '解放碑街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103004, 500103, '两路口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103005, 500103, '上清寺街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103007, 500103, '菜园坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103008, 500103, '南纪门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103010, 500103, '朝天门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103011, 500103, '大溪沟街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103012, 500103, '大坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103013, 500103, '化龙桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500103014, 500103, '石油路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104001, 500104, '新山村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104002, 500104, '跃进村街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104003, 500104, '九宫庙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104004, 500104, '茄子溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104005, 500104, '春晖路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104101, 500104, '八桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104102, 500104, '建胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500104103, 500104, '跳磴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105001, 500105, '华新街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105002, 500105, '江北城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105003, 500105, '石马河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105004, 500105, '大石坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105005, 500105, '寸滩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105006, 500105, '观音桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105007, 500105, '五里店街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105008, 500105, '郭家沱街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105009, 500105, '铁山坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105100, 500105, '鱼嘴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105101, 500105, '复盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500105102, 500105, '五宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106001, 500106, '小龙坎街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106002, 500106, '沙坪坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106003, 500106, '渝碚路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106004, 500106, '磁器口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106005, 500106, '童家桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106006, 500106, '石井坡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106007, 500106, '双碑街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106008, 500106, '井口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106009, 500106, '歌乐山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106010, 500106, '山洞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106011, 500106, '新桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106012, 500106, '天星桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106013, 500106, '土湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106014, 500106, '覃家岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106015, 500106, '陈家桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106016, 500106, '虎溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106017, 500106, '西永街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106018, 500106, '联芳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106019, 500106, '丰文街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106020, 500106, '香炉山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106021, 500106, '土主街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106104, 500106, '青木关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106105, 500106, '凤凰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106106, 500106, '回龙坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106108, 500106, '曾家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500106112, 500106, '中梁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107001, 500107, '杨家坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107002, 500107, '黄桷坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107003, 500107, '谢家湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107004, 500107, '石坪桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107005, 500107, '石桥铺街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107006, 500107, '中梁山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107007, 500107, '渝州路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107008, 500107, '二郎街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107009, 500107, '九龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107102, 500107, '华岩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107103, 500107, '含谷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107104, 500107, '金凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107105, 500107, '白市驿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107106, 500107, '走马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107107, 500107, '石板镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107108, 500107, '巴福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107109, 500107, '陶家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107110, 500107, '西彭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500107111, 500107, '铜罐驿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108001, 500108, '铜元局街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108002, 500108, '花园路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108003, 500108, '南坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108004, 500108, '海棠溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108005, 500108, '龙门浩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108006, 500108, '弹子石街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108007, 500108, '南山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108008, 500108, '天文街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108101, 500108, '南坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108102, 500108, '涂山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108103, 500108, '鸡冠石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108105, 500108, '峡口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108106, 500108, '长生桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108107, 500108, '迎龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500108108, 500108, '广阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109001, 500109, '天生街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109002, 500109, '朝阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109003, 500109, '北温泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109004, 500109, '东阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109005, 500109, '龙凤桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109006, 500109, '蔡家岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109007, 500109, '歇马街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109008, 500109, '水土街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109009, 500109, '复兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109102, 500109, '澄江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109104, 500109, '童家溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109105, 500109, '天府镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109108, 500109, '施家梁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109110, 500109, '静观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109111, 500109, '柳荫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109113, 500109, '三圣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500109116, 500109, '金刀峡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110001, 500110, '古南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110002, 500110, '文龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110003, 500110, '三江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110004, 500110, '万盛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110005, 500110, '东林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110006, 500110, '新盛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110007, 500110, '通惠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110100, 500110, '万东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110101, 500110, '南桐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110102, 500110, '青年镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110103, 500110, '关坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110104, 500110, '丛林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110105, 500110, '石林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110106, 500110, '金桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110107, 500110, '黑山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110108, 500110, '石角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110109, 500110, '东溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110110, 500110, '赶水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110111, 500110, '打通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110112, 500110, '石壕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110113, 500110, '永新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110114, 500110, '三角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110115, 500110, '隆盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110116, 500110, '郭扶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110117, 500110, '篆塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110118, 500110, '丁山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110119, 500110, '安稳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110120, 500110, '扶欢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110121, 500110, '永城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110123, 500110, '中峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500110124, 500110, '横山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111001, 500111, '龙岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111002, 500111, '棠香街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111003, 500111, '龙滩子街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111004, 500111, '双路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111005, 500111, '通桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111006, 500111, '智凤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111100, 500111, '龙水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111102, 500111, '宝顶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111103, 500111, '中敖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111104, 500111, '三驱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111105, 500111, '宝兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111106, 500111, '玉龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111107, 500111, '石马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111108, 500111, '拾万镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111109, 500111, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111110, 500111, '金山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111111, 500111, '万古镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111112, 500111, '国梁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111113, 500111, '雍溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111114, 500111, '珠溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111115, 500111, '龙石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111116, 500111, '邮亭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111117, 500111, '铁山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111118, 500111, '高升镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111119, 500111, '季家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111120, 500111, '古龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500111121, 500111, '高坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112002, 500112, '双龙湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112004, 500112, '回兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112007, 500112, '鸳鸯街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112008, 500112, '翠云街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112009, 500112, '人和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112010, 500112, '天宫殿街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112011, 500112, '龙溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112012, 500112, '龙山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112013, 500112, '龙塔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112014, 500112, '大竹林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112015, 500112, '悦来街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112016, 500112, '两路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112017, 500112, '双凤桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112018, 500112, '王家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112019, 500112, '礼嘉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112020, 500112, '宝圣湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112021, 500112, '金山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112022, 500112, '康美街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112023, 500112, '仙桃街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112129, 500112, '玉峰山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112131, 500112, '龙兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112133, 500112, '统景镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112135, 500112, '大湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112138, 500112, '兴隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112139, 500112, '木耳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112140, 500112, '茨竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112141, 500112, '古路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112142, 500112, '石船镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112143, 500112, '大盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500112144, 500112, '洛碛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113003, 500113, '龙洲湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113004, 500113, '鱼洞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113005, 500113, '花溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113006, 500113, '李家沱街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113007, 500113, '南泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113008, 500113, '一品街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113009, 500113, '南彭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113010, 500113, '惠民街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113011, 500113, '莲花街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113103, 500113, '界石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113107, 500113, '安澜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113108, 500113, '圣灯山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113109, 500113, '木洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113110, 500113, '双河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113111, 500113, '麻柳嘴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113112, 500113, '丰盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113113, 500113, '二圣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113114, 500113, '东温泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113115, 500113, '姜家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113116, 500113, '天星寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113117, 500113, '接龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113118, 500113, '石滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500113119, 500113, '石龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114001, 500114, '城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114002, 500114, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114003, 500114, '城西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114004, 500114, '正阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114005, 500114, '舟白街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114006, 500114, '冯家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114105, 500114, '阿蓬江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114106, 500114, '石会镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114107, 500114, '黑溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114108, 500114, '黄溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114109, 500114, '黎水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114110, 500114, '金溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114111, 500114, '马喇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114112, 500114, '濯水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114113, 500114, '石家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114114, 500114, '鹅池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114117, 500114, '小南海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114119, 500114, '邻鄂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114120, 500114, '白石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114121, 500114, '中塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114122, 500114, '沙坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114123, 500114, '太极镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114124, 500114, '五里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114125, 500114, '水市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114246, 500114, '蓬东乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114249, 500114, '杉岭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114251, 500114, '水田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114252, 500114, '白土乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114253, 500114, '金洞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500114256, 500114, '新华乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115001, 500115, '凤城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115002, 500115, '晏家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115003, 500115, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115004, 500115, '渡舟街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115005, 500115, '新市街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115006, 500115, '八颗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115007, 500115, '菩提街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115123, 500115, '邻封镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115124, 500115, '但渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115125, 500115, '云集镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115126, 500115, '长寿湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115127, 500115, '双龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115128, 500115, '龙河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115129, 500115, '石堰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115130, 500115, '云台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115131, 500115, '海棠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115132, 500115, '葛兰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115136, 500115, '洪湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500115137, 500115, '万顺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116001, 500116, '几江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116002, 500116, '德感街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116004, 500116, '双福街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116005, 500116, '鼎山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116006, 500116, '圣泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116101, 500116, '油溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116102, 500116, '吴滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116103, 500116, '石门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116104, 500116, '朱杨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116105, 500116, '石蟆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116106, 500116, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116107, 500116, '塘河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116108, 500116, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116109, 500116, '龙华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116110, 500116, '李市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116111, 500116, '慈云镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116112, 500116, '蔡家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116113, 500116, '中山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116114, 500116, '嘉平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116115, 500116, '柏林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116116, 500116, '先锋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116117, 500116, '珞璜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116118, 500116, '贾嗣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116119, 500116, '夏坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116120, 500116, '西湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116121, 500116, '杜市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116122, 500116, '广兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116123, 500116, '四面山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116124, 500116, '支坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500116125, 500116, '四屏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117001, 500117, '合阳城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117002, 500117, '钓鱼城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117003, 500117, '南津街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117004, 500117, '盐井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117005, 500117, '草街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117006, 500117, '云门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117007, 500117, '大石街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117100, 500117, '沙鱼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117101, 500117, '官渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117102, 500117, '涞滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117103, 500117, '肖家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117104, 500117, '古楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117105, 500117, '三庙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117106, 500117, '二郎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117107, 500117, '龙凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117108, 500117, '隆兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117109, 500117, '铜溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117112, 500117, '双凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117113, 500117, '狮滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117114, 500117, '清平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117115, 500117, '土场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117116, 500117, '小沔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117117, 500117, '三汇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117118, 500117, '香龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117120, 500117, '钱塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117121, 500117, '龙市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117123, 500117, '燕窝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117124, 500117, '太和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117125, 500117, '渭沱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500117126, 500117, '双槐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118001, 500118, '中山路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118002, 500118, '胜利路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118003, 500118, '南大街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118004, 500118, '茶山竹海街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118005, 500118, '大安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118006, 500118, '陈食街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118007, 500118, '卫星湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118100, 500118, '青峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118102, 500118, '金龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118104, 500118, '临江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118106, 500118, '何埂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118107, 500118, '松溉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118108, 500118, '仙龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118109, 500118, '吉安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118110, 500118, '五间镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118111, 500118, '来苏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118112, 500118, '宝峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118113, 500118, '双石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118114, 500118, '红炉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118115, 500118, '永荣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118116, 500118, '三教镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118117, 500118, '板桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500118118, 500118, '朱沱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119001, 500119, '东城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119002, 500119, '南城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119003, 500119, '西城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119100, 500119, '三泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119101, 500119, '南平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119102, 500119, '神童镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119103, 500119, '鸣玉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119104, 500119, '大观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119105, 500119, '兴隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119106, 500119, '太平场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119107, 500119, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119108, 500119, '水江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119109, 500119, '石墙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119110, 500119, '金山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119111, 500119, '头渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119112, 500119, '大有镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119113, 500119, '合溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119114, 500119, '黎香湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119115, 500119, '山王坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119116, 500119, '木凉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119117, 500119, '楠竹山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119118, 500119, '石溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119119, 500119, '德隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119120, 500119, '民主镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119121, 500119, '福寿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119122, 500119, '河图镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119123, 500119, '庆元镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119124, 500119, '古花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119125, 500119, '石莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119126, 500119, '乾丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119127, 500119, '骑龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119128, 500119, '冷水关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119207, 500119, '中桥乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500119212, 500119, '峰岩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120001, 500120, '璧城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120002, 500120, '璧泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120003, 500120, '青杠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120004, 500120, '来凤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120005, 500120, '丁家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120006, 500120, '大路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120100, 500120, '八塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120101, 500120, '七塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120102, 500120, '河边镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120103, 500120, '福禄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120104, 500120, '大兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120105, 500120, '正兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120106, 500120, '广普镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120107, 500120, '三合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500120108, 500120, '健龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151001, 500151, '巴川街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151002, 500151, '东城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151003, 500151, '南城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151004, 500151, '蒲吕街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151005, 500151, '旧县街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151101, 500151, '土桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151103, 500151, '二坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151104, 500151, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151105, 500151, '安居镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151106, 500151, '白羊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151107, 500151, '平滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151108, 500151, '小林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151109, 500151, '双山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151110, 500151, '虎峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151111, 500151, '石鱼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151112, 500151, '福果镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151113, 500151, '庆隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151114, 500151, '少云镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151115, 500151, '维新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151116, 500151, '高楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151117, 500151, '大庙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151118, 500151, '围龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151119, 500151, '华兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151120, 500151, '永嘉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151121, 500151, '安溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151122, 500151, '西河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151123, 500151, '侣俸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500151124, 500151, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152001, 500152, '桂林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152002, 500152, '梓潼街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152003, 500152, '大佛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152101, 500152, '上和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152102, 500152, '龙形镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152103, 500152, '古溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152104, 500152, '宝龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152107, 500152, '玉溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152108, 500152, '米心镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152109, 500152, '群力镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152110, 500152, '双江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152112, 500152, '花岩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152113, 500152, '柏梓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152114, 500152, '崇龛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152115, 500152, '塘坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152116, 500152, '新胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152117, 500152, '太安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152119, 500152, '小渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152120, 500152, '卧佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152121, 500152, '五桂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152122, 500152, '田家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152123, 500152, '别口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500152124, 500152, '寿桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153001, 500153, '昌元街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153002, 500153, '昌州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153003, 500153, '广顺街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153004, 500153, '双河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153005, 500153, '安富街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153006, 500153, '峰高街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153100, 500153, '荣隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153101, 500153, '仁义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153102, 500153, '盘龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153103, 500153, '吴家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153104, 500153, '直升镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153105, 500153, '万灵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153106, 500153, '清升镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153107, 500153, '清江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153108, 500153, '古昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153109, 500153, '河包镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153110, 500153, '观胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153111, 500153, '铜鼓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153112, 500153, '清流镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153113, 500153, '远觉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500153114, 500153, '龙集镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154001, 500154, '汉丰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154002, 500154, '文峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154003, 500154, '云枫街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154004, 500154, '镇东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154005, 500154, '丰乐街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154006, 500154, '白鹤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154007, 500154, '赵家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154008, 500154, '正安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154100, 500154, '大德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154102, 500154, '厚坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154103, 500154, '金峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154104, 500154, '温泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154105, 500154, '郭家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154106, 500154, '白桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154107, 500154, '和谦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154108, 500154, '河堰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154109, 500154, '大进镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154110, 500154, '谭家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154111, 500154, '敦好镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154112, 500154, '高桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154113, 500154, '九龙山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154114, 500154, '天和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154115, 500154, '中和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154116, 500154, '义和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154117, 500154, '临江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154118, 500154, '竹溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154119, 500154, '铁桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154120, 500154, '南雅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154121, 500154, '巫山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154122, 500154, '岳溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154123, 500154, '长沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154124, 500154, '南门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154125, 500154, '渠口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154126, 500154, '满月镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154127, 500154, '雪宝山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154201, 500154, '关面乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154203, 500154, '麻柳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154204, 500154, '紫水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154205, 500154, '三汇口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500154206, 500154, '五通乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155001, 500155, '梁山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155002, 500155, '双桂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155003, 500155, '仁贤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155004, 500155, '金带街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155005, 500155, '合兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155102, 500155, '礼让镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155103, 500155, '云龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155104, 500155, '屏锦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155106, 500155, '袁驿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155107, 500155, '新盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155108, 500155, '福禄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155110, 500155, '聚奎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155111, 500155, '明达镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155112, 500155, '荫平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155113, 500155, '和林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155114, 500155, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155115, 500155, '碧山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155116, 500155, '虎城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155117, 500155, '七星镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155118, 500155, '龙门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155119, 500155, '文化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155121, 500155, '石安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155122, 500155, '柏家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155123, 500155, '大观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155124, 500155, '竹山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155125, 500155, '蟠龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155126, 500155, '星桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155127, 500155, '曲水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155128, 500155, '安胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155129, 500155, '复平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155130, 500155, '紫照镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155201, 500155, '铁门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500155202, 500155, '龙胜乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156001, 500156, '凤山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156002, 500156, '芙蓉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156003, 500156, '仙女山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156004, 500156, '羊角街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156101, 500156, '白马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156102, 500156, '江口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156104, 500156, '火炉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156105, 500156, '鸭江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156107, 500156, '长坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156108, 500156, '平桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156109, 500156, '桐梓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156111, 500156, '和顺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156112, 500156, '双河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156113, 500156, '凤来镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156201, 500156, '庙垭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156202, 500156, '石桥苗族土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156203, 500156, '黄莺乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156204, 500156, '沧沟乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156205, 500156, '文复苗族土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156206, 500156, '土地乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156207, 500156, '白云乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156208, 500156, '后坪苗族土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156209, 500156, '浩口苗族仡佬族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156210, 500156, '接龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156211, 500156, '赵家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500156212, 500156, '大洞河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229001, 500229, '葛城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229002, 500229, '复兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229102, 500229, '巴山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229103, 500229, '坪坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229104, 500229, '庙坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229105, 500229, '明通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229106, 500229, '修齐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229107, 500229, '高观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229108, 500229, '高燕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229109, 500229, '东安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229110, 500229, '咸宜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229111, 500229, '高楠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229201, 500229, '龙田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229202, 500229, '北屏乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229205, 500229, '左岚乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229208, 500229, '沿河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229210, 500229, '双河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229211, 500229, '蓼子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229212, 500229, '鸡鸣乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229214, 500229, '周溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229216, 500229, '明中乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229217, 500229, '治平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229219, 500229, '岚天乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229220, 500229, '厚坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500229221, 500229, '河鱼乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230001, 500230, '三合街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230002, 500230, '名山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230101, 500230, '虎威镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230102, 500230, '社坛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230103, 500230, '三元镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230104, 500230, '许明寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230105, 500230, '董家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230106, 500230, '树人镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230107, 500230, '十直镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230109, 500230, '高家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230110, 500230, '兴义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230111, 500230, '双路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230112, 500230, '江池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230113, 500230, '龙河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230114, 500230, '武平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230115, 500230, '包鸾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230116, 500230, '湛普镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230118, 500230, '南天湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230119, 500230, '保合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230120, 500230, '兴龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230121, 500230, '仁沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230122, 500230, '龙孔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230123, 500230, '暨龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230124, 500230, '双龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230125, 500230, '仙女湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230202, 500230, '青龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230206, 500230, '太平坝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230207, 500230, '都督乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230209, 500230, '栗子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500230210, 500230, '三建乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231001, 500231, '桂溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231002, 500231, '桂阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231101, 500231, '新民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231102, 500231, '沙坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231103, 500231, '周嘉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231104, 500231, '普顺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231105, 500231, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231106, 500231, '高安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231107, 500231, '高峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231108, 500231, '五洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231109, 500231, '澄溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231110, 500231, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231111, 500231, '鹤游镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231112, 500231, '坪山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231113, 500231, '砚台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231114, 500231, '曹回镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231115, 500231, '杠家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231116, 500231, '包家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231117, 500231, '白家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231118, 500231, '永平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231119, 500231, '三溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231120, 500231, '裴兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231121, 500231, '黄沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231122, 500231, '长龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231202, 500231, '沙河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500231204, 500231, '大石乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233001, 500233, '忠州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233002, 500233, '白公街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233003, 500233, '乌杨街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233004, 500233, '新生街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233102, 500233, '任家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233104, 500233, '洋渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233105, 500233, '东溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233106, 500233, '复兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233107, 500233, '石宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233108, 500233, '汝溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233109, 500233, '野鹤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233110, 500233, '官坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233111, 500233, '石黄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233112, 500233, '马灌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233113, 500233, '金鸡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233114, 500233, '新立镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233115, 500233, '双桂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233116, 500233, '拔山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233117, 500233, '花桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233118, 500233, '永丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233119, 500233, '三汇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233120, 500233, '白石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233122, 500233, '黄金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233201, 500233, '善广乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233203, 500233, '石子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233204, 500233, '磨子土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233206, 500233, '涂井乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233208, 500233, '金声乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500233210, 500233, '兴峰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235001, 500235, '双江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235002, 500235, '青龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235003, 500235, '人和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235004, 500235, '盘龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235105, 500235, '龙角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235107, 500235, '故陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235108, 500235, '红狮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235115, 500235, '路阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235116, 500235, '农坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235118, 500235, '渠马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235121, 500235, '黄石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235122, 500235, '巴阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235123, 500235, '沙市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235124, 500235, '鱼泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235125, 500235, '凤鸣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235127, 500235, '宝坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235128, 500235, '南溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235129, 500235, '双土镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235130, 500235, '桑坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235131, 500235, '江口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235132, 500235, '高阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235133, 500235, '平安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235135, 500235, '云阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235136, 500235, '云安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235137, 500235, '栖霞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235138, 500235, '双龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235139, 500235, '泥溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235140, 500235, '蔈草镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235141, 500235, '养鹿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235142, 500235, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235143, 500235, '堰坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235144, 500235, '龙洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235145, 500235, '后叶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235146, 500235, '耀灵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235147, 500235, '大阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235208, 500235, '外郎乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235215, 500235, '新津乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235216, 500235, '普安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235218, 500235, '洞鹿乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235219, 500235, '石门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235239, 500235, '上坝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500235242, 500235, '清水土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236001, 500236, '永安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236002, 500236, '鱼复街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236003, 500236, '夔门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236004, 500236, '夔州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236117, 500236, '白帝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236118, 500236, '草堂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236119, 500236, '汾河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236120, 500236, '康乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236121, 500236, '大树镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236122, 500236, '竹园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236123, 500236, '公平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236124, 500236, '朱衣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236125, 500236, '甲高镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236126, 500236, '羊市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236127, 500236, '吐祥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236128, 500236, '兴隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236129, 500236, '青龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236130, 500236, '新民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236131, 500236, '永乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236132, 500236, '安坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236133, 500236, '五马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236134, 500236, '青莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236265, 500236, '岩湾乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236266, 500236, '平安乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236267, 500236, '红土乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236269, 500236, '石岗乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236270, 500236, '康坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236272, 500236, '太和土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236274, 500236, '鹤峰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236275, 500236, '冯坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236276, 500236, '长安土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236277, 500236, '龙桥土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500236278, 500236, '云雾土家族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237001, 500237, '高唐街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237002, 500237, '龙门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237101, 500237, '庙宇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237102, 500237, '大昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237103, 500237, '福田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237104, 500237, '龙溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237105, 500237, '双龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237106, 500237, '官阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237107, 500237, '骡坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237108, 500237, '抱龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237109, 500237, '官渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237110, 500237, '铜鼓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237111, 500237, '巫峡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237200, 500237, '红椿乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237207, 500237, '两坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237208, 500237, '曲尺乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237210, 500237, '建平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237211, 500237, '大溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237214, 500237, '金坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237216, 500237, '平河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237219, 500237, '当阳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237222, 500237, '竹贤乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237225, 500237, '三溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237227, 500237, '培石乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237229, 500237, '笃坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500237231, 500237, '邓家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238001, 500238, '宁河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238002, 500238, '柏杨街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238100, 500238, '城厢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238101, 500238, '凤凰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238102, 500238, '宁厂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238103, 500238, '上磺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238104, 500238, '古路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238105, 500238, '文峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238106, 500238, '徐家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238107, 500238, '白鹿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238108, 500238, '尖山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238109, 500238, '下堡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238110, 500238, '峰灵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238111, 500238, '塘坊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238112, 500238, '朝阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238113, 500238, '田坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238114, 500238, '通城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238115, 500238, '菱角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238116, 500238, '蒲莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238117, 500238, '土城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238118, 500238, '红池坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238204, 500238, '胜利乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238207, 500238, '大河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238208, 500238, '天星乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238210, 500238, '长桂乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238226, 500238, '鱼鳞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238227, 500238, '乌龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238237, 500238, '花台乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238239, 500238, '兰英乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238240, 500238, '双阳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238242, 500238, '中梁乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500238243, 500238, '天元乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240001, 500240, '南宾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240002, 500240, '万安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240003, 500240, '下路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240101, 500240, '西沱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240103, 500240, '悦崃镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240104, 500240, '临溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240105, 500240, '黄水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240106, 500240, '马武镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240107, 500240, '沙子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240108, 500240, '王场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240109, 500240, '沿溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240110, 500240, '龙沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240111, 500240, '鱼池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240112, 500240, '三河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240113, 500240, '大歇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240114, 500240, '桥头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240115, 500240, '万朝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240116, 500240, '冷水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240117, 500240, '黄鹤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240118, 500240, '枫木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240203, 500240, '黎场乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240204, 500240, '三星乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240205, 500240, '六塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240207, 500240, '三益乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240208, 500240, '王家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240209, 500240, '河嘴乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240210, 500240, '石家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240213, 500240, '中益乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240214, 500240, '洗新乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240216, 500240, '龙潭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240217, 500240, '新乐乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240218, 500240, '金铃乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500240219, 500240, '金竹乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241001, 500241, '中和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241002, 500241, '乌杨街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241003, 500241, '平凯街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241004, 500241, '官庄街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241005, 500241, '清溪场街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241103, 500241, '隘口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241104, 500241, '溶溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241106, 500241, '龙池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241107, 500241, '石堤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241108, 500241, '峨溶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241109, 500241, '洪安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241110, 500241, '雅江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241111, 500241, '石耶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241112, 500241, '梅江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241113, 500241, '兰桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241114, 500241, '膏田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241115, 500241, '溪口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241116, 500241, '妙泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241117, 500241, '宋农镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241118, 500241, '里仁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241119, 500241, '钟灵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241120, 500241, '龙凤坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241121, 500241, '涌洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241207, 500241, '海洋乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241208, 500241, '大溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241214, 500241, '中平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500241215, 500241, '岑溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242001, 500242, '桃花源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242002, 500242, '钟多街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242101, 500242, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242102, 500242, '麻旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242103, 500242, '酉酬镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242104, 500242, '大溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242105, 500242, '兴隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242106, 500242, '黑水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242107, 500242, '丁市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242108, 500242, '龚滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242109, 500242, '李溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242110, 500242, '泔溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242111, 500242, '酉水河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242112, 500242, '苍岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242113, 500242, '小河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242114, 500242, '板溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242115, 500242, '涂市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242116, 500242, '铜鼓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242117, 500242, '五福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242118, 500242, '万木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242119, 500242, '南腰界镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242204, 500242, '可大乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242205, 500242, '偏柏乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242207, 500242, '木叶乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242208, 500242, '毛坝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242209, 500242, '花田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242210, 500242, '后坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242211, 500242, '天馆乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242212, 500242, '宜居乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242214, 500242, '两罾乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242215, 500242, '板桥乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242216, 500242, '官清乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242218, 500242, '车田乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242219, 500242, '腴地乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242220, 500242, '清泉乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242221, 500242, '庙溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242222, 500242, '浪坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242223, 500242, '双泉乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500242224, 500242, '楠木乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243001, 500243, '汉葭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243002, 500243, '绍庆街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243003, 500243, '靛水街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243101, 500243, '保家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243102, 500243, '郁山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243103, 500243, '高谷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243104, 500243, '桑柘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243105, 500243, '鹿角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243106, 500243, '黄家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243107, 500243, '普子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243108, 500243, '龙射镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243109, 500243, '连湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243110, 500243, '万足镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243111, 500243, '平安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243112, 500243, '长生镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243113, 500243, '新田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243114, 500243, '鞍子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243115, 500243, '太原镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243116, 500243, '龙溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243117, 500243, '梅子垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243118, 500243, '大同镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243201, 500243, '岩东乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243202, 500243, '鹿鸣乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243204, 500243, '棣棠乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243206, 500243, '三义乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243207, 500243, '联合乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243208, 500243, '石柳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243210, 500243, '走马乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243211, 500243, '芦塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243213, 500243, '乔梓乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243217, 500243, '诸佛乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243219, 500243, '桐楼乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243222, 500243, '善感乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243223, 500243, '双龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243224, 500243, '石盘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243225, 500243, '大垭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243226, 500243, '润溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243227, 500243, '朗溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (500243228, 500243, '龙塘乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104017, 510104, '锦官驿街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104018, 510104, '东湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104019, 510104, '锦华路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104022, 510104, '春熙路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104023, 510104, '书院街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104026, 510104, '牛市口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104030, 510104, '沙河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104032, 510104, '狮子山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104035, 510104, '成龙路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104036, 510104, '柳江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510104037, 510104, '三圣街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105002, 510105, '草市街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105003, 510105, '西御河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105005, 510105, '少城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105007, 510105, '草堂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105008, 510105, '府南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105009, 510105, '光华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105011, 510105, '金沙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105012, 510105, '黄田坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105013, 510105, '苏坡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105014, 510105, '文家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105018, 510105, '蔡桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510105019, 510105, '康河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106024, 510106, '西安路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106025, 510106, '西华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106027, 510106, '荷花池街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106030, 510106, '驷马桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106031, 510106, '茶店子街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106032, 510106, '抚琴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106035, 510106, '九里堤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106036, 510106, '五块石街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106038, 510106, '营门口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106040, 510106, '金泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106041, 510106, '沙河源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106042, 510106, '天回镇街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510106043, 510106, '凤凰山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107001, 510107, '浆洗街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107004, 510107, '望江路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107005, 510107, '玉林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107007, 510107, '火车南站街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107009, 510107, '晋阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107010, 510107, '红牌楼街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107011, 510107, '簇桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107012, 510107, '机投桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107013, 510107, '金花桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107014, 510107, '簇锦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107015, 510107, '华兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107061, 510107, '芳草街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107062, 510107, '肖家河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107063, 510107, '石羊街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510107064, 510107, '桂溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108002, 510108, '猛追湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108004, 510108, '双桥子街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108006, 510108, '府青路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108007, 510108, '二仙桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108008, 510108, '跳蹬河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108010, 510108, '双水碾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108011, 510108, '万年场街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108014, 510108, '保和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108015, 510108, '青龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108016, 510108, '龙潭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510108017, 510108, '白莲池街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112001, 510112, '龙泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112002, 510112, '大面街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112003, 510112, '十陵街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112004, 510112, '同安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112005, 510112, '西河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112006, 510112, '柏合街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112007, 510112, '东安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112102, 510112, '洛带镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112108, 510112, '洪安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510112115, 510112, '山泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113002, 510113, '大弯街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113003, 510113, '大同街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113102, 510113, '弥牟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113104, 510113, '城厢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113106, 510113, '姚渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113108, 510113, '清泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510113111, 510113, '福洪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114001, 510114, '大丰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114003, 510114, '三河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114004, 510114, '新都街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114005, 510114, '新繁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114006, 510114, '石板滩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114007, 510114, '斑竹园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114008, 510114, '桂湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114109, 510114, '清流镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510114116, 510114, '军屯镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115001, 510115, '柳城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115002, 510115, '公平街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115003, 510115, '涌泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115004, 510115, '天府街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115005, 510115, '金马街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115006, 510115, '永宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115101, 510115, '和盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115105, 510115, '万春镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510115106, 510115, '寿安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116001, 510116, '东升街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116002, 510116, '西航港街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116003, 510116, '华阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116004, 510116, '中和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116005, 510116, '九江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116006, 510116, '黄甲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116017, 510116, '怡心街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116018, 510116, '万安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116019, 510116, '正兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116020, 510116, '兴隆街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116021, 510116, '煎茶街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116022, 510116, '新兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116023, 510116, '籍田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116024, 510116, '太平街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116025, 510116, '永兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116108, 510116, '彭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116111, 510116, '黄龙溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116112, 510116, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510116115, 510116, '黄水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117001, 510117, '郫筒街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117004, 510117, '安德街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117005, 510117, '红光街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117006, 510117, '犀浦街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117007, 510117, '德源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117008, 510117, '安靖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117009, 510117, '团结街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117019, 510117, '合作街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117020, 510117, '西园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117104, 510117, '唐昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117106, 510117, '三道堰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510117115, 510117, '友爱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118001, 510118, '五津街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118002, 510118, '普兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118003, 510118, '花桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118004, 510118, '花源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118101, 510118, '兴义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118102, 510118, '安西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118103, 510118, '永商镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510118104, 510118, '宝墩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121001, 510121, '赵镇街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121002, 510121, '官仓街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121003, 510121, '栖贤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121004, 510121, '高板街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121005, 510121, '白果街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121006, 510121, '淮口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121106, 510121, '五凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121109, 510121, '三溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121110, 510121, '福兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121111, 510121, '金龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121112, 510121, '赵家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121113, 510121, '竹篙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121116, 510121, '转龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121117, 510121, '土桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121118, 510121, '云合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510121119, 510121, '又新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129001, 510129, '晋原街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129002, 510129, '沙渠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129003, 510129, '青霞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129101, 510129, '王泗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129103, 510129, '新场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129104, 510129, '悦来镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129105, 510129, '安仁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129106, 510129, '䢺江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129107, 510129, '花水湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129108, 510129, '西岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510129119, 510129, '鹤鸣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131001, 510131, '鹤山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131002, 510131, '寿安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131101, 510131, '大塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131103, 510131, '朝阳湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131104, 510131, '西来镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131105, 510131, '大兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131106, 510131, '甘溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510131107, 510131, '成佳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181001, 510181, '奎光塔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181002, 510181, '幸福街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181004, 510181, '灌口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181005, 510181, '银杏街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181006, 510181, '玉堂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181007, 510181, '蒲阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181103, 510181, '聚源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181105, 510181, '天马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181106, 510181, '石羊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181110, 510181, '青城山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510181111, 510181, '龙池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182001, 510182, '天彭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182002, 510182, '隆丰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182003, 510182, '濛阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182004, 510182, '致和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182101, 510182, '龙门山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182103, 510182, '丽春镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182104, 510182, '九尺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182106, 510182, '通济镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182107, 510182, '丹景山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182109, 510182, '敖平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182111, 510182, '桂花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182121, 510182, '白鹿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510182123, 510182, '葛仙山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183001, 510183, '文君街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183002, 510183, '临邛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183003, 510183, '固驿街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183004, 510183, '羊安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183005, 510183, '高埂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183006, 510183, '孔明街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183103, 510183, '桑园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183104, 510183, '平乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183105, 510183, '夹关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183106, 510183, '火井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183115, 510183, '临济镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183118, 510183, '天台山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183121, 510183, '南宝山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510183122, 510183, '大同镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184001, 510184, '崇阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184002, 510184, '羊马街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184003, 510184, '三江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184004, 510184, '江源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184005, 510184, '大划街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184006, 510184, '崇庆街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184104, 510184, '廖家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184105, 510184, '元通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184106, 510184, '观胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184107, 510184, '怀远镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184109, 510184, '街子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184110, 510184, '文井江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184112, 510184, '白头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184113, 510184, '道明镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510184114, 510184, '隆兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185001, 510185, '简城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185002, 510185, '射洪坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185003, 510185, '新市街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185005, 510185, '东溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185006, 510185, '平泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185007, 510185, '石桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185008, 510185, '赤水街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185009, 510185, '石盘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185010, 510185, '养马街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185011, 510185, '贾家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185012, 510185, '石板凳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185013, 510185, '三岔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185014, 510185, '草池街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185015, 510185, '福田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185016, 510185, '玉成街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185017, 510185, '丹景街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185102, 510185, '杨家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185106, 510185, '禾丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185107, 510185, '云龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185108, 510185, '三星镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185113, 510185, '镇金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185114, 510185, '石钟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185115, 510185, '施家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185116, 510185, '三合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185117, 510185, '平武镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185119, 510185, '踏水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185120, 510185, '江源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185121, 510185, '涌泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185122, 510185, '芦葭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185125, 510185, '青龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185126, 510185, '高明镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185127, 510185, '武庙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185128, 510185, '壮溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185129, 510185, '宏缘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185130, 510185, '雷家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185131, 510185, '董家埂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510185132, 510185, '海螺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302001, 510302, '五星街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302002, 510302, '东兴寺街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302003, 510302, '新街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302004, 510302, '郭家坳街街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302005, 510302, '丹桂街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302006, 510302, '学苑街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302007, 510302, '舒坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302008, 510302, '红旗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302009, 510302, '高峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302101, 510302, '仲权镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302103, 510302, '荣边镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510302104, 510302, '飞龙峡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303001, 510303, '筱溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303002, 510303, '贡井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303003, 510303, '长土街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303100, 510303, '艾叶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303101, 510303, '建设镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303104, 510303, '龙潭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303105, 510303, '桥头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303106, 510303, '五宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303107, 510303, '莲花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510303108, 510303, '成佳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304001, 510304, '大安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304002, 510304, '龙井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304003, 510304, '马冲口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304004, 510304, '凉高山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304005, 510304, '和平街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304006, 510304, '凤凰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304100, 510304, '大山铺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304102, 510304, '团结镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304103, 510304, '三多寨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304104, 510304, '何市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304105, 510304, '新店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304106, 510304, '新民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304107, 510304, '牛佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304108, 510304, '庙坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510304109, 510304, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311001, 510311, '卫坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311002, 510311, '邓关街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311100, 510311, '沿滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311102, 510311, '兴隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311105, 510311, '富全镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311106, 510311, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311107, 510311, '联络镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311109, 510311, '王井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311110, 510311, '黄市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311111, 510311, '瓦市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311112, 510311, '仙市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510311204, 510311, '九洪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321001, 510321, '梧桐街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321002, 510321, '青阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321100, 510321, '旭阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321102, 510321, '双石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321107, 510321, '鼎新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321110, 510321, '乐德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321112, 510321, '古文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321113, 510321, '河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321114, 510321, '新桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321115, 510321, '正紫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321116, 510321, '度佳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321117, 510321, '东佳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321118, 510321, '长山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321119, 510321, '保华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321120, 510321, '留佳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321121, 510321, '来牟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321122, 510321, '双古镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321123, 510321, '观山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321124, 510321, '高山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321125, 510321, '东兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510321126, 510321, '铁厂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322001, 510322, '富世街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322002, 510322, '邓井关街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322003, 510322, '东湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322102, 510322, '琵琶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322103, 510322, '狮市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322104, 510322, '骑龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322111, 510322, '代寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322113, 510322, '童寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322114, 510322, '古佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322115, 510322, '永年镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322117, 510322, '兜山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322118, 510322, '板桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322119, 510322, '福善镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322120, 510322, '李桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322121, 510322, '赵化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322122, 510322, '安溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322124, 510322, '飞龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322125, 510322, '怀德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322126, 510322, '长滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510322200, 510322, '龙万乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510402001, 510402, '大渡口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510402002, 510402, '炳草岗街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510402005, 510402, '弄弄坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510402009, 510402, '瓜子坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510402010, 510402, '东华街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510402100, 510402, '银江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510403001, 510403, '清香坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510403002, 510403, '玉泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510403003, 510403, '河门口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510403004, 510403, '陶家渡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510403006, 510403, '大宝鼎街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510403100, 510403, '格里坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411001, 510411, '大河中路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411100, 510411, '仁和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411101, 510411, '平地镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411102, 510411, '大田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411103, 510411, '福田镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411104, 510411, '同德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411105, 510411, '金江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411106, 510411, '布德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411107, 510411, '前进镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411200, 510411, '大龙潭彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411201, 510411, '啊喇彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411203, 510411, '太平乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411204, 510411, '务本乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510411205, 510411, '中坝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421100, 510421, '攀莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421101, 510421, '丙谷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421102, 510421, '得石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421103, 510421, '撒莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421105, 510421, '白马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421106, 510421, '普威镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421107, 510421, '草场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421201, 510421, '湾丘彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421202, 510421, '白坡彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421203, 510421, '麻陇彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510421204, 510421, '新山傈僳族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422100, 510422, '桐子林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422101, 510422, '红格镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422102, 510422, '渔门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422103, 510422, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422104, 510422, '新九镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422105, 510422, '惠民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422203, 510422, '红果彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422205, 510422, '共和乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422206, 510422, '国胜乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422207, 510422, '红宝苗族彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422210, 510422, '温泉彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510422211, 510422, '格萨拉彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502001, 510502, '南城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502002, 510502, '北城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502003, 510502, '大山坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502004, 510502, '邻玉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502005, 510502, '蓝田街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502006, 510502, '茜草街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502007, 510502, '华阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502009, 510502, '泰安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502010, 510502, '况场街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502103, 510502, '黄舣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502106, 510502, '通滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502107, 510502, '江北镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502108, 510502, '方山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502109, 510502, '丹林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510502110, 510502, '分水岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503001, 510503, '安富街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503002, 510503, '永宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503003, 510503, '东升街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503100, 510503, '大渡口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503101, 510503, '护国镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503102, 510503, '打古镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503103, 510503, '上马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503104, 510503, '合面镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503106, 510503, '丰乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503107, 510503, '白节镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503108, 510503, '天仙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503109, 510503, '新乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510503111, 510503, '龙车镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504001, 510504, '小市街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504003, 510504, '红星街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504004, 510504, '莲花池街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504005, 510504, '罗汉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504006, 510504, '鱼塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504007, 510504, '安宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504008, 510504, '石洞街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504009, 510504, '特兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504103, 510504, '胡市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504106, 510504, '双加镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510504107, 510504, '金龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521001, 510521, '玉蟾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521100, 510521, '福集镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521101, 510521, '嘉明镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521102, 510521, '喻寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521103, 510521, '得胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521105, 510521, '牛滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521106, 510521, '兆雅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521107, 510521, '玄滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521108, 510521, '太伏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521109, 510521, '云龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521110, 510521, '石桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521111, 510521, '毗卢镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521112, 510521, '奇峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521113, 510521, '潮河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521114, 510521, '云锦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521115, 510521, '立石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521116, 510521, '百和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521117, 510521, '天兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521118, 510521, '方洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510521123, 510521, '海潮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522001, 510522, '符阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522002, 510522, '临港街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522101, 510522, '望龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522102, 510522, '白沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522104, 510522, '先市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522105, 510522, '尧坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522106, 510522, '九支镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522108, 510522, '凤鸣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522109, 510522, '榕山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522110, 510522, '白鹿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522111, 510522, '甘雨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522112, 510522, '福宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522113, 510522, '先滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522115, 510522, '大桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522116, 510522, '车辋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522117, 510522, '白米镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522119, 510522, '法王寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522121, 510522, '神臂城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522124, 510522, '石龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522125, 510522, '真龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510522126, 510522, '荔江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524100, 510524, '叙永镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524101, 510524, '江门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524102, 510524, '马岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524103, 510524, '天池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524104, 510524, '水尾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524105, 510524, '两河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524106, 510524, '落卜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524107, 510524, '后山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524108, 510524, '分水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524109, 510524, '摩尼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524110, 510524, '赤水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524111, 510524, '龙凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524112, 510524, '正东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524113, 510524, '观兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524114, 510524, '向林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524117, 510524, '麻城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524118, 510524, '大石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524119, 510524, '黄坭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524210, 510524, '合乐苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524211, 510524, '白腊苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524212, 510524, '枧槽苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524213, 510524, '水潦彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510524215, 510524, '石厢子彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525001, 510525, '彰德街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525002, 510525, '金兰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525003, 510525, '永乐街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525101, 510525, '龙山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525103, 510525, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525104, 510525, '二郎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525105, 510525, '大村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525106, 510525, '石宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525107, 510525, '丹桂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525108, 510525, '茅溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525109, 510525, '观文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525110, 510525, '双沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525111, 510525, '德耀镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525113, 510525, '石屏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525115, 510525, '皇华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525117, 510525, '东新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525118, 510525, '椒园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525119, 510525, '马蹄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525121, 510525, '黄荆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525122, 510525, '白泥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525209, 510525, '马嘶苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525212, 510525, '箭竹苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510525214, 510525, '大寨苗族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603001, 510603, '旌阳街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603004, 510603, '旌东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603006, 510603, '八角井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603009, 510603, '东湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603010, 510603, '天元街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603011, 510603, '孝感街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603100, 510603, '黄许镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603101, 510603, '孝泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603103, 510603, '柏隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603108, 510603, '德新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603110, 510603, '双东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603111, 510603, '新中镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510603117, 510603, '和新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604100, 510604, '万安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604101, 510604, '鄢家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604102, 510604, '金山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604103, 510604, '略坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604106, 510604, '调元镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604107, 510604, '新盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510604113, 510604, '白马关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623100, 510623, '凯江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623101, 510623, '南华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623102, 510623, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623103, 510623, '通济镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623104, 510623, '永太镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623105, 510623, '黄鹿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623106, 510623, '集凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623107, 510623, '富兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623108, 510623, '辑庆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623109, 510623, '兴隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623110, 510623, '龙台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623111, 510623, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623113, 510623, '玉兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623114, 510623, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623115, 510623, '悦来镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623116, 510623, '继光镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623117, 510623, '仓山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623118, 510623, '广福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623119, 510623, '会龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623120, 510623, '万福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623121, 510623, '普兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623122, 510623, '联合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623123, 510623, '冯店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623124, 510623, '积金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623125, 510623, '太安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623132, 510623, '东北镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623206, 510623, '柏树乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623207, 510623, '白果乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623214, 510623, '永丰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510623218, 510623, '通山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681001, 510681, '雒城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681002, 510681, '汉州街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681003, 510681, '金雁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681101, 510681, '三水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681102, 510681, '连山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681103, 510681, '高坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681105, 510681, '向阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681106, 510681, '小汉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681107, 510681, '金轮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681114, 510681, '金鱼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681116, 510681, '南丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510681117, 510681, '三星堆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682001, 510682, '方亭街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682002, 510682, '雍城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682105, 510682, '洛水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682106, 510682, '禾丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682108, 510682, '马祖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682110, 510682, '马井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682111, 510682, '蓥华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682113, 510682, '南泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682116, 510682, '湔氐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510682120, 510682, '师古镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683001, 510683, '剑南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683002, 510683, '紫岩街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683104, 510683, '九龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683106, 510683, '汉旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683109, 510683, '麓棠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683110, 510683, '广济镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683112, 510683, '玉泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683115, 510683, '新市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683116, 510683, '孝德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683119, 510683, '富新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683122, 510683, '什地镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510683124, 510683, '清平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703001, 510703, '城厢街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703003, 510703, '工区街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703006, 510703, '普明街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703009, 510703, '创业园街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703011, 510703, '石塘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703012, 510703, '城郊街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703013, 510703, '塘汛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703100, 510703, '丰谷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703103, 510703, '青义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703106, 510703, '吴家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703107, 510703, '杨家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703110, 510703, '新皂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510703113, 510703, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704001, 510704, '涪江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704003, 510704, '富乐街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704004, 510704, '游仙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704006, 510704, '四川省科学城春雷街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704101, 510704, '石马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704102, 510704, '新桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704104, 510704, '魏城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704105, 510704, '沉抗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704106, 510704, '忠兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704112, 510704, '松垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704121, 510704, '小枧镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704122, 510704, '信义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704123, 510704, '仙鹤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704124, 510704, '盐泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510704400, 510704, '四川省新华劳动教育管理所', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705101, 510705, '桑枣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705102, 510705, '花荄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705103, 510705, '黄土镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705104, 510705, '塔水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705105, 510705, '秀水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705106, 510705, '河清镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705108, 510705, '界牌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705110, 510705, '雎水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705116, 510705, '千佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510705202, 510705, '高川乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722101, 510722, '潼川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722104, 510722, '塔山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722106, 510722, '龙树镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722107, 510722, '石安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722108, 510722, '富顺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722109, 510722, '三元镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722110, 510722, '秋林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722112, 510722, '新德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722113, 510722, '新生镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722114, 510722, '鲁班镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722115, 510722, '景福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722116, 510722, '紫河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722118, 510722, '观桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722119, 510722, '郪江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722120, 510722, '中新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722121, 510722, '古井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722123, 510722, '西平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722124, 510722, '八洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722126, 510722, '乐安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722127, 510722, '建平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722131, 510722, '中太镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722132, 510722, '金石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722133, 510722, '新鲁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722135, 510722, '刘营镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722136, 510722, '灵兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722137, 510722, '芦溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722138, 510722, '立新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722140, 510722, '永明镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722141, 510722, '建中镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722145, 510722, '老马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722151, 510722, '北坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722201, 510722, '忠孝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510722204, 510722, '断石乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723001, 510723, '凤灵街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723100, 510723, '云溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723101, 510723, '玉龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723102, 510723, '富驿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723103, 510723, '金孔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723105, 510723, '黄甸镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723113, 510723, '巨龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723114, 510723, '高渠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723115, 510723, '鹅溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723116, 510723, '岐伯镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723117, 510723, '文通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723118, 510723, '永泰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723119, 510723, '九龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723120, 510723, '西陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723121, 510723, '嫘祖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723211, 510723, '大兴回族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510723222, 510723, '莲花湖乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725100, 510725, '文昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725101, 510725, '长卿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725102, 510725, '许州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725103, 510725, '黎雅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725105, 510725, '卧龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725106, 510725, '观义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725107, 510725, '玛瑙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725108, 510725, '石牛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725109, 510725, '自强镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725110, 510725, '仁和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725111, 510725, '双板镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725112, 510725, '金龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725113, 510725, '文兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725114, 510725, '演武镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725115, 510725, '宏仁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510725217, 510725, '宝石乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726100, 510726, '曲山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726101, 510726, '擂鼓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726103, 510726, '永昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726104, 510726, '通泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726105, 510726, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726106, 510726, '禹里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726107, 510726, '桂溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726108, 510726, '陈家坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726109, 510726, '小坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726205, 510726, '漩坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726206, 510726, '白坭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726208, 510726, '片口乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726209, 510726, '开坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726210, 510726, '坝底乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726211, 510726, '白什乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726212, 510726, '青片乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726214, 510726, '桃龙藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726216, 510726, '马槽乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510726217, 510726, '都贯乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727100, 510727, '龙安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727101, 510727, '古城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727103, 510727, '响岩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727107, 510727, '大桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727108, 510727, '水晶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727109, 510727, '江油关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727200, 510727, '高村乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727202, 510727, '坝子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727206, 510727, '锁江羌族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727207, 510727, '土城藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727208, 510727, '旧堡羌族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727209, 510727, '阔达藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727210, 510727, '黄羊关藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727211, 510727, '虎牙藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727212, 510727, '泗耳藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727213, 510727, '白马藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727214, 510727, '木座藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727215, 510727, '木皮藏族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727216, 510727, '豆叩羌族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510727217, 510727, '平通羌族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781006, 510781, '中坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781101, 510781, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781102, 510781, '三合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781103, 510781, '含增镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781104, 510781, '青莲镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781105, 510781, '彰明镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781106, 510781, '龙凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781107, 510781, '武都镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781108, 510781, '大康镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781109, 510781, '新安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781110, 510781, '战旗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781111, 510781, '双河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781112, 510781, '永胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781113, 510781, '小溪坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781114, 510781, '河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781115, 510781, '重华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781116, 510781, '厚坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781117, 510781, '二郎庙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781118, 510781, '马角镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781119, 510781, '雁门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781121, 510781, '西屏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781123, 510781, '大堰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781125, 510781, '方水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510781219, 510781, '枫顺乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802001, 510802, '东坝街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802002, 510802, '嘉陵街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802003, 510802, '河西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802004, 510802, '雪峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802005, 510802, '南河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802006, 510802, '上西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802011, 510802, '万缘街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802100, 510802, '荣山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802101, 510802, '大石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802102, 510802, '盘龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802103, 510802, '宝轮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802105, 510802, '三堆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802200, 510802, '白朝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802201, 510802, '金洞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510802202, 510802, '龙潭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811100, 510811, '元坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811101, 510811, '卫子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811102, 510811, '王家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811103, 510811, '磨滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811104, 510811, '柏林沟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811105, 510811, '太公镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811106, 510811, '虎跳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811107, 510811, '红岩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811108, 510811, '昭化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811111, 510811, '青牛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811112, 510811, '射箭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510811113, 510811, '清水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812100, 510812, '朝天镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812101, 510812, '大滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812102, 510812, '羊木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812103, 510812, '曾家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812104, 510812, '中子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812105, 510812, '沙河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812109, 510812, '两河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812110, 510812, '云雾山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812111, 510812, '水磨沟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812112, 510812, '李家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812214, 510812, '麻柳乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510812215, 510812, '临溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821100, 510821, '东河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821101, 510821, '嘉川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821102, 510821, '木门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821103, 510821, '白水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821105, 510821, '张华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821106, 510821, '黄洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821107, 510821, '普济镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821108, 510821, '三江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821110, 510821, '五权镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821111, 510821, '高阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821112, 510821, '双汇镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821113, 510821, '英萃镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821114, 510821, '国华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821115, 510821, '龙凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821116, 510821, '九龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821117, 510821, '米仓山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821118, 510821, '大德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821119, 510821, '大两镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821120, 510821, '水磨镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821121, 510821, '盐河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821122, 510821, '天星镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821204, 510821, '燕子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510821207, 510821, '檬子乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822100, 510822, '乔庄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822101, 510822, '青溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822102, 510822, '房石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822103, 510822, '关庄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822104, 510822, '凉水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822105, 510822, '竹园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822106, 510822, '木鱼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822107, 510822, '沙州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822108, 510822, '姚渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822109, 510822, '三锅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822111, 510822, '建峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822112, 510822, '乐安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822203, 510822, '茶坝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822207, 510822, '蒿溪回族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822210, 510822, '曲河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822212, 510822, '石坝乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822216, 510822, '大院回族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822220, 510822, '七佛乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822224, 510822, '骑马乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822225, 510822, '观音店乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510822400, 510822, '唐家河国家级自然保护区', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823100, 510823, '普安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823101, 510823, '龙源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823103, 510823, '盐店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823104, 510823, '柳沟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823105, 510823, '武连镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823106, 510823, '东宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823107, 510823, '开封镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823108, 510823, '元山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823109, 510823, '演圣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823110, 510823, '王河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823111, 510823, '公兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823112, 510823, '金仙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823113, 510823, '香沉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823114, 510823, '白龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823115, 510823, '鹤龄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823116, 510823, '杨村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823117, 510823, '羊岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823118, 510823, '江口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823119, 510823, '木马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823120, 510823, '剑门关镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823121, 510823, '汉阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823122, 510823, '下寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823123, 510823, '涂山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823124, 510823, '店子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823126, 510823, '张王镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823127, 510823, '姚家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823128, 510823, '义兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823210, 510823, '秀钟乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510823228, 510823, '樵店乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824100, 510824, '陵江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824102, 510824, '云峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824104, 510824, '东青镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824105, 510824, '白桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824107, 510824, '五龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824108, 510824, '永宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824109, 510824, '鸳溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824110, 510824, '三川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824111, 510824, '龙王镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824112, 510824, '元坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824113, 510824, '唤马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824114, 510824, '歧坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824115, 510824, '白驿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824116, 510824, '漓江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824117, 510824, '文昌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824118, 510824, '岳东镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824119, 510824, '石马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824120, 510824, '运山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824121, 510824, '东溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824122, 510824, '高坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824123, 510824, '龙山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824125, 510824, '亭子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824126, 510824, '百利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824127, 510824, '黄猫垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824128, 510824, '河地镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824208, 510824, '白鹤乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824209, 510824, '浙水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824223, 510824, '月山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824226, 510824, '白山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824228, 510824, '彭店乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824229, 510824, '桥溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824400, 510824, '苍溪九龙山自然保护区管理处', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824401, 510824, '苍溪县三溪口森林经营所', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510824402, 510824, '苍溪县良种场', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903001, 510903, '南津路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903002, 510903, '凯旋路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903004, 510903, '镇江寺街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903005, 510903, '育才路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903006, 510903, '介福路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903007, 510903, '嘉禾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903008, 510903, '广德街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903009, 510903, '富源路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903011, 510903, '灵泉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903012, 510903, '慈音街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903013, 510903, '九莲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903014, 510903, '南强街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903016, 510903, '西宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903017, 510903, '杨渡街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903100, 510903, '龙凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903101, 510903, '仁里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903103, 510903, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903104, 510903, '河沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903105, 510903, '新桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903106, 510903, '桂花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903107, 510903, '老池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903108, 510903, '保升镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903109, 510903, '北固镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510903203, 510903, '唐家乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904001, 510904, '柔刚街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904002, 510904, '凤凰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904100, 510904, '安居镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904101, 510904, '东禅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904102, 510904, '分水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904103, 510904, '石洞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904104, 510904, '拦江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904105, 510904, '保石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904106, 510904, '白马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904107, 510904, '中兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904108, 510904, '横山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904109, 510904, '会龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904110, 510904, '三家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904111, 510904, '玉丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904112, 510904, '西眉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904113, 510904, '磨溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904114, 510904, '聚贤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510904116, 510904, '常理镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921001, 510921, '普安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921100, 510921, '赤城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921101, 510921, '新会镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921102, 510921, '文井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921103, 510921, '明月镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921104, 510921, '常乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921105, 510921, '天福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921106, 510921, '红江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921107, 510921, '宝梵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921108, 510921, '大石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921109, 510921, '吉祥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921110, 510921, '鸣凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921111, 510921, '任隆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921112, 510921, '三凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921114, 510921, '蓬南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921115, 510921, '群利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921117, 510921, '金桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921118, 510921, '槐花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921207, 510921, '荷叶乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510921213, 510921, '高升乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923001, 510923, '盐井街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923100, 510923, '蓬莱镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923101, 510923, '隆盛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923102, 510923, '回马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923103, 510923, '天保镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923104, 510923, '河边镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923105, 510923, '卓筒井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923106, 510923, '玉峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923107, 510923, '象山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510923108, 510923, '金元镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981001, 510981, '太和街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981002, 510981, '平安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981100, 510981, '武安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981101, 510981, '大榆镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981102, 510981, '广兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981103, 510981, '金华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981104, 510981, '沱牌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981105, 510981, '太乙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981106, 510981, '金家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981107, 510981, '复兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981108, 510981, '天仙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981109, 510981, '仁和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981110, 510981, '青岗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981111, 510981, '洋溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981112, 510981, '香山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981113, 510981, '明星镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981114, 510981, '涪西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981117, 510981, '潼射镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981118, 510981, '曹碑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981119, 510981, '官升镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981120, 510981, '文升镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981121, 510981, '东岳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (510981122, 510981, '瞿河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002001, 511002, '城东街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002003, 511002, '城西街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002004, 511002, '玉溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002005, 511002, '牌楼街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002007, 511002, '乐贤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002100, 511002, '白马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002101, 511002, '史家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002102, 511002, '凌家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002103, 511002, '朝阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002104, 511002, '永安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002105, 511002, '全安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511002111, 511002, '龙门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011001, 511011, '东兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011002, 511011, '西林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011003, 511011, '新江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011004, 511011, '胜利街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011005, 511011, '高桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011100, 511011, '田家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011101, 511011, '郭北镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011102, 511011, '高梁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011103, 511011, '白合镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011104, 511011, '顺河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011107, 511011, '双才镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011109, 511011, '杨家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011110, 511011, '椑木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011111, 511011, '石子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011113, 511011, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011114, 511011, '平坦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011117, 511011, '双桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011118, 511011, '富溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511011120, 511011, '永福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024100, 511024, '严陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024102, 511024, '新店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024103, 511024, '向义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024104, 511024, '界牌镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024105, 511024, '龙会镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024106, 511024, '高石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024107, 511024, '东联镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024109, 511024, '镇西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024111, 511024, '山王镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024113, 511024, '观英滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024114, 511024, '新场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024115, 511024, '连界镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024116, 511024, '越溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511024119, 511024, '小河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025100, 511025, '重龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025102, 511025, '归德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025103, 511025, '鱼溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025105, 511025, '铁佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025106, 511025, '球溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025108, 511025, '龙结镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025109, 511025, '罗泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025110, 511025, '发轮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025112, 511025, '银山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025114, 511025, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025116, 511025, '水南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025118, 511025, '新桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025119, 511025, '明心寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025120, 511025, '双河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025121, 511025, '公民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025122, 511025, '龙江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025123, 511025, '双龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025124, 511025, '高楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025125, 511025, '陈家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025128, 511025, '孟塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025129, 511025, '马鞍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511025130, 511025, '狮子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511071006, 511071, '壕子口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511071101, 511071, '交通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511071103, 511071, '靖民镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083001, 511083, '古湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083002, 511083, '金鹅街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083102, 511083, '响石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083103, 511083, '圣灯镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083104, 511083, '黄家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083105, 511083, '双凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083106, 511083, '龙市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083108, 511083, '界市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083109, 511083, '石碾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083112, 511083, '石燕桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083114, 511083, '胡家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083115, 511083, '云顶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511083117, 511083, '普润镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102004, 511102, '大佛街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102006, 511102, '通江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102008, 511102, '海棠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102009, 511102, '绿心街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102010, 511102, '全福街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102101, 511102, '牟子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102102, 511102, '土主镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102103, 511102, '白马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102104, 511102, '茅桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102105, 511102, '青平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102106, 511102, '苏稽镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102107, 511102, '水口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102108, 511102, '安谷镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102109, 511102, '棉竹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102116, 511102, '平兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102117, 511102, '悦来镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511102118, 511102, '剑峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111002, 511111, '铜河街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111100, 511111, '沙湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111101, 511111, '嘉农镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111102, 511111, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111103, 511111, '福禄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111104, 511111, '牛石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111106, 511111, '葫芦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111107, 511111, '踏水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511111108, 511111, '轸溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112100, 511112, '竹根镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112101, 511112, '牛华镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112104, 511112, '金粟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112105, 511112, '金山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112107, 511112, '西坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112108, 511112, '冠英镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112109, 511112, '蔡金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511112110, 511112, '石麟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511113100, 511113, '永和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511113101, 511113, '金河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511113200, 511113, '和平彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511113201, 511113, '共安彝族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511113203, 511113, '永胜乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123100, 511123, '玉津镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123101, 511123, '孝姑镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123102, 511123, '石溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123103, 511123, '清溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123105, 511123, '罗城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123106, 511123, '芭沟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123107, 511123, '龙孔镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123108, 511123, '定文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123112, 511123, '舞雩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123113, 511123, '玉屏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123114, 511123, '大兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123115, 511123, '九井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123116, 511123, '铁炉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123117, 511123, '寿保镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511123118, 511123, '双溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124001, 511124, '研城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124101, 511124, '马踏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124102, 511124, '竹园镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124103, 511124, '研经镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124104, 511124, '周坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124105, 511124, '千佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124106, 511124, '王村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124107, 511124, '三江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124108, 511124, '东林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124110, 511124, '集益镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124111, 511124, '纯复镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124112, 511124, '宝五镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124113, 511124, '镇阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124114, 511124, '高凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511124115, 511124, '门坎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126001, 511126, '青衣街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126002, 511126, '漹城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126101, 511126, '黄土镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126102, 511126, '甘江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126106, 511126, '吴场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126107, 511126, '木城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126108, 511126, '华头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126110, 511126, '新场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511126111, 511126, '马村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129100, 511129, '沐溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129101, 511129, '永福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129102, 511129, '大楠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129103, 511129, '箭板镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129104, 511129, '舟坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129105, 511129, '黄丹镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129106, 511129, '利店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129107, 511129, '富新镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129205, 511129, '底堡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129206, 511129, '杨村乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129207, 511129, '高笋乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129208, 511129, '茨竹乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511129210, 511129, '武圣乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132100, 511132, '沙坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132101, 511132, '大堡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132102, 511132, '毛坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132103, 511132, '五渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132104, 511132, '新林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132105, 511132, '黑竹沟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132106, 511132, '红旗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132201, 511132, '宜坪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132206, 511132, '杨河乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132208, 511132, '新场乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132209, 511132, '平等乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132211, 511132, '金岩乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511132212, 511132, '勒乌乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133100, 511133, '民建镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133101, 511133, '荣丁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133102, 511133, '下溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133103, 511133, '苏坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133104, 511133, '烟峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133105, 511133, '劳动镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133106, 511133, '荍坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133107, 511133, '建设镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133108, 511133, '民主镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133109, 511133, '梅林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133110, 511133, '雪口山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133111, 511133, '三河口镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133211, 511133, '大竹堡乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133223, 511133, '高卓营乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511133226, 511133, '永红乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181001, 511181, '胜利街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181002, 511181, '峨山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181100, 511181, '绥山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181101, 511181, '高桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181102, 511181, '罗目镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181103, 511181, '九里镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181104, 511181, '龙池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181106, 511181, '符溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181108, 511181, '双福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181109, 511181, '桂花桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181110, 511181, '大为镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181112, 511181, '黄湾镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511181200, 511181, '龙门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302001, 511302, '中城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302002, 511302, '北城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302003, 511302, '西城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302004, 511302, '东南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302005, 511302, '舞凤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302006, 511302, '新建街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302007, 511302, '华凤街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302008, 511302, '和平路街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302009, 511302, '潆溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302010, 511302, '荆溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302011, 511302, '西山街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302012, 511302, '搬罾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302104, 511302, '共兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302105, 511302, '金台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302106, 511302, '芦溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302107, 511302, '李家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302108, 511302, '双桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302114, 511302, '渔溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511302200, 511302, '新复乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303001, 511303, '白塔街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303002, 511303, '清溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303003, 511303, '小龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303004, 511303, '龙门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303005, 511303, '青莲街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303006, 511303, '都京街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303008, 511303, '老君街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303009, 511303, '螺溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303103, 511303, '江陵镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303104, 511303, '擦耳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303106, 511303, '东观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303107, 511303, '长乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303108, 511303, '胜观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303110, 511303, '阙家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303111, 511303, '石圭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303112, 511303, '青居镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303115, 511303, '会龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303117, 511303, '走马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511303211, 511303, '佛门乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304001, 511304, '火花街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304003, 511304, '都尉街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304004, 511304, '文峰街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304005, 511304, '西兴街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304006, 511304, '南湖街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304101, 511304, '曲水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304102, 511304, '李渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304103, 511304, '吉安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304104, 511304, '龙岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304105, 511304, '金凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304106, 511304, '安福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304107, 511304, '安平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304108, 511304, '世阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304109, 511304, '大通镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304110, 511304, '一立镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304111, 511304, '龙蟠镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304112, 511304, '里坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304114, 511304, '金宝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304115, 511304, '三会镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304117, 511304, '双桂镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304119, 511304, '七宝寺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304121, 511304, '河西镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304215, 511304, '盐溪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511304220, 511304, '大兴乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321001, 511321, '滨江街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321002, 511321, '蜀北街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321003, 511321, '满福街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321004, 511321, '南隆街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321102, 511321, '老鸦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321103, 511321, '永定镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321104, 511321, '碑院镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321105, 511321, '谢河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321106, 511321, '盘龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321107, 511321, '铁佛塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321108, 511321, '石河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321109, 511321, '王家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321110, 511321, '富利镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321111, 511321, '楠木镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321112, 511321, '长坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321113, 511321, '东坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321114, 511321, '河坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321115, 511321, '定水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321116, 511321, '大王镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321117, 511321, '黄金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321118, 511321, '流马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321119, 511321, '建兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321120, 511321, '三官镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321121, 511321, '伏虎镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321122, 511321, '双佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321123, 511321, '花罐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321124, 511321, '大桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321125, 511321, '大河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321126, 511321, '万年镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321127, 511321, '升钟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321128, 511321, '升水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321129, 511321, '大坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321130, 511321, '神坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321131, 511321, '八尔湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321132, 511321, '石龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321133, 511321, '西水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321134, 511321, '桐坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321210, 511321, '五灵乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321229, 511321, '小元乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321233, 511321, '宏观乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321238, 511321, '双峰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511321243, 511321, '太霞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322001, 511322, '绥安街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322002, 511322, '朗池街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322003, 511322, '城南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322101, 511322, '渌井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322102, 511322, '东升镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322103, 511322, '骆市镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322104, 511322, '黄渡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322105, 511322, '小桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322106, 511322, '灵鹫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322107, 511322, '老林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322108, 511322, '木垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322109, 511322, '消水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322110, 511322, '双流镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322111, 511322, '绿水镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322113, 511322, '蓼叶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322114, 511322, '新店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322115, 511322, '回龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322116, 511322, '星火镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322117, 511322, '西桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322121, 511322, '望龙湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322122, 511322, '青山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322212, 511322, '木顶乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322216, 511322, '明德乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322219, 511322, '太蓬乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322221, 511322, '柏林乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322225, 511322, '悦中乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322230, 511322, '大庙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322232, 511322, '安化乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511322237, 511322, '清水乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323001, 511323, '周口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323002, 511323, '相如街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323101, 511323, '锦屏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323102, 511323, '巨龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323103, 511323, '正源镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323105, 511323, '金溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323106, 511323, '徐家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323107, 511323, '河舒镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323108, 511323, '利溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323109, 511323, '龙蚕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323110, 511323, '杨家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323111, 511323, '罗家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323112, 511323, '福德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323113, 511323, '银汉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323114, 511323, '兴旺镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323116, 511323, '睦坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323208, 511323, '平头乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323209, 511323, '鲜店乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323215, 511323, '金甲乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323217, 511323, '新园乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511323222, 511323, '石孔乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324001, 511324, '度门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324100, 511324, '金城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324101, 511324, '新政镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324102, 511324, '马鞍镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324103, 511324, '永乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324104, 511324, '日兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324105, 511324, '土门镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324106, 511324, '复兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324107, 511324, '观紫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324108, 511324, '先锋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324109, 511324, '三蛟镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324110, 511324, '回春镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324111, 511324, '柳垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324112, 511324, '义路镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324113, 511324, '立山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324114, 511324, '三河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324115, 511324, '瓦子镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324116, 511324, '大寅镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324117, 511324, '二道镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324118, 511324, '赛金镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324119, 511324, '丁字桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324120, 511324, '大仪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324121, 511324, '张公镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324122, 511324, '五福镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324124, 511324, '杨桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324125, 511324, '保平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324126, 511324, '文星镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324127, 511324, '双胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324129, 511324, '永光镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324130, 511324, '思德镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324202, 511324, '铜鼓乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324207, 511324, '凤仪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324210, 511324, '福临乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324212, 511324, '来仪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324226, 511324, '板桥乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324230, 511324, '芭蕉乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511324241, 511324, '柴井乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325001, 511325, '南台街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325002, 511325, '晋城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325101, 511325, '太平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325102, 511325, '大全镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325103, 511325, '仙林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325104, 511325, '古楼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325105, 511325, '义兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325106, 511325, '关文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325107, 511325, '凤鸣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325108, 511325, '青狮镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325109, 511325, '槐树镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325110, 511325, '鸣龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325111, 511325, '双凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325112, 511325, '高院镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325113, 511325, '仁和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325114, 511325, '多扶镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325115, 511325, '莲池镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325116, 511325, '常林镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325203, 511325, '占山乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325226, 511325, '祥龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325227, 511325, '车龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325229, 511325, '东太乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511325232, 511325, '罐垭乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381001, 511381, '保宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381003, 511381, '沙溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381004, 511381, '七里街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381005, 511381, '江南街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381006, 511381, '河溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381103, 511381, '彭城镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381105, 511381, '柏垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381106, 511381, '飞凤镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381107, 511381, '思依镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381108, 511381, '文成镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381109, 511381, '二龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381110, 511381, '石滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381111, 511381, '老观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381112, 511381, '龙泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381113, 511381, '千佛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381114, 511381, '望垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381116, 511381, '妙高镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381117, 511381, '洪山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381120, 511381, '水观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381121, 511381, '金垭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381122, 511381, '玉台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381124, 511381, '木兰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381127, 511381, '五马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381128, 511381, '天宫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381212, 511381, '桥楼乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381219, 511381, '博树回族乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381234, 511381, '峰占乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511381235, 511381, '鹤峰乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402001, 511402, '通惠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402002, 511402, '大石桥街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402003, 511402, '苏祠街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402102, 511402, '太和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402104, 511402, '尚义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402105, 511402, '多悦镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402106, 511402, '秦家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402107, 511402, '万胜镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402109, 511402, '思蒙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402110, 511402, '修文镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402112, 511402, '松江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402113, 511402, '崇礼镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402114, 511402, '富牛镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402115, 511402, '永寿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402116, 511402, '三苏镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511402121, 511402, '复兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403001, 511403, '凤鸣街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403003, 511403, '青龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403004, 511403, '观音街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403006, 511403, '谢家街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403007, 511403, '江口街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403110, 511403, '锦江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403118, 511403, '公义镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511403121, 511403, '黄丰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421001, 511421, '文林街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421002, 511421, '普宁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421003, 511421, '怀仁街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421004, 511421, '视高街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421102, 511421, '文宫镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421112, 511421, '禾加镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421116, 511421, '龙马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421117, 511421, '方家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421124, 511421, '大化镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421125, 511421, '高家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421127, 511421, '禄加镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421128, 511421, '宝飞镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421129, 511421, '彰加镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421130, 511421, '慈航镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421131, 511421, '汪洋镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421132, 511421, '钟祥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421133, 511421, '始建镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421134, 511421, '满井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421135, 511421, '富加镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421136, 511421, '龙正镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421137, 511421, '黑龙滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421140, 511421, '北斗镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421143, 511421, '宝马镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421144, 511421, '珠嘉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421146, 511421, '曹家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421160, 511421, '谢安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421161, 511421, '新店镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421162, 511421, '藕塘镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421163, 511421, '板桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421164, 511421, '贵平镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421200, 511421, '虞丞乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511421203, 511421, '青岗乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423101, 511423, '止戈镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423112, 511423, '洪川镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423113, 511423, '余坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423114, 511423, '槽渔滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423115, 511423, '中保镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423116, 511423, '东岳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423117, 511423, '柳江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423118, 511423, '高庙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423119, 511423, '瓦屋山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423120, 511423, '七里坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423121, 511423, '将军镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511423122, 511423, '中山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511424102, 511424, '仁美镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511424106, 511424, '杨场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511424108, 511424, '张场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511424109, 511424, '齐乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511424204, 511424, '顺龙乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425001, 511425, '青竹街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425102, 511425, '汉阳镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425108, 511425, '瑞峰镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425110, 511425, '西龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425112, 511425, '高台镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425217, 511425, '白果乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511425218, 511425, '罗波乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502006, 511502, '西郊街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502007, 511502, '安阜街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502008, 511502, '白沙湾街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502010, 511502, '象鼻街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502011, 511502, '沙坪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502012, 511502, '合江门街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502013, 511502, '大观楼街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502014, 511502, '双城街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502101, 511502, '李庄镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502102, 511502, '菜坝镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502104, 511502, '金坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502108, 511502, '牟坪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502109, 511502, '李端镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502111, 511502, '宗场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502112, 511502, '宋家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502115, 511502, '思坡镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502116, 511502, '白花镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502118, 511502, '双谊镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502120, 511502, '永兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511502121, 511502, '金秋湖镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503001, 511503, '南溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503002, 511503, '罗龙街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503003, 511503, '仙源街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503102, 511503, '刘家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503103, 511503, '江南镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503104, 511503, '大观镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503105, 511503, '汪家镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503106, 511503, '黄沙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503107, 511503, '仙临镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503108, 511503, '长兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511503109, 511503, '裴石镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504001, 511504, '柏溪街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504002, 511504, '南岸街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504003, 511504, '赵场街道', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504101, 511504, '南广镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504103, 511504, '观音镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504104, 511504, '横江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504105, 511504, '柳嘉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504106, 511504, '泥溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504107, 511504, '蕨溪镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504108, 511504, '商州镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504109, 511504, '高场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504110, 511504, '安边镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504111, 511504, '双龙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504113, 511504, '合什镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504119, 511504, '樟海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504202, 511504, '龙池乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511504203, 511504, '凤仪乡', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523100, 511523, '江安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523101, 511523, '红桥镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523104, 511523, '怡乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523105, 511523, '留耕镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523108, 511523, '五矿镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523109, 511523, '迎安镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523110, 511523, '夕佳山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523112, 511523, '铁清镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523113, 511523, '四面山镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523114, 511523, '大井镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523115, 511523, '阳春镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523116, 511523, '大妙镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523117, 511523, '仁和镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511523118, 511523, '下长镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524100, 511524, '长宁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524101, 511524, '梅硐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524102, 511524, '双河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524103, 511524, '硐底镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524104, 511524, '花滩镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524105, 511524, '竹海镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524106, 511524, '老翁镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524107, 511524, '古河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524110, 511524, '龙头镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524112, 511524, '铜鼓镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524113, 511524, '井江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524114, 511524, '铜锣镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511524115, 511524, '梅白镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525100, 511525, '文江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525101, 511525, '庆符镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525102, 511525, '沙河镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525103, 511525, '嘉乐镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525105, 511525, '罗场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525106, 511525, '蕉村镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525107, 511525, '可久镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525108, 511525, '来复镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525109, 511525, '月江镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525110, 511525, '胜天镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525111, 511525, '复兴镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525112, 511525, '落润镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511525113, 511525, '庆岭镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526100, 511526, '珙泉镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526101, 511526, '巡场镇', 4, '2022-11-09 10:39:28', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526102, 511526, '孝儿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526103, 511526, '底洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526104, 511526, '上罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526105, 511526, '洛表镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526106, 511526, '洛亥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526107, 511526, '王家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526108, 511526, '沐滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526110, 511526, '曹营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526205, 511526, '玉和苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526209, 511526, '罗渡苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511526212, 511526, '观斗苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527100, 511527, '筠连镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527101, 511527, '腾达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527102, 511527, '巡司镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527104, 511527, '沐爱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527107, 511527, '镇舟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527108, 511527, '蒿坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527109, 511527, '大雪山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527205, 511527, '乐义乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527208, 511527, '团林苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527209, 511527, '联合苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527210, 511527, '高坪苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511527211, 511527, '丰乐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528100, 511528, '古宋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528101, 511528, '僰王山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528103, 511528, '共乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528105, 511528, '莲花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528107, 511528, '九丝城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528108, 511528, '石海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528110, 511528, '周家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528111, 511528, '五星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528200, 511528, '大坝苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528205, 511528, '大河苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528206, 511528, '麒麟苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511528207, 511528, '仙峰苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529100, 511529, '锦屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529101, 511529, '新市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529102, 511529, '中都镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529103, 511529, '龙华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529104, 511529, '大乘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529107, 511529, '新安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529109, 511529, '书楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529110, 511529, '屏山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529208, 511529, '夏溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529210, 511529, '屏边彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511529211, 511529, '清平彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602001, 511602, '浓洄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602002, 511602, '北辰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602004, 511602, '广福街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602005, 511602, '万盛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602006, 511602, '中桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602007, 511602, '枣山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602101, 511602, '官盛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602102, 511602, '协兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602103, 511602, '浓溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602104, 511602, '悦来镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602105, 511602, '兴平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602106, 511602, '井河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602107, 511602, '花桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602108, 511602, '龙台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602109, 511602, '肖溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602110, 511602, '恒升镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602111, 511602, '石笋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602112, 511602, '白市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602113, 511602, '大安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602121, 511602, '穿石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602122, 511602, '大龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602123, 511602, '东岳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602207, 511602, '龙安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602208, 511602, '彭家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511602216, 511602, '白马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603001, 511603, '奎阁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603002, 511603, '大佛寺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603003, 511603, '龙塘街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603004, 511603, '新桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603101, 511603, '桂兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603102, 511603, '观阁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603103, 511603, '广兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603104, 511603, '代市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603105, 511603, '观塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603106, 511603, '护安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603107, 511603, '龙滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511603108, 511603, '虎城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621001, 511621, '九龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621002, 511621, '朝阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621101, 511621, '花园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621102, 511621, '坪滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621103, 511621, '龙孔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621104, 511621, '镇裕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621105, 511621, '白庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621106, 511621, '酉溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621107, 511621, '同兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621108, 511621, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621109, 511621, '秦溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621110, 511621, '顾县镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621111, 511621, '苟角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621112, 511621, '天平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621113, 511621, '石垭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621114, 511621, '乔家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621115, 511621, '罗渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621116, 511621, '裕民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621117, 511621, '中和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621118, 511621, '新场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621119, 511621, '普安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621121, 511621, '临溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621122, 511621, '西板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621123, 511621, '齐福镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621124, 511621, '伏龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621212, 511621, '黄龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511621216, 511621, '鱼峰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622100, 511622, '沿口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622101, 511622, '中心镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622102, 511622, '烈面镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622103, 511622, '飞龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622104, 511622, '乐善镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622105, 511622, '万善镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622106, 511622, '龙女镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622107, 511622, '三溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622108, 511622, '赛马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622109, 511622, '胜利镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622110, 511622, '金牛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622111, 511622, '清平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622112, 511622, '街子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622113, 511622, '万隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622114, 511622, '礼安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622115, 511622, '华封镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622116, 511622, '宝箴塞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622117, 511622, '石盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622118, 511622, '鸣钟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622201, 511622, '真静乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622202, 511622, '猛山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622203, 511622, '双星乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511622208, 511622, '鼓匠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623100, 511623, '鼎屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623101, 511623, '城北镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623102, 511623, '城南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623103, 511623, '柑子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623105, 511623, '观音桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623106, 511623, '牟家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623107, 511623, '合流镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623108, 511623, '坛同镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623109, 511623, '高滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623110, 511623, '九龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623111, 511623, '御临镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623112, 511623, '袁市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623113, 511623, '丰禾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623114, 511623, '八耳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623115, 511623, '石永镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623116, 511623, '兴仁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623117, 511623, '王家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623118, 511623, '石滓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623119, 511623, '三古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623120, 511623, '两河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623121, 511623, '太和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623122, 511623, '椿木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623123, 511623, '梁板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623124, 511623, '复盛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511623125, 511623, '黎家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681001, 511681, '双河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681002, 511681, '古桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681003, 511681, '华龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681101, 511681, '天池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681102, 511681, '禄市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681103, 511681, '永兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681104, 511681, '明月镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681105, 511681, '阳和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681106, 511681, '高兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681108, 511681, '溪口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681109, 511681, '庆华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511681200, 511681, '红岩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702001, 511702, '东城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702002, 511702, '西城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702003, 511702, '朝阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702004, 511702, '凤西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702005, 511702, '凤北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702102, 511702, '罗江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702103, 511702, '蒲家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702104, 511702, '复兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702105, 511702, '双龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702107, 511702, '江陵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702108, 511702, '碑庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702109, 511702, '磐石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702110, 511702, '东岳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702111, 511702, '梓桐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702112, 511702, '北山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702113, 511702, '金石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702114, 511702, '青宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511702208, 511702, '安云乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703001, 511703, '三里坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703002, 511703, '翠屏街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703005, 511703, '明月江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703006, 511703, '杨柳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703100, 511703, '亭子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703101, 511703, '福善镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703102, 511703, '麻柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703104, 511703, '大树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703105, 511703, '南岳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703106, 511703, '万家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703107, 511703, '景市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703108, 511703, '百节镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703109, 511703, '赵家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703113, 511703, '渡市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703114, 511703, '管村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703115, 511703, '石梯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703116, 511703, '石桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703117, 511703, '堡子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703118, 511703, '平滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703120, 511703, '双庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703122, 511703, '赵固镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703123, 511703, '桥湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703125, 511703, '大堰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703127, 511703, '罐子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703203, 511703, '安仁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703217, 511703, '龙会乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703234, 511703, '虎让乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511703235, 511703, '米城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722001, 511722, '东乡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722002, 511722, '蒲江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722101, 511722, '君塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722102, 511722, '清溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722103, 511722, '普光镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722104, 511722, '天生镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722105, 511722, '柏树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722106, 511722, '芭蕉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722107, 511722, '南坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722108, 511722, '五宝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722109, 511722, '峰城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722110, 511722, '土黄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722111, 511722, '华景镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722112, 511722, '樊哙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722113, 511722, '新华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722114, 511722, '黄金镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722115, 511722, '胡家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722116, 511722, '毛坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722118, 511722, '大成镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722120, 511722, '下八镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722122, 511722, '塔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722123, 511722, '茶河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722124, 511722, '厂溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722125, 511722, '红峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722127, 511722, '白马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722128, 511722, '桃花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722130, 511722, '马渡关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722131, 511722, '庙安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722132, 511722, '上峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722133, 511722, '南坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722204, 511722, '老君乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722205, 511722, '黄石乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722222, 511722, '三墩土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722223, 511722, '漆树土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722224, 511722, '龙泉土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722225, 511722, '渡口土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511722226, 511722, '石铁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723001, 511723, '淙城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723100, 511723, '新宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723101, 511723, '普安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723102, 511723, '回龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723104, 511723, '永兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723105, 511723, '讲治镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723106, 511723, '甘棠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723107, 511723, '任市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723108, 511723, '广福镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723109, 511723, '长岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723110, 511723, '八庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723111, 511723, '灵岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511723205, 511723, '梅家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724001, 511724, '竹阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724002, 511724, '东柳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724003, 511724, '白塔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724101, 511724, '乌木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724102, 511724, '团坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724103, 511724, '杨家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724104, 511724, '清河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724105, 511724, '柏林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724106, 511724, '石河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724107, 511724, '中华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724108, 511724, '石桥铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724109, 511724, '观音镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724110, 511724, '周家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724111, 511724, '石子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724112, 511724, '文星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724113, 511724, '妈妈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724114, 511724, '高穴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724115, 511724, '欧家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724116, 511724, '庙坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724117, 511724, '清水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724118, 511724, '月华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724119, 511724, '高明镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724120, 511724, '童家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724121, 511724, '天城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724125, 511724, '四合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724126, 511724, '永胜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724203, 511724, '朝阳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724214, 511724, '安吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724218, 511724, '八渡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724220, 511724, '杨通乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511724231, 511724, '川主乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725001, 511725, '渠江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725002, 511725, '渠南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725003, 511725, '天星街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725102, 511725, '临巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725103, 511725, '土溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725104, 511725, '三汇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725105, 511725, '文崇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725106, 511725, '涌兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725107, 511725, '贵福镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725108, 511725, '岩峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725109, 511725, '静边镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725110, 511725, '清溪场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725111, 511725, '宝城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725112, 511725, '有庆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725113, 511725, '鲜渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725114, 511725, '琅琊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725115, 511725, '李渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725116, 511725, '中滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725118, 511725, '三板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725119, 511725, '丰乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725120, 511725, '李馥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725121, 511725, '合力镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725123, 511725, '青龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725125, 511725, '卷硐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725126, 511725, '望溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725128, 511725, '龙凤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725129, 511725, '新市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725130, 511725, '万寿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725131, 511725, '渠北镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725132, 511725, '定远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725134, 511725, '东安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725215, 511725, '报恩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725216, 511725, '安北乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725220, 511725, '大义乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725224, 511725, '巨光乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725231, 511725, '望江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511725236, 511725, '拱市乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511771001, 511771, '斌郎街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511771002, 511771, '石板街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511771100, 511771, '河市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511771101, 511771, '金垭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511771201, 511771, '幺塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781001, 511781, '古东关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781100, 511781, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781101, 511781, '青花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781102, 511781, '旧院镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781103, 511781, '罗文镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781104, 511781, '河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781105, 511781, '草坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781106, 511781, '竹峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781107, 511781, '大竹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781108, 511781, '黄钟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781109, 511781, '官渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781110, 511781, '白沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781111, 511781, '沙滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781112, 511781, '石窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781113, 511781, '八台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781114, 511781, '石塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781115, 511781, '铁矿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781116, 511781, '大沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781117, 511781, '魏家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781118, 511781, '白果镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781119, 511781, '长坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781120, 511781, '井溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781121, 511781, '鹰背镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781123, 511781, '永宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781124, 511781, '固军镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781125, 511781, '黑宝山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781207, 511781, '蜂桶乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781210, 511781, '曾家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781216, 511781, '玉带乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781226, 511781, '庙子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511781228, 511781, '紫溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802001, 511802, '东城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802002, 511802, '西城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802003, 511802, '河北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802004, 511802, '青江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802005, 511802, '大兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802101, 511802, '草坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802107, 511802, '上里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802109, 511802, '晏场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802110, 511802, '多营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802111, 511802, '碧峰峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802112, 511802, '望鱼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802113, 511802, '周公山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511802114, 511802, '八步镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803001, 511803, '永兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803002, 511803, '蒙阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803101, 511803, '百丈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803102, 511803, '车岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803104, 511803, '马岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803105, 511803, '新店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803106, 511803, '蒙顶山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803107, 511803, '黑竹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803108, 511803, '红星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803109, 511803, '中峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803112, 511803, '茅河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803118, 511803, '前进镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511803119, 511803, '万古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822001, 511822, '严道街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822101, 511822, '花滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822102, 511822, '龙苍沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822103, 511822, '牛背山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822104, 511822, '新添镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822105, 511822, '青龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822106, 511822, '荥河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822107, 511822, '五宪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822202, 511822, '安靖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822203, 511822, '民建彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822207, 511822, '泗坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511822212, 511822, '宝峰彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823100, 511823, '富林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823101, 511823, '九襄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823102, 511823, '乌斯河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823103, 511823, '宜东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823104, 511823, '富庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823105, 511823, '清溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823106, 511823, '大树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823107, 511823, '皇木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823108, 511823, '唐家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823109, 511823, '富泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823110, 511823, '安乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823111, 511823, '前域镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823209, 511823, '富乡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823220, 511823, '马烈乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823224, 511823, '河南乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823225, 511823, '晒经乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823227, 511823, '小堡藏族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823228, 511823, '片马彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823229, 511823, '坭美彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823230, 511823, '永利彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511823231, 511823, '顺河彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824002, 511824, '新棉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824101, 511824, '回隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824102, 511824, '美罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824106, 511824, '安顺场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824202, 511824, '蟹螺藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824203, 511824, '永和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824206, 511824, '栗子坪彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824208, 511824, '迎政乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824210, 511824, '丰乐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824211, 511824, '新民藏族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824214, 511824, '草科藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511824216, 511824, '王岗坪彝族藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825100, 511825, '城厢镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825101, 511825, '始阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825102, 511825, '思经镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825103, 511825, '喇叭河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825104, 511825, '小河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825105, 511825, '仁义镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825106, 511825, '新场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825206, 511825, '乐英乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825210, 511825, '新华乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511825212, 511825, '兴业乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826001, 511826, '芦阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826101, 511826, '飞仙关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826102, 511826, '双石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826103, 511826, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826104, 511826, '大川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826105, 511826, '思延镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826106, 511826, '龙门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511826203, 511826, '宝盛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827100, 511827, '穆坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827101, 511827, '灵关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827102, 511827, '陇东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827201, 511827, '蜂桶寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827202, 511827, '硗碛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827205, 511827, '五龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511827206, 511827, '大溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902001, 511902, '东城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902002, 511902, '西城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902003, 511902, '回风街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902004, 511902, '江北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902005, 511902, '宕梁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902006, 511902, '玉堂街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902100, 511902, '大茅坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902101, 511902, '清江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902103, 511902, '水宁寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902104, 511902, '化成镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902105, 511902, '曾口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902106, 511902, '梁永镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902107, 511902, '三江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902108, 511902, '鼎山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902109, 511902, '大罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902122, 511902, '枣林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902123, 511902, '平梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902124, 511902, '光辉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902127, 511902, '凤溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902128, 511902, '天马山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902203, 511902, '大和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511902204, 511902, '白庙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903001, 511903, '登科街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903002, 511903, '文治街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903003, 511903, '司城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903100, 511903, '明阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903101, 511903, '玉山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903102, 511903, '渔溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903105, 511903, '花丛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903106, 511903, '柳林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903107, 511903, '下八庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903108, 511903, '茶坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903111, 511903, '上八庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903112, 511903, '关公镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903113, 511903, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903114, 511903, '双胜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903115, 511903, '群乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903118, 511903, '尹家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903119, 511903, '九镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511903120, 511903, '雪山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921001, 511921, '壁州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921100, 511921, '诺江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921101, 511921, '民胜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921102, 511921, '火炬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921103, 511921, '广纳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921104, 511921, '铁佛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921105, 511921, '麻石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921106, 511921, '至诚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921107, 511921, '洪口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921108, 511921, '沙溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921109, 511921, '瓦室镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921110, 511921, '永安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921111, 511921, '铁溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921112, 511921, '涪阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921113, 511921, '诺水河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921114, 511921, '毛浴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921115, 511921, '泥溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921116, 511921, '两河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921117, 511921, '板桥口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921118, 511921, '新场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921119, 511921, '杨柏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921120, 511921, '三溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921121, 511921, '春在镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921122, 511921, '龙凤场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921123, 511921, '空山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921124, 511921, '唱歌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921125, 511921, '陈河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921126, 511921, '青峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921127, 511921, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921128, 511921, '烟溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921129, 511921, '长坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921214, 511921, '松溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511921216, 511921, '胜利乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922001, 511922, '集州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922101, 511922, '沙河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922103, 511922, '长赤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922104, 511922, '正直镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922105, 511922, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922106, 511922, '光雾山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922108, 511922, '下两镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922109, 511922, '赶场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922110, 511922, '杨坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922111, 511922, '天池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922112, 511922, '关坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922113, 511922, '红光镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922114, 511922, '元潭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922115, 511922, '赤溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922116, 511922, '八庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922117, 511922, '双流镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922118, 511922, '坪河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922119, 511922, '桥亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922120, 511922, '和平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922121, 511922, '侯家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922122, 511922, '仁和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922123, 511922, '高塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922125, 511922, '兴马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922126, 511922, '关门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922127, 511922, '石滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922128, 511922, '高桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922130, 511922, '贵民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922131, 511922, '关路镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922132, 511922, '云顶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922133, 511922, '公山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922204, 511922, '团结乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511922229, 511922, '神门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923001, 511923, '同州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923002, 511923, '金宝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923003, 511923, '江口街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923101, 511923, '响滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923102, 511923, '西兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923103, 511923, '佛楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923104, 511923, '白衣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923105, 511923, '涵水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923106, 511923, '岳家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923107, 511923, '兰草镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923108, 511923, '驷马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923110, 511923, '元山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923111, 511923, '云台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923112, 511923, '邱家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923113, 511923, '笔山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923114, 511923, '镇龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923115, 511923, '得胜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923118, 511923, '灵山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923119, 511923, '土兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923120, 511923, '望京镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923121, 511923, '龙岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923122, 511923, '板庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923123, 511923, '泥龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923125, 511923, '青云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923126, 511923, '大寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923127, 511923, '土垭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923128, 511923, '澌岸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923130, 511923, '粉壁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923133, 511923, '三十二梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923134, 511923, '江家口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511923135, 511923, '岩口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511971007, 511971, '兴文街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511971008, 511971, '奇章街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (511971009, 511971, '时新街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002001, 512002, '莲花街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002002, 512002, '三贤祠街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002003, 512002, '资溪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002004, 512002, '狮子山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002005, 512002, '宝莲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002100, 512002, '雁江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002101, 512002, '松涛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002102, 512002, '宝台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002103, 512002, '临江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002104, 512002, '保和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002105, 512002, '老君镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002106, 512002, '中和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002107, 512002, '丹山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002108, 512002, '小院镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002109, 512002, '堪嘉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002110, 512002, '伍隍镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002111, 512002, '石岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002112, 512002, '东峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002113, 512002, '南津镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002116, 512002, '丰裕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002117, 512002, '迎接镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002118, 512002, '祥符镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512002400, 512002, '四川大堰劳动教养管理所', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021001, 512021, '岳城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021002, 512021, '石桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021100, 512021, '岳阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021101, 512021, '鸳大镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021103, 512021, '通贤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021104, 512021, '龙台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021105, 512021, '姚市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021106, 512021, '林凤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021107, 512021, '毛家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021108, 512021, '永清镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021109, 512021, '永顺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021110, 512021, '石羊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021111, 512021, '两板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021112, 512021, '护龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021113, 512021, '李家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021114, 512021, '元坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021115, 512021, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021116, 512021, '天林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021117, 512021, '镇子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021118, 512021, '文化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021119, 512021, '周礼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021120, 512021, '驯龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021121, 512021, '华严镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021122, 512021, '卧佛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021123, 512021, '长河源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021124, 512021, '忠义镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021125, 512021, '护建镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021126, 512021, '南薰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021127, 512021, '思贤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021129, 512021, '清流镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021130, 512021, '协和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021131, 512021, '朝阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021132, 512021, '乾龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021133, 512021, '大平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021205, 512021, '来凤乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021206, 512021, '天马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021212, 512021, '云峰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021213, 512021, '岳新乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021215, 512021, '东胜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021218, 512021, '高升乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021219, 512021, '横庙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021221, 512021, '白塔寺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021222, 512021, '双龙街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021227, 512021, '合义乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021240, 512021, '千佛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512021241, 512021, '拱桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022001, 512022, '天池街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022002, 512022, '南塔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022101, 512022, '石佛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022102, 512022, '回澜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022103, 512022, '石湍镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022104, 512022, '童家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022105, 512022, '宝林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022106, 512022, '大佛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022107, 512022, '良安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022108, 512022, '金顺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022109, 512022, '中和场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022110, 512022, '劳动镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022111, 512022, '中天镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022112, 512022, '佛星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022113, 512022, '蟠龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022114, 512022, '东山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022115, 512022, '通旅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022116, 512022, '高寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022117, 512022, '龙门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022118, 512022, '盛池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (512022204, 512022, '双河场乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201100, 513201, '马尔康镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201102, 513201, '松岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201103, 513201, '沙尔宗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201200, 513201, '梭磨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201201, 513201, '白湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201202, 513201, '党坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201203, 513201, '木尔宗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201204, 513201, '脚木足乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201206, 513201, '龙尔甲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201207, 513201, '大藏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201208, 513201, '康山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201209, 513201, '草登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513201210, 513201, '日部乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221100, 513221, '威州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221102, 513221, '映秀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221103, 513221, '卧龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221105, 513221, '水磨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221106, 513221, '漩口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221107, 513221, '三江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221108, 513221, '耿达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221109, 513221, '绵虒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513221111, 513221, '灞州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222100, 513222, '杂谷脑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222101, 513222, '米亚罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222102, 513222, '古尔沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222103, 513222, '薛城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222104, 513222, '桃坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222105, 513222, '朴头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222202, 513222, '甘堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222203, 513222, '蒲溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222204, 513222, '上孟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222205, 513222, '下孟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513222207, 513222, '通化乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223100, 513223, '凤仪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223101, 513223, '南新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223102, 513223, '叠溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223105, 513223, '富顺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223107, 513223, '土门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223109, 513223, '洼底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223110, 513223, '沙坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223111, 513223, '渭门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223112, 513223, '黑虎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223113, 513223, '沟口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513223114, 513223, '赤不苏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224100, 513224, '进安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224101, 513224, '川主寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224102, 513224, '青云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224103, 513224, '毛儿盖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224104, 513224, '镇江关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224105, 513224, '红土镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224106, 513224, '小河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224201, 513224, '十里回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224203, 513224, '安宏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224207, 513224, '镇坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224208, 513224, '岷江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224209, 513224, '大姓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224210, 513224, '白羊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224213, 513224, '小姓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224214, 513224, '燕云乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224219, 513224, '黄龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224221, 513224, '下八寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513224401, 513224, '松潘林业局', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225101, 513225, '漳扎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225102, 513225, '南坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225103, 513225, '双河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225104, 513225, '黑河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225105, 513225, '勿角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225201, 513225, '永和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225203, 513225, '白河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225205, 513225, '保华乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225209, 513225, '郭元乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225210, 513225, '草地乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225213, 513225, '玉瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225214, 513225, '大录乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225400, 513225, '九寨沟国营牧场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513225401, 513225, '九寨沟风景名胜管理局', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226101, 513226, '观音桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226102, 513226, '安宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226103, 513226, '勒乌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226104, 513226, '马奈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226200, 513226, '沙耳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226201, 513226, '庆宁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226202, 513226, '咯尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226205, 513226, '河东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226206, 513226, '河西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226207, 513226, '集沐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226208, 513226, '撒瓦脚乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226209, 513226, '卡拉脚乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226210, 513226, '俄热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226212, 513226, '二嘎里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226213, 513226, '阿科里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226215, 513226, '卡撒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226216, 513226, '曾达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226217, 513226, '独松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513226220, 513226, '毛日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227100, 513227, '美兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227101, 513227, '四姑娘山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227102, 513227, '两河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227103, 513227, '达维镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227104, 513227, '沃日镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227106, 513227, '宅垄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227107, 513227, '八角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227201, 513227, '崇德乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227202, 513227, '新桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227203, 513227, '美沃乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227204, 513227, '沙龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227208, 513227, '日尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227209, 513227, '结斯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227211, 513227, '木坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227213, 513227, '抚边乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227216, 513227, '窝底乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227217, 513227, '汗牛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513227218, 513227, '潘安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228100, 513228, '芦花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228101, 513228, '卡龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228102, 513228, '色尔古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228103, 513228, '西尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228104, 513228, '木苏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228105, 513228, '沙石多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228106, 513228, '知木林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228107, 513228, '扎窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228204, 513228, '瓦钵梁子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228206, 513228, '石碉楼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228207, 513228, '龙坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228208, 513228, '洛多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228210, 513228, '维古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228213, 513228, '晴朗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513228214, 513228, '慈坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230101, 513230, '南木达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230102, 513230, '中壤塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230103, 513230, '岗木达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230200, 513230, '蒲西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230201, 513230, '宗科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230202, 513230, '石里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230203, 513230, '吾伊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230205, 513230, '上杜柯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230206, 513230, '茸木达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230208, 513230, '尕多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513230210, 513230, '上壤塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231100, 513231, '阿坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231101, 513231, '贾洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231102, 513231, '麦尔玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231103, 513231, '河支镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231104, 513231, '各莫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231105, 513231, '安羌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231201, 513231, '麦昆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231203, 513231, '龙藏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231204, 513231, '求吉玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231208, 513231, '四洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231209, 513231, '安斗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231210, 513231, '柯河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231211, 513231, '垮沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231213, 513231, '查理乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513231214, 513231, '茸安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232100, 513232, '达扎寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232101, 513232, '唐克镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232102, 513232, '红星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232103, 513232, '辖曼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232104, 513232, '巴西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232105, 513232, '阿西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232106, 513232, '铁布镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232205, 513232, '麦溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232206, 513232, '嫩哇乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232210, 513232, '占哇乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232211, 513232, '降扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232214, 513232, '求吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232215, 513232, '包座乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513232400, 513232, '白河牧场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233100, 513233, '邛溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233101, 513233, '刷经寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233102, 513233, '瓦切镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233103, 513233, '安曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233104, 513233, '色地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233105, 513233, '龙日镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233202, 513233, '江茸乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233203, 513233, '查尔玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233205, 513233, '阿木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513233207, 513233, '麦洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301001, 513301, '炉城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301002, 513301, '榆林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301101, 513301, '姑咱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301102, 513301, '新都桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301103, 513301, '塔公镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301104, 513301, '沙德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301105, 513301, '金汤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301106, 513301, '甲根坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301107, 513301, '贡嘎山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301108, 513301, '鱼通镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301201, 513301, '雅拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301205, 513301, '麦崩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301208, 513301, '捧塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301211, 513301, '普沙绒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301212, 513301, '吉居乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301214, 513301, '呷巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513301218, 513301, '孔玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322100, 513322, '泸桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322101, 513322, '冷碛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322102, 513322, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322103, 513322, '磨西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322104, 513322, '燕子沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322105, 513322, '得妥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322106, 513322, '烹坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322107, 513322, '德威镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513322200, 513322, '岚安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323100, 513323, '章谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323101, 513323, '巴底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323102, 513323, '革什扎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323103, 513323, '东谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323104, 513323, '墨尔多山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323105, 513323, '甲居镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323106, 513323, '格宗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323107, 513323, '半扇门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323108, 513323, '丹东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323201, 513323, '巴旺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323209, 513323, '梭坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513323213, 513323, '太平桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324100, 513324, '呷尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324101, 513324, '烟袋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324102, 513324, '三垭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324103, 513324, '雪洼龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324104, 513324, '湾坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324105, 513324, '汤古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324106, 513324, '乌拉溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324107, 513324, '魁多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324108, 513324, '乃渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324202, 513324, '三岩龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324203, 513324, '上团乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324204, 513324, '八窝龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324209, 513324, '子耳彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324212, 513324, '小金彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324213, 513324, '朵洛彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513324216, 513324, '洪坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325100, 513325, '河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325101, 513325, '呷拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325102, 513325, '西俄洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325103, 513325, '红龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325104, 513325, '麻郎措镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325105, 513325, '波斯河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325201, 513325, '八角楼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325202, 513325, '普巴绒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325203, 513325, '祝桑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325204, 513325, '米龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325205, 513325, '八衣绒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325208, 513325, '牙衣河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325211, 513325, '德差乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325213, 513325, '柯拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325214, 513325, '瓦多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513325215, 513325, '木绒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326100, 513326, '鲜水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326101, 513326, '八美镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326102, 513326, '亚卓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326104, 513326, '玉科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326105, 513326, '仲尼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326106, 513326, '泰宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326107, 513326, '瓦日镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326201, 513326, '麻孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326202, 513326, '孔色乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326203, 513326, '葛卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326207, 513326, '扎拖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326208, 513326, '下拖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326210, 513326, '木茹乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326211, 513326, '甲斯孔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326213, 513326, '七美乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326214, 513326, '银恩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326216, 513326, '龙灯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326218, 513326, '色卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513326219, 513326, '沙冲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327100, 513327, '新都镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327101, 513327, '朱倭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327103, 513327, '虾拉沱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327104, 513327, '上罗柯马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327200, 513327, '泥巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327201, 513327, '雅德乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327202, 513327, '洛秋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327205, 513327, '仁达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327207, 513327, '旦都乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327208, 513327, '充古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327209, 513327, '更知乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327210, 513327, '卡娘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327211, 513327, '宗塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327212, 513327, '宗麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513327214, 513327, '下罗柯马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328100, 513328, '甘孜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328101, 513328, '查龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328102, 513328, '来马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328200, 513328, '呷拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328201, 513328, '色西底乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328202, 513328, '南多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328203, 513328, '生康乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328204, 513328, '贡隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328205, 513328, '扎科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328207, 513328, '昔色乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328208, 513328, '卡攻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328209, 513328, '仁果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328210, 513328, '拖坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328212, 513328, '庭卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328213, 513328, '下雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328214, 513328, '四通达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328215, 513328, '夺多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328216, 513328, '泥柯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328217, 513328, '茶扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328218, 513328, '大德乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513328219, 513328, '卡龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329100, 513329, '如龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329101, 513329, '拉日马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329102, 513329, '大盖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329103, 513329, '通宵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329104, 513329, '色威镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329105, 513329, '尤拉西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329200, 513329, '沙堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329203, 513329, '绕鲁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329207, 513329, '博美乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329209, 513329, '子拖西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329210, 513329, '和平乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329211, 513329, '洛古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329212, 513329, '雄龙西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329213, 513329, '麻日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329215, 513329, '友谊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513329217, 513329, '银多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330100, 513330, '更庆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330101, 513330, '马尼干戈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330102, 513330, '竹庆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330103, 513330, '阿须镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330105, 513330, '错阿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330106, 513330, '麦宿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330107, 513330, '打滚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330108, 513330, '龚垭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330109, 513330, '温拖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330110, 513330, '中扎科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330202, 513330, '岳巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330203, 513330, '八帮乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330205, 513330, '白垭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330206, 513330, '汪布顶乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330207, 513330, '柯洛洞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330208, 513330, '卡松渡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330209, 513330, '俄南乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330211, 513330, '俄支乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330213, 513330, '玉隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330216, 513330, '上燃姑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330219, 513330, '年古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330220, 513330, '浪多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513330223, 513330, '亚丁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331100, 513331, '建设镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331101, 513331, '阿察镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331102, 513331, '河坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331103, 513331, '盖玉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331200, 513331, '金沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331201, 513331, '绒盖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331202, 513331, '章都乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331203, 513331, '麻绒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331205, 513331, '热加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331206, 513331, '登龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331207, 513331, '赠科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331209, 513331, '麻邛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331210, 513331, '辽西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331211, 513331, '纳塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331212, 513331, '安孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513331214, 513331, '沙马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332100, 513332, '尼呷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332101, 513332, '洛须镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332102, 513332, '色须镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332103, 513332, '虾扎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332104, 513332, '温波镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332105, 513332, '蒙宜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332106, 513332, '阿日扎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332200, 513332, '真达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332201, 513332, '奔达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332202, 513332, '正科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332204, 513332, '德荣马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332206, 513332, '长沙贡马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332207, 513332, '呷衣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332208, 513332, '格孟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332210, 513332, '新荣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332211, 513332, '宜牛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332213, 513332, '起坞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332215, 513332, '长须贡马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332216, 513332, '长沙干马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332217, 513332, '长须干马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513332219, 513332, '瓦须乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333100, 513333, '色柯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333101, 513333, '翁达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333102, 513333, '洛若镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333103, 513333, '泥朵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333104, 513333, '甲学镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333201, 513333, '克果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333202, 513333, '然充乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333203, 513333, '康勒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333204, 513333, '大章乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333205, 513333, '大则乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333206, 513333, '亚龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333207, 513333, '塔子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333208, 513333, '年龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333210, 513333, '霍西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333211, 513333, '旭日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513333212, 513333, '杨各乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334100, 513334, '高城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334101, 513334, '甲洼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334102, 513334, '格聂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334103, 513334, '木拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334104, 513334, '君坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334105, 513334, '拉波镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334106, 513334, '觉吾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334201, 513334, '哈依乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334203, 513334, '莫坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334204, 513334, '亚火乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334205, 513334, '绒坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334206, 513334, '呷洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334207, 513334, '奔戈乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334208, 513334, '村戈乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334209, 513334, '禾尼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334210, 513334, '曲登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334213, 513334, '上木拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334216, 513334, '濯桑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334218, 513334, '藏坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334219, 513334, '格木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334221, 513334, '麦洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513334222, 513334, '德巫乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335100, 513335, '夏邛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335101, 513335, '中咱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335102, 513335, '措拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335103, 513335, '甲英镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335104, 513335, '地巫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335200, 513335, '拉哇乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335202, 513335, '竹巴龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335204, 513335, '苏哇龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335205, 513335, '昌波乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335208, 513335, '亚日贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335209, 513335, '波密乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335210, 513335, '莫多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335211, 513335, '松多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335212, 513335, '波戈溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335215, 513335, '茶洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335216, 513335, '列衣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513335217, 513335, '德达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336100, 513336, '香巴拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336101, 513336, '青德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336103, 513336, '热打镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336201, 513336, '沙贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336202, 513336, '水洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336205, 513336, '然乌乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336206, 513336, '洞松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336208, 513336, '定波乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336209, 513336, '正斗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513336210, 513336, '白依乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337100, 513337, '金珠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337101, 513337, '香格里拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337102, 513337, '桑堆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337103, 513337, '吉呷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337104, 513337, '噶通镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337201, 513337, '省母乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337204, 513337, '巨龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337205, 513337, '邓坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337206, 513337, '木拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337207, 513337, '赤土乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337209, 513337, '蒙自乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337210, 513337, '各卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513337212, 513337, '俄牙同乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338101, 513338, '瓦卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338102, 513338, '白松镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338103, 513338, '日雨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338104, 513338, '太阳谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338201, 513338, '徐龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338204, 513338, '奔都乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338205, 513338, '八日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338206, 513338, '古学乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338208, 513338, '贡波乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513338210, 513338, '茨巫乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401001, 513401, '北城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401002, 513401, '西城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401003, 513401, '东城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401004, 513401, '长安街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401005, 513401, '新村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401007, 513401, '海南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401008, 513401, '马道街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401101, 513401, '礼州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401102, 513401, '安宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401103, 513401, '川兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401104, 513401, '黄联关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401105, 513401, '佑君镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401106, 513401, '太和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401107, 513401, '安哈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401108, 513401, '阿七镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401109, 513401, '樟木箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401110, 513401, '琅环镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401111, 513401, '巴汝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401203, 513401, '四合乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401211, 513401, '开元乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401212, 513401, '大兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401215, 513401, '经久乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401219, 513401, '裕隆回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401220, 513401, '高草回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513401228, 513401, '马鞍山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402001, 513402, '城北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402002, 513402, '城南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402003, 513402, '古城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402101, 513402, '鹿厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402102, 513402, '黎溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402103, 513402, '通安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402104, 513402, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402105, 513402, '益门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402106, 513402, '绿水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402107, 513402, '云甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402108, 513402, '新发镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402109, 513402, '关河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402110, 513402, '彰冠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402111, 513402, '木古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402112, 513402, '六华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402113, 513402, '小黑箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402201, 513402, '内东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402202, 513402, '树堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402203, 513402, '新安傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513402204, 513402, '槽元乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422100, 513422, '乔瓦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422101, 513422, '瓦厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422102, 513422, '茶布朗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422103, 513422, '雅砻江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422104, 513422, '水洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422105, 513422, '列瓦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422201, 513422, '博科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422202, 513422, '宁朗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422203, 513422, '依吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422204, 513422, '俄亚纳西族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422206, 513422, '牦牛坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422207, 513422, '屋脚蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422208, 513422, '项脚蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422209, 513422, '李子坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422213, 513422, '西秋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422214, 513422, '克尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422215, 513422, '白碉苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422216, 513422, '三桷桠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422217, 513422, '倮波乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422218, 513422, '卡拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422219, 513422, '后所乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422220, 513422, '沙湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422222, 513422, '固增苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422223, 513422, '麦日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422224, 513422, '东朗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422225, 513422, '唐央乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513422226, 513422, '博窝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423001, 513423, '盐井街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423101, 513423, '卫城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423102, 513423, '梅雨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423103, 513423, '白乌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423104, 513423, '树河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423105, 513423, '黄草镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423106, 513423, '平川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423107, 513423, '泸沽湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423108, 513423, '官地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423109, 513423, '梅子坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423110, 513423, '润盐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423111, 513423, '长柏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423112, 513423, '甲米镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423113, 513423, '棉桠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423114, 513423, '盐塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423115, 513423, '金河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423116, 513423, '龙塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423117, 513423, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423206, 513423, '藤桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423207, 513423, '田湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423215, 513423, '右所乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423222, 513423, '沃底乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423223, 513423, '大坡蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513423224, 513423, '洼里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424001, 513424, '德州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424002, 513424, '昌州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424101, 513424, '永郎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424102, 513424, '乐跃镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424103, 513424, '麻栗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424106, 513424, '茨达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424109, 513424, '巴洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424113, 513424, '黑龙潭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424114, 513424, '铁炉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424115, 513424, '热河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424217, 513424, '南山傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513424218, 513424, '金沙傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426001, 513426, '鱼城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426002, 513426, '金江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426100, 513426, '鲹鱼河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426101, 513426, '铅锌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426102, 513426, '堵格镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426103, 513426, '姜州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426104, 513426, '乌东德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426105, 513426, '淌塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426106, 513426, '铁柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426107, 513426, '嘎吉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426108, 513426, '满银沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426109, 513426, '新街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426110, 513426, '鲁吉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426111, 513426, '大崇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426112, 513426, '松坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426202, 513426, '老君滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426203, 513426, '江西街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426235, 513426, '溜姑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513426251, 513426, '野租乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427101, 513427, '松新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427102, 513427, '竹寿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427103, 513427, '华弹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427104, 513427, '白鹤滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427106, 513427, '西瑶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427108, 513427, '大同镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427109, 513427, '骑骡沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427110, 513427, '跑马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427111, 513427, '幸福镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427112, 513427, '石梨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427113, 513427, '六铁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427116, 513427, '宁远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513427117, 513427, '俱乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428100, 513428, '普基镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428101, 513428, '荞窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428102, 513428, '螺髻山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428103, 513428, '五道箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428104, 513428, '花山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428105, 513428, '日都迪萨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428106, 513428, '西洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428107, 513428, '夹铁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428203, 513428, '黎安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428206, 513428, '大坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428213, 513428, '特兹乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428218, 513428, '瓦洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513428227, 513428, '大槽乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429100, 513429, '特木里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429101, 513429, '龙潭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429102, 513429, '拖觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429103, 513429, '九都镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429104, 513429, '乐安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429105, 513429, '俄里坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429106, 513429, '地洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429107, 513429, '牛角湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429206, 513429, '补尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429209, 513429, '拉果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429224, 513429, '委只洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513429226, 513429, '基只乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430100, 513430, '天地坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430101, 513430, '派来镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430102, 513430, '芦稿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430103, 513430, '对坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430104, 513430, '南瓦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430105, 513430, '百草坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430106, 513430, '洛觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430107, 513430, '德溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430108, 513430, '丙底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430201, 513430, '热水河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430206, 513430, '甲依乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430210, 513430, '基觉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430211, 513430, '小银木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430214, 513430, '青松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513430217, 513430, '山江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431100, 513431, '新城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431101, 513431, '城北镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431102, 513431, '竹核镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431103, 513431, '谷曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431104, 513431, '比尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431105, 513431, '解放沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431106, 513431, '三岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431107, 513431, '四开镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431108, 513431, '地莫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431109, 513431, '古里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431110, 513431, '俄尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431205, 513431, '美甘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431210, 513431, '博洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431227, 513431, '特布洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431228, 513431, '庆恒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431231, 513431, '补约乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431234, 513431, '金曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431238, 513431, '则普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431244, 513431, '日哈乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513431245, 513431, '哈甘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432100, 513432, '光明镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432101, 513432, '冕山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432102, 513432, '红莫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432103, 513432, '两河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432104, 513432, '米市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432105, 513432, '洛哈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432106, 513432, '尼波镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432202, 513432, '贺波洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432203, 513432, '鲁基乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432204, 513432, '李子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432205, 513432, '北山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432208, 513432, '且拖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513432210, 513432, '沙马拉达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433001, 513433, '高阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433101, 513433, '漫水湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433102, 513433, '大桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433103, 513433, '复兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433104, 513433, '泸沽镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433106, 513433, '彝海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433107, 513433, '石龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433109, 513433, '河边镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433110, 513433, '锦屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433112, 513433, '里庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433113, 513433, '惠安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433114, 513433, '宏模镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433115, 513433, '泽远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433116, 513433, '若水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433117, 513433, '棉沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433118, 513433, '磨房沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433226, 513433, '和爱藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433230, 513433, '新兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513433231, 513433, '健美乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434100, 513434, '越城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434101, 513434, '中所镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434102, 513434, '新民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434103, 513434, '乃托镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434104, 513434, '普雄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434105, 513434, '大瑞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434106, 513434, '竹阿觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434107, 513434, '书古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434108, 513434, '依洛地坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434109, 513434, '南箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434110, 513434, '贡莫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434111, 513434, '梅花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434112, 513434, '尔觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434113, 513434, '拉普镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434114, 513434, '马拖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434115, 513434, '大花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434116, 513434, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434211, 513434, '保安藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434235, 513434, '拉吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513434236, 513434, '申果庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435100, 513435, '新市坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435101, 513435, '田坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435102, 513435, '海棠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435103, 513435, '吉米镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435104, 513435, '斯觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435105, 513435, '普昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435106, 513435, '玉田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435107, 513435, '乌史大桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435108, 513435, '苏雄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435202, 513435, '新茶乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435211, 513435, '团结乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435212, 513435, '嘎日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513435219, 513435, '沙岱乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436100, 513436, '巴普镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436101, 513436, '洪溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436102, 513436, '新桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436103, 513436, '牛牛坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436104, 513436, '拉马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436105, 513436, '候播乃拖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436106, 513436, '候古莫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436200, 513436, '觉洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436201, 513436, '井叶特西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436202, 513436, '合姑洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436208, 513436, '典补乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436217, 513436, '九口乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436218, 513436, '洛俄依甘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436221, 513436, '柳洪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436225, 513436, '峨曲古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436229, 513436, '龙门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436231, 513436, '洒库乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513436235, 513436, '瓦候乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437100, 513437, '锦城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437101, 513437, '西宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437102, 513437, '汶水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437103, 513437, '黄琅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437104, 513437, '金沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437105, 513437, '永盛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437106, 513437, '渡口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437107, 513437, '马颈子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437108, 513437, '上田坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437109, 513437, '瓦岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437110, 513437, '宝山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437203, 513437, '箐口乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437214, 513437, '柑子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437217, 513437, '桂花乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437220, 513437, '山棱岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437222, 513437, '谷堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437224, 513437, '拉咪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437227, 513437, '千万贯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437233, 513437, '莫红乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437237, 513437, '巴姑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (513437241, 513437, '卡哈洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102016, 520102, '新华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102017, 520102, '西湖路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102018, 520102, '水口寺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102019, 520102, '中华南路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102020, 520102, '河滨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102021, 520102, '遵义路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102022, 520102, '兴关路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102023, 520102, '沙冲路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102024, 520102, '望城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102025, 520102, '太慈桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102026, 520102, '湘雅街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102027, 520102, '油榨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102028, 520102, '中曹司街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102029, 520102, '二戈街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102030, 520102, '龙洞堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102031, 520102, '花果园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102032, 520102, '小车河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102033, 520102, '五里冲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102200, 520102, '后巢乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102201, 520102, '云关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102202, 520102, '小碧布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520102203, 520102, '永乐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103019, 520103, '大营路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103020, 520103, '黔灵东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103021, 520103, '文昌阁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103022, 520103, '盐务街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103023, 520103, '普陀路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103024, 520103, '八鸽岩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103025, 520103, '毓秀路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103026, 520103, '威清门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103027, 520103, '市西河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103028, 520103, '头桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103029, 520103, '三桥路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103030, 520103, '马王街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103031, 520103, '金关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103032, 520103, '茶园路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103033, 520103, '杨惠街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103034, 520103, '渔安街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103035, 520103, '水东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520103100, 520103, '黔灵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111004, 520111, '贵筑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111005, 520111, '阳光街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111006, 520111, '清溪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111007, 520111, '溪北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111008, 520111, '黄河路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111009, 520111, '平桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111010, 520111, '小孟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111011, 520111, '金筑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111012, 520111, '党武街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111101, 520111, '青岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111102, 520111, '石板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111104, 520111, '麦坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111105, 520111, '燕楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111201, 520111, '孟关苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111204, 520111, '湖潮苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111205, 520111, '久安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111207, 520111, '高坡苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111208, 520111, '黔陶布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111209, 520111, '马铃布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520111400, 520111, '羊艾农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112004, 520112, '观溪路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112005, 520112, '新光路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112006, 520112, '新创路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112007, 520112, '龙广路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112008, 520112, '高新路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112101, 520112, '东风镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112102, 520112, '水田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112103, 520112, '羊昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112105, 520112, '下坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112106, 520112, '新场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112107, 520112, '百宜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112203, 520112, '新堡布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520112206, 520112, '偏坡布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113005, 520113, '泉湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113006, 520113, '大山洞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113007, 520113, '云城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113008, 520113, '龚家寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113009, 520113, '都拉营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113100, 520113, '艳山红镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113101, 520113, '麦架镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113102, 520113, '沙文镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113200, 520113, '都拉布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520113201, 520113, '牛场布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115001, 520115, '宾阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115002, 520115, '云潭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115003, 520115, '金华园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115004, 520115, '长岭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115005, 520115, '观山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115006, 520115, '世纪城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115007, 520115, '金阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115100, 520115, '金华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115101, 520115, '朱昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520115102, 520115, '百花湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121001, 520121, '硒城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121002, 520121, '云开街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121003, 520121, '紫兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121101, 520121, '双流镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121102, 520121, '金中镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121103, 520121, '冯三镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121104, 520121, '楠木渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121105, 520121, '龙岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121106, 520121, '永温镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121107, 520121, '花梨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121200, 520121, '南龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121202, 520121, '宅吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121204, 520121, '龙水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121205, 520121, '米坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121206, 520121, '禾丰布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121207, 520121, '南江布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121208, 520121, '高寨苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520121209, 520121, '毛云乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122001, 520122, '永阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122100, 520122, '永靖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122101, 520122, '温泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122102, 520122, '九庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122103, 520122, '小寨坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122104, 520122, '西山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122105, 520122, '养龙司镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122106, 520122, '石硐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122107, 520122, '鹿窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122108, 520122, '流长镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520122200, 520122, '青山苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123001, 520123, '龙场街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123002, 520123, '阳明洞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123003, 520123, '景阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123004, 520123, '扎佐街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123005, 520123, '久长街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123103, 520123, '六广镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123104, 520123, '六屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123105, 520123, '洒坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123106, 520123, '六桶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123107, 520123, '谷堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123108, 520123, '小箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520123204, 520123, '大石布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181002, 520181, '青龙山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181003, 520181, '巢凤街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181004, 520181, '滨湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181100, 520181, '红枫湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181101, 520181, '站街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181102, 520181, '卫城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181103, 520181, '新店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181104, 520181, '暗流镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181105, 520181, '犁倭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181201, 520181, '麦格苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181203, 520181, '王庄布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520181204, 520181, '流长苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201011, 520201, '黄土坡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201012, 520201, '红岩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201013, 520201, '荷泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201014, 520201, '荷城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201015, 520201, '杨柳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201016, 520201, '凤凰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201017, 520201, '德坞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201018, 520201, '月照街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201019, 520201, '双戛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201101, 520201, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201102, 520201, '汪家寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201103, 520201, '大湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201104, 520201, '木果镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201105, 520201, '保华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201202, 520201, '金盆苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201203, 520201, '南开苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520201204, 520201, '青林苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203001, 520203, '九龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203002, 520203, '银壶街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203003, 520203, '塔山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203102, 520203, '岩脚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203103, 520203, '木岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203104, 520203, '大用镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203105, 520203, '关寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203106, 520203, '牂牁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203107, 520203, '新华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203108, 520203, '龙河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203109, 520203, '新窑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203110, 520203, '郎岱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203203, 520203, '梭戛苗族彝族回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203204, 520203, '牛场苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203205, 520203, '新场乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203208, 520203, '中寨苗族彝族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203213, 520203, '落别布依族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520203214, 520203, '月亮河彝族布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204001, 520204, '尖山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204002, 520204, '双水街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204003, 520204, '老鹰山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204004, 520204, '董地街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204005, 520204, '海坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204006, 520204, '新桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204007, 520204, '以朵街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204008, 520204, '石龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204009, 520204, '红桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204100, 520204, '蟠龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204101, 520204, '发耳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204102, 520204, '都格镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204103, 520204, '鸡场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204104, 520204, '勺米镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204105, 520204, '化乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204106, 520204, '比德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204107, 520204, '阿戛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204108, 520204, '玉舍镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204109, 520204, '陡箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204110, 520204, '米箩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204200, 520204, '坪寨彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204201, 520204, '龙场苗族白族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204202, 520204, '营盘苗族彝族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204203, 520204, '顺场苗族彝族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204204, 520204, '花戛苗族布依族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204205, 520204, '杨梅彝族苗族回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204206, 520204, '新街彝族苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204207, 520204, '野钟苗族彝族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204208, 520204, '果布戛彝族苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520204209, 520204, '猴场苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281001, 520281, '亦资街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281002, 520281, '翰林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281003, 520281, '两河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281004, 520281, '红果街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281005, 520281, '胜境街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281006, 520281, '刘官街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281104, 520281, '民主镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281105, 520281, '大山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281106, 520281, '保田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281109, 520281, '石桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281111, 520281, '响水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281117, 520281, '柏果镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281121, 520281, '新民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281123, 520281, '盘关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281124, 520281, '竹海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281125, 520281, '英武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281126, 520281, '鸡场坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281127, 520281, '双凤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281128, 520281, '丹霞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281129, 520281, '乌蒙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281202, 520281, '普田回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281208, 520281, '坪地彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281210, 520281, '淤泥彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281211, 520281, '普古彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281212, 520281, '旧营白族彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281213, 520281, '羊场布依族白族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520281214, 520281, '保基苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302001, 520302, '老城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302002, 520302, '万里路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302003, 520302, '中华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302004, 520302, '迎红街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302005, 520302, '延安路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302006, 520302, '舟水桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302007, 520302, '中山路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302008, 520302, '北京路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302009, 520302, '长征街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302010, 520302, '礼仪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302011, 520302, '南关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302012, 520302, '忠庄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302013, 520302, '新蒲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302014, 520302, '新中街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302101, 520302, '巷口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302104, 520302, '海龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302105, 520302, '深溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302106, 520302, '金鼎山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302108, 520302, '新舟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302109, 520302, '虾子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302110, 520302, '三渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302111, 520302, '永乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520302112, 520302, '喇叭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303001, 520303, '上海路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303002, 520303, '洗马路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303003, 520303, '大连路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303004, 520303, '高桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303005, 520303, '董公寺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303006, 520303, '高坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303102, 520303, '团泽镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303104, 520303, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303105, 520303, '泗渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303106, 520303, '沙湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303107, 520303, '山盆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303108, 520303, '芝麻镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303109, 520303, '松林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520303110, 520303, '毛石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304001, 520304, '南白街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304002, 520304, '播南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304003, 520304, '影山湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304004, 520304, '桂花桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304005, 520304, '龙坑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304102, 520304, '三岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304103, 520304, '苟江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304104, 520304, '三合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304105, 520304, '乌江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304106, 520304, '龙坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304107, 520304, '团溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304108, 520304, '铁厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304109, 520304, '西坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304110, 520304, '尚嵇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304111, 520304, '茅栗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304112, 520304, '新民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304113, 520304, '鸭溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304114, 520304, '石板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304115, 520304, '乐山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304116, 520304, '枫香镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304117, 520304, '泮水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304118, 520304, '马蹄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304200, 520304, '平正仡佬族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520304201, 520304, '洪关苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322001, 520322, '海校街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322002, 520322, '娄山关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322101, 520322, '楚米镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322102, 520322, '新站镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322103, 520322, '松坎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322104, 520322, '高桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322105, 520322, '水坝塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322106, 520322, '官仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322107, 520322, '花秋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322108, 520322, '羊磴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322109, 520322, '九坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322110, 520322, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322111, 520322, '夜郎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322112, 520322, '木瓜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322113, 520322, '坡渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322114, 520322, '燎原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322115, 520322, '狮溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322116, 520322, '茅石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322117, 520322, '尧龙山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322118, 520322, '风水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322119, 520322, '容光镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322120, 520322, '芭蕉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322203, 520322, '小水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322205, 520322, '黄莲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520322207, 520322, '马鬃苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323001, 520323, '洋川街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323101, 520323, '郑场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323102, 520323, '旺草镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323103, 520323, '蒲场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323104, 520323, '风华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323105, 520323, '茅垭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323106, 520323, '枧坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323107, 520323, '宽阔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323108, 520323, '黄杨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323109, 520323, '青杠塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323110, 520323, '太白镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323111, 520323, '温泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323112, 520323, '坪乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323200, 520323, '大路槽乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520323201, 520323, '小关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324001, 520324, '凤仪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324002, 520324, '瑞濠街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324101, 520324, '瑞溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324102, 520324, '和溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324103, 520324, '安场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324104, 520324, '土坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324105, 520324, '流渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324106, 520324, '格林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324107, 520324, '新州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324108, 520324, '庙塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324109, 520324, '小雅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324110, 520324, '中观镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324111, 520324, '芙蓉江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324112, 520324, '班竹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324113, 520324, '碧峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324114, 520324, '乐俭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324115, 520324, '杨兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324116, 520324, '桴焉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324202, 520324, '谢坝仡佬族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520324203, 520324, '市坪苗族仡佬族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325001, 520325, '道真仡佬族苗族自治县尹珍街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325100, 520325, '玉溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325101, 520325, '三江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325102, 520325, '隆兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325103, 520325, '旧城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325104, 520325, '忠信镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325105, 520325, '洛龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325106, 520325, '阳溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325107, 520325, '三桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325108, 520325, '大磏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325109, 520325, '平模镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325110, 520325, '河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325200, 520325, '上坝土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325201, 520325, '棕坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520325202, 520325, '桃源乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326001, 520326, '丹砂街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326002, 520326, '都濡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326003, 520326, '大坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326101, 520326, '丰乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326102, 520326, '黄都镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326103, 520326, '涪洋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326104, 520326, '镇南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326105, 520326, '砚山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326106, 520326, '浞水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326107, 520326, '茅天镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326108, 520326, '柏村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326110, 520326, '泥高镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326111, 520326, '分水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326112, 520326, '蕉坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326203, 520326, '红丝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520326204, 520326, '石朝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327001, 520327, '龙泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327002, 520327, '何坝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327003, 520327, '花坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327004, 520327, '凤岭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327101, 520327, '进化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327102, 520327, '琊川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327103, 520327, '蜂岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327104, 520327, '永和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327106, 520327, '绥阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327107, 520327, '土溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327108, 520327, '永安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327110, 520327, '天桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327111, 520327, '王寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520327112, 520327, '新建镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328004, 520328, '湄江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328005, 520328, '黄家坝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328006, 520328, '鱼泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328101, 520328, '永兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328102, 520328, '复兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328103, 520328, '马山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328106, 520328, '高台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328107, 520328, '茅坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328108, 520328, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328109, 520328, '新南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328110, 520328, '石莲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328111, 520328, '西河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328112, 520328, '洗马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328113, 520328, '抄乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520328114, 520328, '天城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329001, 520329, '子营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329102, 520329, '龙溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329103, 520329, '构皮滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329104, 520329, '大乌江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329105, 520329, '敖溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329106, 520329, '龙家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329107, 520329, '松烟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329108, 520329, '关兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329109, 520329, '白泥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520329200, 520329, '花山苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330001, 520330, '东皇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330002, 520330, '九龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330003, 520330, '杉王街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330004, 520330, '马临街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330101, 520330, '土城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330102, 520330, '同民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330103, 520330, '醒民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330104, 520330, '隆兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330105, 520330, '习酒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330106, 520330, '回龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330107, 520330, '桑木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330108, 520330, '永安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330109, 520330, '良村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330110, 520330, '温水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330111, 520330, '仙源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330112, 520330, '官店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330113, 520330, '寨坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330114, 520330, '民化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330115, 520330, '二郎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330116, 520330, '二里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330117, 520330, '三岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330118, 520330, '大坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330119, 520330, '桃林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330120, 520330, '程寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330205, 520330, '双龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520330207, 520330, '坭坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381001, 520381, '市中街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381002, 520381, '文华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381003, 520381, '金华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381100, 520381, '天台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381101, 520381, '复兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381102, 520381, '大同镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381103, 520381, '旺隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381104, 520381, '葫市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381105, 520381, '元厚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381106, 520381, '官渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381107, 520381, '长期镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381108, 520381, '长沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381109, 520381, '两河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381110, 520381, '丙安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381202, 520381, '宝源乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381203, 520381, '石堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520381204, 520381, '白云乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382001, 520382, '盐津街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382002, 520382, '中枢街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382003, 520382, '苍龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382004, 520382, '坛厂街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382005, 520382, '鲁班街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382102, 520382, '长岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382104, 520382, '五马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382105, 520382, '茅坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382106, 520382, '九仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382107, 520382, '喜头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382108, 520382, '大坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382109, 520382, '三合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382110, 520382, '合马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382112, 520382, '火石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382113, 520382, '学孔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382114, 520382, '龙井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382115, 520382, '美酒河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382116, 520382, '高大坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382117, 520382, '茅台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520382201, 520382, '后山苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402001, 520402, '南街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402002, 520402, '东街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402003, 520402, '西街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402004, 520402, '北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402005, 520402, '东关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402006, 520402, '华西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402007, 520402, '西航街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402008, 520402, '新安街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402100, 520402, '宋旗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402101, 520402, '幺铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402102, 520402, '宁谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402103, 520402, '龙宫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402104, 520402, '双堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402105, 520402, '大西桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402106, 520402, '七眼桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402107, 520402, '蔡官镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402108, 520402, '轿子山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402109, 520402, '旧州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402200, 520402, '新场布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402201, 520402, '岩腊苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402202, 520402, '鸡场布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402203, 520402, '杨武布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402204, 520402, '东屯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402205, 520402, '黄腊布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520402206, 520402, '刘官乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403001, 520403, '安平街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403002, 520403, '鼓楼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403101, 520403, '白云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403102, 520403, '高峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403103, 520403, '天龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403104, 520403, '夏云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403105, 520403, '马场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403106, 520403, '乐平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403107, 520403, '齐伯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403202, 520403, '十字回族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520403203, 520403, '羊昌布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422001, 520422, '定南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422002, 520422, '穿洞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422003, 520422, '黄桶街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422004, 520422, '玉秀街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422101, 520422, '马官镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422102, 520422, '化处镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422103, 520422, '马场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422104, 520422, '白岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422105, 520422, '坪上镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422106, 520422, '鸡场坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422203, 520422, '补郎苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422204, 520422, '猴场苗族仡佬族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520422205, 520422, '猫洞苗族仡佬族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423001, 520423, '白马湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423002, 520423, '环翠街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423003, 520423, '丁旗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423004, 520423, '双龙山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423005, 520423, '宁西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423102, 520423, '黄果树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423105, 520423, '马厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423107, 520423, '良田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423108, 520423, '扁担山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423109, 520423, '募役镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423110, 520423, '江龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423111, 520423, '本寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423112, 520423, '六马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423204, 520423, '沙子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423206, 520423, '革利乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520423210, 520423, '简嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424002, 520424, '顶云街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424003, 520424, '关索街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424004, 520424, '龙潭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424007, 520424, '百合街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424102, 520424, '永宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424103, 520424, '岗乌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424104, 520424, '上关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424105, 520424, '坡贡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424107, 520424, '白水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424108, 520424, '新铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424109, 520424, '沙营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424110, 520424, '花江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424111, 520424, '断桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520424202, 520424, '普利乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425001, 520425, '松山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425002, 520425, '五峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425003, 520425, '云岭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425101, 520425, '格凸河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425102, 520425, '猴场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425103, 520425, '猫营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425104, 520425, '板当镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425105, 520425, '宗地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425106, 520425, '大营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425107, 520425, '坝羊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425108, 520425, '火花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425200, 520425, '白石岩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520425203, 520425, '四大寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502001, 520502, '市西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502002, 520502, '市东街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502003, 520502, '三板桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502005, 520502, '大新桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502006, 520502, '观音桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502007, 520502, '洪山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502008, 520502, '麻园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502009, 520502, '碧阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502010, 520502, '德溪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502011, 520502, '碧海街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502012, 520502, '青龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502013, 520502, '柏杨林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502014, 520502, '甘河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502100, 520502, '鸭池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502101, 520502, '梨树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502102, 520502, '岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502103, 520502, '朱昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502104, 520502, '田坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502105, 520502, '长春堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502106, 520502, '撒拉溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502107, 520502, '杨家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502108, 520502, '放珠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502109, 520502, '青场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502110, 520502, '水箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502111, 520502, '何官屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502112, 520502, '对坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502113, 520502, '大银镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502114, 520502, '林口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502115, 520502, '生机镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502116, 520502, '清水铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502117, 520502, '亮岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502118, 520502, '燕子口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502119, 520502, '八寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502120, 520502, '田坝桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502121, 520502, '海子街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502122, 520502, '小坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502123, 520502, '层台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502124, 520502, '小吉场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502125, 520502, '普宜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502126, 520502, '龙场营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502200, 520502, '千溪彝族苗族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502201, 520502, '阴底彝族苗族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502202, 520502, '野角乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502203, 520502, '大河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502204, 520502, '团结彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502205, 520502, '阿市苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502206, 520502, '大屯彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520502207, 520502, '田坎彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521001, 520521, '红旗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521002, 520521, '顺德街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521003, 520521, '慕俄格古城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521004, 520521, '九驿街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521005, 520521, '归化街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521006, 520521, '鹏程街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521101, 520521, '双山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521102, 520521, '猫场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521103, 520521, '马场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521104, 520521, '羊场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521105, 520521, '黄泥塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521106, 520521, '六龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521107, 520521, '达溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521108, 520521, '瓢井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521109, 520521, '长石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521110, 520521, '对江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521200, 520521, '东关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521201, 520521, '竹园彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521202, 520521, '响水白族彝族仡佬族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521203, 520521, '文阁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521204, 520521, '绿塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521205, 520521, '鼎新彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521206, 520521, '牛场苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521208, 520521, '小屯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521209, 520521, '理化苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521211, 520521, '凤山彝族蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521212, 520521, '安乐彝族仡佬族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521213, 520521, '核桃彝族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521214, 520521, '八堡彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521215, 520521, '兴隆苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521216, 520521, '果瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521217, 520521, '大山苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521218, 520521, '雨冲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521219, 520521, '黄泥彝族苗族满族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521220, 520521, '大水彝族苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521221, 520521, '沙厂彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521222, 520521, '普底彝族苗族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521223, 520521, '百纳彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521224, 520521, '三元彝族苗族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520521225, 520521, '星宿苗族彝族仡佬族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523001, 520523, '西洛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523002, 520523, '岩孔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523003, 520523, '五龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523004, 520523, '鼓场街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523005, 520523, '民兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523101, 520523, '安底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523102, 520523, '沙土镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523104, 520523, '禹谟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523105, 520523, '岚头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523106, 520523, '清池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523107, 520523, '柳塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523108, 520523, '平坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523109, 520523, '源村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523110, 520523, '高坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523111, 520523, '化觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523112, 520523, '茶园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523113, 520523, '木孔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523114, 520523, '长坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523115, 520523, '后山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523202, 520523, '石场苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523203, 520523, '桂花乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523204, 520523, '太平彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523215, 520523, '安洛苗族彝族满族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523216, 520523, '新化苗族彝族满族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523217, 520523, '大田彝族苗族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520523218, 520523, '马路彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524001, 520524, '双堰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524002, 520524, '文腾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524003, 520524, '金凤街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524004, 520524, '三甲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524005, 520524, '绮陌街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524006, 520524, '八步街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524007, 520524, '惠民街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524101, 520524, '桂果镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524102, 520524, '牛场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524103, 520524, '猫场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524104, 520524, '化起镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524105, 520524, '龙场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524107, 520524, '以那镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524108, 520524, '三塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524109, 520524, '阿弓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524110, 520524, '珠藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524111, 520524, '中寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524112, 520524, '马场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524113, 520524, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524114, 520524, '白泥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524115, 520524, '少普镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524116, 520524, '熊家场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524117, 520524, '黑土镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524201, 520524, '自强苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524202, 520524, '大平苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524203, 520524, '官寨苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524204, 520524, '茶店布依族苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524205, 520524, '金龙苗族彝族布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524206, 520524, '后寨苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524207, 520524, '鸡场苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524211, 520524, '实兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524213, 520524, '上坪寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520524215, 520524, '纳雍乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525001, 520525, '雍熙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525002, 520525, '文昌街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525003, 520525, '居仁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525004, 520525, '宣慰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525005, 520525, '利园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525006, 520525, '珙桐街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525101, 520525, '中岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525102, 520525, '阳长镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525103, 520525, '维新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525104, 520525, '龙场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525105, 520525, '乐治镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525107, 520525, '百兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525108, 520525, '张家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525114, 520525, '勺窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525115, 520525, '寨乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525116, 520525, '玉龙坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525117, 520525, '沙包镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525118, 520525, '水东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525119, 520525, '曙光镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525201, 520525, '新房彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525202, 520525, '厍东关彝族白族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525203, 520525, '董地苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525205, 520525, '化作苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525210, 520525, '姑开苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525211, 520525, '羊场苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525212, 520525, '锅圈岩苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525213, 520525, '昆寨苗族彝族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525214, 520525, '左鸠戛彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520525215, 520525, '猪场苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526001, 520526, '海边街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526002, 520526, '五里岗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526003, 520526, '六桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526004, 520526, '陕桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526005, 520526, '开华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526006, 520526, '雄山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526100, 520526, '草海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526101, 520526, '么站镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526102, 520526, '金钟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526103, 520526, '炉山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526104, 520526, '龙场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526105, 520526, '黑石头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526106, 520526, '哲觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526107, 520526, '观风海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526108, 520526, '牛棚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526109, 520526, '迤那镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526110, 520526, '中水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526111, 520526, '龙街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526112, 520526, '雪山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526113, 520526, '羊街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526114, 520526, '小海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526115, 520526, '盐仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526116, 520526, '东风镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526117, 520526, '二塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526118, 520526, '猴场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526119, 520526, '秀水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526120, 520526, '双龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526121, 520526, '麻乍镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526122, 520526, '兔街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526123, 520526, '海拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526124, 520526, '玉龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526125, 520526, '哈喇河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526126, 520526, '斗古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526127, 520526, '金斗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526128, 520526, '岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526129, 520526, '黑土河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526201, 520526, '新发布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526210, 520526, '石门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526211, 520526, '云贵乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526214, 520526, '板底乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520526215, 520526, '大街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527001, 520527, '双河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527002, 520527, '白果街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527003, 520527, '汉阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527004, 520527, '金银山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527005, 520527, '七家湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527102, 520527, '妈姑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527103, 520527, '财神镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527104, 520527, '六曲河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527105, 520527, '野马川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527106, 520527, '罗州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527107, 520527, '平山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527108, 520527, '哲庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527109, 520527, '古基镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527110, 520527, '朱明镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527111, 520527, '德卓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527200, 520527, '达依乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527201, 520527, '水塘堡彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527202, 520527, '兴发苗族彝族回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527203, 520527, '松林坡白族彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527204, 520527, '雉街彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527205, 520527, '珠市彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527207, 520527, '双坪彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527208, 520527, '铁匠苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527209, 520527, '辅处彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527210, 520527, '可乐彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527211, 520527, '河镇彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527213, 520527, '安乐溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527215, 520527, '结构彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527219, 520527, '古达苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520527220, 520527, '威奢乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581001, 520581, '水西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581002, 520581, '莲城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581003, 520581, '文峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581004, 520581, '杜鹃街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581005, 520581, '锦绣街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581100, 520581, '金碧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581101, 520581, '雨朵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581102, 520581, '大关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581103, 520581, '谷里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581104, 520581, '素朴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581105, 520581, '中坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581106, 520581, '重新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581107, 520581, '林泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581108, 520581, '金兰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581109, 520581, '锦星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581110, 520581, '洪水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581111, 520581, '甘棠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581112, 520581, '钟山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581113, 520581, '协和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581114, 520581, '观音洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581200, 520581, '五里布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581201, 520581, '绿化白族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581202, 520581, '新仁苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581203, 520581, '铁石苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581204, 520581, '太来彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581205, 520581, '永燊彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581206, 520581, '中建苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581207, 520581, '花溪彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581208, 520581, '定新彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581209, 520581, '金坡苗族彝族满族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581210, 520581, '仁和彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520581211, 520581, '红林彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602002, 520602, '环北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602003, 520602, '河西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602005, 520602, '灯塔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602006, 520602, '川硐街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602007, 520602, '锦江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602008, 520602, '铜兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602009, 520602, '正光街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602101, 520602, '坝黄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602102, 520602, '云场坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602103, 520602, '漾头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602200, 520602, '桐木坪侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602201, 520602, '滑石侗族苗族土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602202, 520602, '和平土家族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602203, 520602, '瓦屋侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520602204, 520602, '六龙山侗族土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603001, 520603, '谢桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603002, 520603, '茶店街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603003, 520603, '仁山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603004, 520603, '丹都街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603100, 520603, '万山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603200, 520603, '高楼坪侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603201, 520603, '黄道侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603202, 520603, '敖寨侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603203, 520603, '下溪侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603204, 520603, '鱼塘侗族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520603205, 520603, '大坪侗族土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621001, 520621, '双江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621002, 520621, '凯德街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621101, 520621, '闵孝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621102, 520621, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621103, 520621, '坝盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621104, 520621, '民和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621105, 520621, '桃映镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621106, 520621, '怒溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621202, 520621, '德旺土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520621204, 520621, '官和侗族土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622001, 520622, '皂角坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622002, 520622, '平溪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622003, 520622, '大龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622004, 520622, '麻音塘街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622100, 520622, '新店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622102, 520622, '朱家场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622103, 520622, '田坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520622200, 520622, '亚鱼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623001, 520623, '汤山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623002, 520623, '泉都街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623003, 520623, '中坝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623101, 520623, '本庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623102, 520623, '白沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623103, 520623, '龙塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623104, 520623, '花桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623105, 520623, '五德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623107, 520623, '河坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623201, 520623, '国荣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623202, 520623, '聚凤仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623203, 520623, '龙井仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623204, 520623, '大沙坝仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623205, 520623, '枫香仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623206, 520623, '青阳苗族仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623207, 520623, '石固仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623208, 520623, '坪地场仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623209, 520623, '甘溪仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520623210, 520623, '坪山仡佬族侗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624001, 520624, '思唐街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624002, 520624, '关中坝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624003, 520624, '双塘街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624101, 520624, '塘头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624102, 520624, '许家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624103, 520624, '大坝场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624104, 520624, '文家店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624105, 520624, '鹦鹉溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624106, 520624, '合朋溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624107, 520624, '张家寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624108, 520624, '孙家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624109, 520624, '青杠坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624110, 520624, '瓮溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624111, 520624, '凉水井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624112, 520624, '邵家桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624113, 520624, '大河坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624114, 520624, '亭子坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624115, 520624, '香坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624116, 520624, '长坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624117, 520624, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624201, 520624, '思林土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624203, 520624, '胡家湾苗族土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624204, 520624, '宽坪苗族土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624206, 520624, '枫芸土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624210, 520624, '三道水土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624211, 520624, '天桥土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624212, 520624, '兴隆土家族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520624213, 520624, '杨家坳苗族土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625001, 520625, '峨岭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625002, 520625, '龙津街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625003, 520625, '中兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625101, 520625, '板溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625102, 520625, '沙子坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625103, 520625, '天堂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625104, 520625, '木黄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625105, 520625, '合水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625106, 520625, '朗溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625107, 520625, '缠溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625108, 520625, '洋溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625109, 520625, '新寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625110, 520625, '杉树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625111, 520625, '刀坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625112, 520625, '紫薇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625113, 520625, '杨柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520625206, 520625, '罗场乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626001, 520626, '青龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626002, 520626, '玉水街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626003, 520626, '安化街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626101, 520626, '煎茶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626102, 520626, '潮砥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626103, 520626, '枫香溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626104, 520626, '稳坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626105, 520626, '复兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626106, 520626, '合兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626107, 520626, '高山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626108, 520626, '泉口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626109, 520626, '长堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626110, 520626, '共和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626111, 520626, '平原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626200, 520626, '荆角土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626201, 520626, '堰塘土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626202, 520626, '龙泉土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626203, 520626, '钱家土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626204, 520626, '沙溪土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626205, 520626, '楠杆土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626206, 520626, '长丰土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520626207, 520626, '桶井土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627001, 520627, '团结街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627002, 520627, '和平街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627003, 520627, '沙子街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627004, 520627, '祐溪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627101, 520627, '黑水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627102, 520627, '谯家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627103, 520627, '夹石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627104, 520627, '淇滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627105, 520627, '官舟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627106, 520627, '土地坳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627107, 520627, '思渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627108, 520627, '客田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627109, 520627, '洪渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627110, 520627, '中界镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627111, 520627, '甘溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627112, 520627, '板场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627113, 520627, '泉坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627114, 520627, '中寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627115, 520627, '黄土镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627116, 520627, '新景镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627117, 520627, '塘坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627203, 520627, '晓景乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520627211, 520627, '后坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628001, 520628, '大兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628002, 520628, '蓼皋街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628003, 520628, '世昌街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628004, 520628, '太平营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628005, 520628, '九江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628101, 520628, '盘石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628102, 520628, '盘信镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628103, 520628, '大坪场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628104, 520628, '普觉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628105, 520628, '寨英镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628106, 520628, '孟溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628107, 520628, '乌罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628108, 520628, '甘龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628109, 520628, '长兴堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628110, 520628, '迓驾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628112, 520628, '牛郎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628113, 520628, '黄板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628114, 520628, '平头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628115, 520628, '大路镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628116, 520628, '木树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628117, 520628, '冷水溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628118, 520628, '正大镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628203, 520628, '长坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628207, 520628, '妙隘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628209, 520628, '石梁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628210, 520628, '瓦溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628211, 520628, '永安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (520628214, 520628, '沙坝河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301001, 522301, '黄草街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301002, 522301, '兴泰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301003, 522301, '桔山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301004, 522301, '丰都街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301005, 522301, '坪东街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301006, 522301, '木贾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301007, 522301, '下五屯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301008, 522301, '万峰林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301009, 522301, '洒金街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301010, 522301, '马岭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301011, 522301, '顶效街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301012, 522301, '木陇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301100, 522301, '敬南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301101, 522301, '泥凼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301102, 522301, '南盘江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301103, 522301, '捧乍镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301104, 522301, '鲁布格镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301105, 522301, '三江口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301106, 522301, '乌沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301107, 522301, '白碗窑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301109, 522301, '威舍镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301110, 522301, '清水河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301112, 522301, '郑屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301113, 522301, '万屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301114, 522301, '鲁屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301115, 522301, '仓更镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301116, 522301, '七舍镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301117, 522301, '则戎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301118, 522301, '猪场坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301201, 522301, '沧江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301202, 522301, '洛万乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522301204, 522301, '雄武乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302001, 522302, '东湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302002, 522302, '城南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302003, 522302, '真武山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302004, 522302, '城北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302005, 522302, '陆官街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302006, 522302, '薏品田园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302101, 522302, '屯脚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302102, 522302, '巴铃镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302103, 522302, '百德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302104, 522302, '雨樟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302105, 522302, '潘家庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302106, 522302, '回龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302107, 522302, '下山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302108, 522302, '新龙场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302109, 522302, '大山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302110, 522302, '马马崖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302111, 522302, '波阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522302200, 522302, '鲁础营回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323001, 522323, '盘水街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323002, 522323, '南湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323003, 522323, '茶源街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323004, 522323, '九峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323101, 522323, '龙吟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323103, 522323, '江西坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323105, 522323, '地瓜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323107, 522323, '楼下镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323108, 522323, '兴中镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323109, 522323, '青山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323110, 522323, '罗汉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323111, 522323, '新店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323200, 522323, '白沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522323201, 522323, '高棉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324001, 522324, '东观街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324002, 522324, '莲城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324003, 522324, '三宝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324004, 522324, '腾龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324101, 522324, '沙子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324102, 522324, '碧痕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324103, 522324, '大厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324104, 522324, '鸡场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324105, 522324, '花贡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324106, 522324, '中营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324107, 522324, '光照镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324108, 522324, '茶马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324200, 522324, '长流乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324204, 522324, '紫马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324205, 522324, '安谷乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522324206, 522324, '三宝彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325001, 522325, '永丰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325002, 522325, '珉谷街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325003, 522325, '丰茂街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325004, 522325, '龙兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325005, 522325, '双峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325101, 522325, '龙场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325102, 522325, '者相镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325103, 522325, '北盘江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325104, 522325, '白层镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325105, 522325, '鲁贡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325106, 522325, '小屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325107, 522325, '长田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325108, 522325, '沙坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325109, 522325, '挽澜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325200, 522325, '连环乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325204, 522325, '平街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522325205, 522325, '鲁容乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326001, 522326, '王母街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326002, 522326, '平洞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326003, 522326, '新屯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326004, 522326, '蟠桃街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326101, 522326, '乐元镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326102, 522326, '打易镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326103, 522326, '乐旺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326104, 522326, '桑郎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326105, 522326, '麻山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326107, 522326, '石屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326108, 522326, '蔗香镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326109, 522326, '郊纳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326110, 522326, '大观镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326111, 522326, '边饶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326112, 522326, '昂武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522326206, 522326, '油迈瑶族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327001, 522327, '者楼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327002, 522327, '纳福街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327003, 522327, '高洛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327103, 522327, '丫他镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327104, 522327, '巧马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327105, 522327, '秧坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327107, 522327, '岩架镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327108, 522327, '八渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327109, 522327, '冗渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327110, 522327, '坡妹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327111, 522327, '双江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327112, 522327, '弼佑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522327204, 522327, '百口乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328001, 522328, '招堤街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328002, 522328, '栖凤街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328003, 522328, '钱相街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328004, 522328, '五福街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328005, 522328, '春潭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328101, 522328, '龙广镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328102, 522328, '德卧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328103, 522328, '万峰湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328104, 522328, '木咱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328105, 522328, '洒雨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328106, 522328, '普坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328107, 522328, '龙山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328110, 522328, '新桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328111, 522328, '海子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522328112, 522328, '笃山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601001, 522601, '城西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601002, 522601, '大十字街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601003, 522601, '西门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601004, 522601, '洗马河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601005, 522601, '湾溪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601006, 522601, '鸭塘街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601007, 522601, '开怀街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601008, 522601, '白午街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601009, 522601, '白果井街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601100, 522601, '三棵树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601101, 522601, '舟溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601103, 522601, '旁海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601104, 522601, '湾水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601105, 522601, '炉山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601106, 522601, '万潮镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601107, 522601, '龙场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601108, 522601, '碧波镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601109, 522601, '下司镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601110, 522601, '凯棠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522601111, 522601, '大风洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622100, 522622, '新州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622101, 522622, '旧州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622102, 522622, '重安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622103, 522622, '谷陇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622104, 522622, '平溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622105, 522622, '野洞河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622106, 522622, '浪洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622107, 522622, '上塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622203, 522622, '一碗水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622204, 522622, '纸房乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522622206, 522622, '翁坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623100, 522623, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623101, 522623, '杨柳塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623102, 522623, '双井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623103, 522623, '牛大场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623104, 522623, '马号镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623200, 522623, '白垛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623201, 522623, '甘溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522623203, 522623, '马溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624001, 522624, '文笔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624002, 522624, '武笔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624100, 522624, '八弓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624101, 522624, '台烈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624102, 522624, '瓦寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624103, 522624, '桐林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624104, 522624, '雪洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624105, 522624, '长吉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624106, 522624, '良上镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624200, 522624, '滚马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522624202, 522624, '款场乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625100, 522625, '舞阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625101, 522625, '蕉溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625102, 522625, '青溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625103, 522625, '羊坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625104, 522625, '羊场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625105, 522625, '都坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625106, 522625, '金堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625107, 522625, '江古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625201, 522625, '涌溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625203, 522625, '报京乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625204, 522625, '大地乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522625205, 522625, '尚寨土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626001, 522626, '?水街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626100, 522626, '思旸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626101, 522626, '水尾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626102, 522626, '天马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626103, 522626, '龙田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626104, 522626, '大有镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626105, 522626, '注溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626106, 522626, '凯本镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626107, 522626, '平庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626108, 522626, '客楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626202, 522626, '天星乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522626203, 522626, '羊桥土家族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627001, 522627, '凤城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627002, 522627, '邦洞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627003, 522627, '社学街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627004, 522627, '联山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627102, 522627, '坪地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627103, 522627, '蓝田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627104, 522627, '瓮洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627105, 522627, '高酿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627106, 522627, '石洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627107, 522627, '远口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627108, 522627, '坌处镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627109, 522627, '白市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627110, 522627, '渡马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627111, 522627, '江东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627112, 522627, '竹林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627202, 522627, '注溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522627203, 522627, '地湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628100, 522628, '三江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628101, 522628, '茅坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628102, 522628, '敦寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628103, 522628, '启蒙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628104, 522628, '平秋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628105, 522628, '铜鼓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628106, 522628, '平略镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628200, 522628, '大同乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628201, 522628, '新化乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628202, 522628, '隆里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628203, 522628, '钟灵乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628204, 522628, '偶里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628205, 522628, '固本乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628206, 522628, '河口乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522628207, 522628, '彦洞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629001, 522629, '仰阿莎街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629100, 522629, '柳川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629101, 522629, '岑松镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629102, 522629, '南加镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629103, 522629, '南明镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629104, 522629, '革东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629105, 522629, '太拥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629106, 522629, '磻溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629107, 522629, '久仰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629108, 522629, '南哨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629109, 522629, '南寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629110, 522629, '观么镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522629205, 522629, '敏洞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630001, 522630, '台拱街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630002, 522630, '萃文街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630101, 522630, '施洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630102, 522630, '南宫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630103, 522630, '革一镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630104, 522630, '方召镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630201, 522630, '排羊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630202, 522630, '台盘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522630204, 522630, '老屯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631001, 522631, '德凤街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631002, 522631, '高屯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631003, 522631, '龙形街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631102, 522631, '中潮镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631103, 522631, '孟彦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631104, 522631, '敖市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631105, 522631, '九潮镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631106, 522631, '岩洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631107, 522631, '水口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631108, 522631, '洪州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631109, 522631, '尚重镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631110, 522631, '双江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631111, 522631, '肇兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631112, 522631, '龙额镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631113, 522631, '永从镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631114, 522631, '茅贡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631115, 522631, '地坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631200, 522631, '顺化瑶族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631201, 522631, '雷洞瑶族水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631203, 522631, '罗里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631205, 522631, '坝寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631206, 522631, '口江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631211, 522631, '德顺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631212, 522631, '大稼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631213, 522631, '平寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522631214, 522631, '德化乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632001, 522632, '车民街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632100, 522632, '古州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632101, 522632, '忠诚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632102, 522632, '寨蒿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632103, 522632, '平永镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632104, 522632, '乐里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632105, 522632, '朗洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632106, 522632, '栽麻镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632107, 522632, '平江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632108, 522632, '八开镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632202, 522632, '崇义乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632204, 522632, '三江水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632205, 522632, '仁里水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632206, 522632, '塔石瑶族水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632208, 522632, '定威水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632209, 522632, '兴华水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632210, 522632, '计划乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632211, 522632, '水尾水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632212, 522632, '平阳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522632213, 522632, '两汪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633001, 522633, '丙梅街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633100, 522633, '丙妹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633101, 522633, '贯洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633102, 522633, '洛香镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633103, 522633, '下江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633104, 522633, '宰便镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633105, 522633, '西山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633106, 522633, '停洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633107, 522633, '往洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633108, 522633, '庆云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633109, 522633, '斗里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633110, 522633, '东朗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633111, 522633, '加鸠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633200, 522633, '高增乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633201, 522633, '谷坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633204, 522633, '刚边壮族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633205, 522633, '加榜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633206, 522633, '秀塘壮族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633208, 522633, '翠里瑶族壮族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522633212, 522633, '加勉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634001, 522634, '龙头街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634100, 522634, '丹江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634101, 522634, '西江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634102, 522634, '永乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634103, 522634, '郎德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634104, 522634, '大塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634200, 522634, '望丰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634203, 522634, '达地水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522634204, 522634, '方祥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635001, 522635, '杏山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635002, 522635, '金竹街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635101, 522635, '谷硐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635103, 522635, '宣威镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635105, 522635, '龙山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635106, 522635, '贤昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522635203, 522635, '坝芒布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636001, 522636, '金泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636100, 522636, '龙泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636101, 522636, '兴仁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636102, 522636, '排调镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636103, 522636, '扬武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636202, 522636, '雅灰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522636203, 522636, '南皋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701001, 522701, '广惠街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701002, 522701, '文峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701004, 522701, '小围寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701005, 522701, '沙包堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701006, 522701, '绿茵湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701106, 522701, '墨冲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701107, 522701, '平浪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701110, 522701, '毛尖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701111, 522701, '匀东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522701208, 522701, '归兰水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702001, 522702, '金山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702002, 522702, '马场坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702102, 522702, '凤山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702103, 522702, '陆坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702105, 522702, '龙昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702106, 522702, '牛场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702107, 522702, '道坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522702203, 522702, '仙桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722001, 522722, '玉屏街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722101, 522722, '朝阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722102, 522722, '茂兰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722104, 522722, '甲良镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722105, 522722, '佳荣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722107, 522722, '小七孔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722211, 522722, '瑶山瑶族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522722212, 522722, '黎明关水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723001, 522723, '金南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723002, 522723, '宝山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723102, 522723, '新巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723108, 522723, '德新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723109, 522723, '盘江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723110, 522723, '沿山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723111, 522723, '昌明镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522723112, 522723, '云雾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725001, 522725, '雍阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725002, 522725, '瓮水街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725101, 522725, '平定营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725103, 522725, '中坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725104, 522725, '建中镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725105, 522725, '永和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725106, 522725, '珠藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725107, 522725, '玉山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725108, 522725, '天文镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725109, 522725, '银盏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725110, 522725, '猴场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725111, 522725, '江界河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522725205, 522725, '岚关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726001, 522726, '井城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726108, 522726, '百泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726109, 522726, '影山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726110, 522726, '基长镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726111, 522726, '下司镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726112, 522726, '麻尾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726113, 522726, '麻万镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726114, 522726, '上司镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522726115, 522726, '玉水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727001, 522727, '金盆街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727100, 522727, '平舟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727101, 522727, '牙舟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727102, 522727, '通州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727103, 522727, '大塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727104, 522727, '克度镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727105, 522727, '塘边镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727106, 522727, '甲茶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727107, 522727, '者密镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727108, 522727, '掌布镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522727200, 522727, '卡蒲毛南族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728001, 522728, '斛兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728107, 522728, '龙坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728108, 522728, '边阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728109, 522728, '沫阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728110, 522728, '逢亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728111, 522728, '罗悃镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728112, 522728, '茂井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728113, 522728, '红水河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728114, 522728, '木引镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522728219, 522728, '凤亭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729001, 522729, '长寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729101, 522729, '广顺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729103, 522729, '摆所镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729104, 522729, '代化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729105, 522729, '白云山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729106, 522729, '鼓扬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522729209, 522729, '敦操乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522730001, 522730, '冠山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522730100, 522730, '龙山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522730102, 522730, '醒狮镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522730103, 522730, '谷脚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522730104, 522730, '湾滩河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522730105, 522730, '洗马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731001, 522731, '涟江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731002, 522731, '濛江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731003, 522731, '明田街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731102, 522731, '好花红镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731103, 522731, '摆金镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731104, 522731, '雅水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731105, 522731, '断杉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731106, 522731, '芦山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731107, 522731, '王佑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731108, 522731, '羡塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522731109, 522731, '岗度镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732001, 522732, '三合街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732002, 522732, '凤羽街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732111, 522732, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732112, 522732, '普安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732113, 522732, '都江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732114, 522732, '中和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732115, 522732, '周覃镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (522732116, 522732, '九阡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102001, 530102, '华山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102002, 530102, '护国街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102003, 530102, '大观街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102004, 530102, '龙翔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102005, 530102, '丰宁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102006, 530102, '莲华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102007, 530102, '红云街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102008, 530102, '黑林铺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102009, 530102, '普吉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102010, 530102, '西翥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530102401, 530102, '昆明国家高新技术产业开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103001, 530103, '拓东街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103002, 530103, '鼓楼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103003, 530103, '东华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103004, 530103, '联盟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103005, 530103, '金辰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103006, 530103, '青云街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103007, 530103, '龙泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103008, 530103, '茨坝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103009, 530103, '双龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103010, 530103, '松华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103011, 530103, '滇源街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530103012, 530103, '阿子营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111001, 530111, '关上街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111002, 530111, '太和街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111003, 530111, '吴井街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111004, 530111, '金马街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111005, 530111, '小板桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111006, 530111, '官渡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111007, 530111, '矣六街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111008, 530111, '六甲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111009, 530111, '大板桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111010, 530111, '阿拉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530111402, 530111, '昆明经济技术开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112001, 530112, '西苑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112002, 530112, '马街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112003, 530112, '金碧街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112004, 530112, '永昌街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112005, 530112, '前卫街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112006, 530112, '福海街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112007, 530112, '棕树营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112008, 530112, '碧鸡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112009, 530112, '海口街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112010, 530112, '团结街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530112403, 530112, '昆明滇池国家旅游度假区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113001, 530113, '铜都街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113002, 530113, '碧谷街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113102, 530113, '汤丹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113103, 530113, '因民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113104, 530113, '阿旺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113105, 530113, '乌龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113106, 530113, '红土地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113107, 530113, '拖布卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530113201, 530113, '舍块乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114001, 530114, '龙城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114002, 530114, '洛龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114003, 530114, '斗南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114004, 530114, '乌龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114005, 530114, '吴家营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114006, 530114, '雨花街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114007, 530114, '七甸街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114008, 530114, '洛羊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114009, 530114, '大渔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530114010, 530114, '马金铺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115001, 530115, '昆阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115002, 530115, '宝峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115003, 530115, '晋城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115101, 530115, '二街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115102, 530115, '上蒜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115103, 530115, '六街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115200, 530115, '双河彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530115201, 530115, '夕阳彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124001, 530124, '永定街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124002, 530124, '大营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124103, 530124, '罗免镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124104, 530124, '赤鹫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124105, 530124, '东村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124106, 530124, '款庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530124107, 530124, '散旦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125001, 530125, '匡远街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125002, 530125, '汤池街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125003, 530125, '南羊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125102, 530125, '北古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125103, 530125, '狗街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125105, 530125, '竹山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125106, 530125, '马街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125201, 530125, '耿家营彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125202, 530125, '九乡彝族回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530125404, 530125, '昆明阳宗海风景名胜区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126001, 530126, '鹿阜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126002, 530126, '石林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126003, 530126, '板桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126105, 530126, '西街口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126106, 530126, '长湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126107, 530126, '圭山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530126201, 530126, '大可乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127001, 530127, '嵩阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127002, 530127, '杨桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127102, 530127, '小街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127103, 530127, '杨林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127104, 530127, '牛栏江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127401, 530127, '嵩明杨林经济技术开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530127402, 530127, '云南省嵩明职业教育基地', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128001, 530128, '屏山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128002, 530128, '崇德街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128102, 530128, '撒营盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128103, 530128, '转龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128104, 530128, '茂山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128105, 530128, '团街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128106, 530128, '中屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128107, 530128, '皎平渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128108, 530128, '乌东德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128109, 530128, '翠华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128110, 530128, '九龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128204, 530128, '云龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128207, 530128, '汤郎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128208, 530128, '马鹿塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128211, 530128, '则黑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128212, 530128, '乌蒙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128213, 530128, '雪山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530128401, 530128, '禄劝工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129001, 530129, '仁德街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129002, 530129, '塘子街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129003, 530129, '金所街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129103, 530129, '羊街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129104, 530129, '柯渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129105, 530129, '倘甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129106, 530129, '功山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129107, 530129, '河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129108, 530129, '七星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129109, 530129, '先锋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129110, 530129, '鸡街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129111, 530129, '凤合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129205, 530129, '六哨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129208, 530129, '联合乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129209, 530129, '金源乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129210, 530129, '甸沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530129405, 530129, '昆明倘甸产业园区轿子山旅游开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181001, 530181, '连然街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181002, 530181, '金方街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181003, 530181, '八街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181004, 530181, '温泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181005, 530181, '青龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181006, 530181, '禄脿街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181007, 530181, '草铺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181008, 530181, '太平新城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530181009, 530181, '县街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302001, 530302, '南宁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302002, 530302, '建宁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302003, 530302, '白石江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302004, 530302, '寥廓街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302005, 530302, '西城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302006, 530302, '益宁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302007, 530302, '文华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302008, 530302, '太和街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302009, 530302, '潇湘街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302010, 530302, '翠峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302011, 530302, '三宝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302012, 530302, '沿江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302013, 530302, '珠街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302102, 530302, '越州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302103, 530302, '东山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530302104, 530302, '茨营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303001, 530303, '西平街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303002, 530303, '龙华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303003, 530303, '金龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303004, 530303, '花山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303101, 530303, '白水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303102, 530303, '盘江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303201, 530303, '炎方乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303202, 530303, '播乐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303203, 530303, '大坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303204, 530303, '菱角乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530303205, 530303, '德泽乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304001, 530304, '通泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304002, 530304, '鸡头村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304003, 530304, '王家庄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304004, 530304, '张安屯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304005, 530304, '旧县街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304100, 530304, '马过河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304101, 530304, '纳章镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304200, 530304, '马鸣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304201, 530304, '大庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530304202, 530304, '月望乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322001, 530322, '中枢街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322002, 530322, '同乐街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322102, 530322, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322103, 530322, '三岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322104, 530322, '马街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322105, 530322, '召夸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322106, 530322, '大莫古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322107, 530322, '芳华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322108, 530322, '小百户镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322201, 530322, '活水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322202, 530322, '龙海乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530322501, 530322, '陆良华侨管理区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323001, 530323, '丹凤街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323002, 530323, '漾月街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323003, 530323, '大同街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323102, 530323, '雄壁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323103, 530323, '葵山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323104, 530323, '彩云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323105, 530323, '竹基镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323202, 530323, '龙庆彝族壮族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323203, 530323, '五龙壮族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530323204, 530323, '高良壮族苗族瑶族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324001, 530324, '罗雄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324002, 530324, '腊山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324003, 530324, '九龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324102, 530324, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324103, 530324, '马街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324104, 530324, '富乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324106, 530324, '阿岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324201, 530324, '大水井乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324202, 530324, '鲁布革布依族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324203, 530324, '旧屋基彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324204, 530324, '钟山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324205, 530324, '长底布依族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530324206, 530324, '老厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325001, 530325, '中安街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325002, 530325, '胜境街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325102, 530325, '营上镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325103, 530325, '黄泥河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325104, 530325, '竹园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325105, 530325, '后所镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325106, 530325, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325107, 530325, '墨红镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325108, 530325, '富村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325109, 530325, '十八连山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325110, 530325, '老厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530325201, 530325, '古敢水族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326001, 530326, '古城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326002, 530326, '宝云街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326003, 530326, '金钟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326004, 530326, '以礼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326005, 530326, '钟屏街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326102, 530326, '娜姑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326103, 530326, '迤车镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326104, 530326, '乐业镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326105, 530326, '矿山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326106, 530326, '者海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326107, 530326, '大井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326108, 530326, '待补镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326201, 530326, '大海乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326202, 530326, '老厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326203, 530326, '五星乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326204, 530326, '大桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326205, 530326, '纸厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326206, 530326, '马路乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326207, 530326, '火红乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326208, 530326, '新街回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326209, 530326, '雨碌乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326210, 530326, '鲁纳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326211, 530326, '上村乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326212, 530326, '驾车乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530326213, 530326, '田坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381001, 530381, '宛水街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381002, 530381, '西宁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381003, 530381, '双龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381004, 530381, '虹桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381005, 530381, '丰华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381006, 530381, '板桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381007, 530381, '来宾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381008, 530381, '凤凰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381009, 530381, '复兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381102, 530381, '格宜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381103, 530381, '田坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381104, 530381, '羊场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381106, 530381, '倘塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381107, 530381, '落水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381108, 530381, '务德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381109, 530381, '海岱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381110, 530381, '龙场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381111, 530381, '龙潭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381112, 530381, '热水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381113, 530381, '宝山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381114, 530381, '东山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381115, 530381, '杨柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381201, 530381, '普立乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381202, 530381, '西泽乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381203, 530381, '得禄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381205, 530381, '双河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381206, 530381, '乐丰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381207, 530381, '文兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530381208, 530381, '阿都乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402001, 530402, '玉兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402002, 530402, '凤凰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402003, 530402, '玉带街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402004, 530402, '北城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402005, 530402, '春和街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402006, 530402, '李棋街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402007, 530402, '大营街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402008, 530402, '研和街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402009, 530402, '高仓街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402201, 530402, '小石桥彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530402202, 530402, '洛河彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403001, 530403, '大街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403101, 530403, '江城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403102, 530403, '前卫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403103, 530403, '九溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403104, 530403, '路居镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403201, 530403, '安化彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530403202, 530403, '雄关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423001, 530423, '秀山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423002, 530423, '九龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423101, 530423, '杨广镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423102, 530423, '河西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423103, 530423, '四街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423104, 530423, '纳古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423201, 530423, '里山彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423202, 530423, '高大傣族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530423203, 530423, '兴蒙蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530424001, 530424, '宁州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530424102, 530424, '盘溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530424103, 530424, '华溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530424104, 530424, '青龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530424201, 530424, '通红甸彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425001, 530425, '龙泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425002, 530425, '六街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425100, 530425, '绿汁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425201, 530425, '浦贝彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425202, 530425, '十街彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425203, 530425, '铜厂彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530425204, 530425, '小街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426001, 530426, '双江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426002, 530426, '小街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426103, 530426, '甸中镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426104, 530426, '化念镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426105, 530426, '塔甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426201, 530426, '岔河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426202, 530426, '大龙潭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530426203, 530426, '富良棚乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427001, 530427, '桂山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427002, 530427, '古城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427100, 530427, '扬武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427101, 530427, '漠沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427102, 530427, '戛洒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427103, 530427, '水塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427200, 530427, '平甸乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427201, 530427, '新化乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427202, 530427, '建兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427203, 530427, '老厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427204, 530427, '者竜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530427205, 530427, '平掌乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428001, 530428, '红河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428002, 530428, '澧江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428003, 530428, '甘庄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428101, 530428, '曼来镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428102, 530428, '因远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428201, 530428, '龙潭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428202, 530428, '羊街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428203, 530428, '那诺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428204, 530428, '洼垤乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530428205, 530428, '咪哩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530481001, 530481, '凤麓街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530481002, 530481, '龙街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530481101, 530481, '右所镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530481102, 530481, '阳宗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530481103, 530481, '海口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530481104, 530481, '九村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502001, 530502, '兰城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502002, 530502, '永昌街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502003, 530502, '九隆街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502004, 530502, '青华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502005, 530502, '河图街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502006, 530502, '永盛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502101, 530502, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502103, 530502, '汉庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502104, 530502, '蒲缥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502105, 530502, '瓦窑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502106, 530502, '潞江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502201, 530502, '金鸡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502202, 530502, '辛街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502203, 530502, '西邑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502204, 530502, '丙麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502205, 530502, '瓦渡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502206, 530502, '水寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502207, 530502, '瓦马彝族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502208, 530502, '瓦房彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502209, 530502, '杨柳白族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502210, 530502, '芒宽彝族傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530502401, 530502, '保山工贸园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521101, 530521, '甸阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521102, 530521, '由旺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521103, 530521, '姚关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521104, 530521, '仁和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521105, 530521, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521201, 530521, '万兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521202, 530521, '摆榔彝族布朗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521203, 530521, '酒房乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521204, 530521, '旧城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521205, 530521, '木老元布朗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521206, 530521, '老麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521207, 530521, '何元乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530521208, 530521, '水长乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523101, 530523, '龙山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523102, 530523, '镇安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523103, 530523, '勐糯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523104, 530523, '腊勐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523105, 530523, '象达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523201, 530523, '龙江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523203, 530523, '碧寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523204, 530523, '龙新乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523206, 530523, '平达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530523207, 530523, '木城彝族傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524101, 530524, '田园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524102, 530524, '漭水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524103, 530524, '柯街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524104, 530524, '卡斯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524105, 530524, '勐统镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524106, 530524, '温泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524107, 530524, '大田坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524108, 530524, '鸡飞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524109, 530524, '翁堵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524205, 530524, '湾甸傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524206, 530524, '更戛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524207, 530524, '珠街彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530524208, 530524, '耈街彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581001, 530581, '腾越街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581102, 530581, '固东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581103, 530581, '滇滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581104, 530581, '猴桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581105, 530581, '和顺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581106, 530581, '界头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581107, 530581, '曲石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581108, 530581, '明光镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581109, 530581, '中和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581110, 530581, '芒棒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581111, 530581, '荷花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581201, 530581, '马站乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581202, 530581, '北海乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581203, 530581, '清水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581204, 530581, '五合乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581205, 530581, '新华乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581206, 530581, '蒲川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530581207, 530581, '团田乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602001, 530602, '凤凰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602002, 530602, '龙泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602003, 530602, '太平街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602004, 530602, '北闸街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602101, 530602, '旧圃镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602102, 530602, '永丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602104, 530602, '盘河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602105, 530602, '靖安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602106, 530602, '洒渔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602107, 530602, '乐居镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602108, 530602, '苏家院镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602109, 530602, '大山包镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602110, 530602, '炎山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602201, 530602, '布嘎回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602202, 530602, '守望回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602203, 530602, '小龙洞回族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602206, 530602, '青岗岭回族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602210, 530602, '苏甲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602212, 530602, '大寨子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530602214, 530602, '田坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621001, 530621, '文屏街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621002, 530621, '砚池街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621102, 530621, '水磨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621103, 530621, '龙头山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621104, 530621, '小寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621105, 530621, '江底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621106, 530621, '火德红镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621107, 530621, '龙树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621108, 530621, '新街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621109, 530621, '梭山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621110, 530621, '乐红镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621201, 530621, '桃源回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530621202, 530621, '茨院回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622001, 530622, '玉屏街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622002, 530622, '白鹤滩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622102, 530622, '大寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622103, 530622, '小河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622104, 530622, '药山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622105, 530622, '马树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622106, 530622, '老店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622107, 530622, '茂租镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622108, 530622, '东坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622109, 530622, '新店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622110, 530622, '崇溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622111, 530622, '金塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622112, 530622, '蒙姑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622203, 530622, '红山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622205, 530622, '包谷垴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622206, 530622, '中寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530622209, 530622, '炉房乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623101, 530623, '盐井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623102, 530623, '普洱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623103, 530623, '豆沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623104, 530623, '中和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623105, 530623, '庙坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623106, 530623, '柿子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623201, 530623, '兴隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623202, 530623, '落雁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623203, 530623, '滩头乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530623204, 530623, '牛寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624101, 530624, '翠华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624102, 530624, '玉碗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624103, 530624, '吉利镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624104, 530624, '天星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624105, 530624, '木杆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624106, 530624, '悦乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624107, 530624, '寿山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624108, 530624, '高桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530624201, 530624, '上高桥回族彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625001, 530625, '溪洛渡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625002, 530625, '永兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625102, 530625, '桧溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625103, 530625, '黄华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625104, 530625, '茂林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625105, 530625, '大兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625106, 530625, '莲峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625107, 530625, '务基镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625108, 530625, '码口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625201, 530625, '团结乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625202, 530625, '细沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625203, 530625, '青胜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625205, 530625, '马楠苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625206, 530625, '水竹乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625207, 530625, '墨翰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530625208, 530625, '伍寨彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530626101, 530626, '中城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530626102, 530626, '南岸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530626103, 530626, '新滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530626104, 530626, '会仪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530626105, 530626, '板栗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627001, 530627, '乌峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627002, 530627, '南台街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627003, 530627, '旧府街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627102, 530627, '泼机镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627103, 530627, '黑树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627104, 530627, '母享镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627105, 530627, '大湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627106, 530627, '以勒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627107, 530627, '赤水源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627108, 530627, '芒部镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627109, 530627, '雨河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627110, 530627, '罗坎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627111, 530627, '牛场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627112, 530627, '五德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627113, 530627, '坡头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627114, 530627, '以古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627115, 530627, '场坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627116, 530627, '塘房镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627117, 530627, '中屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627118, 530627, '木卓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627119, 530627, '盐源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627120, 530627, '碗厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627121, 530627, '坪上镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627202, 530627, '鱼洞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627203, 530627, '花朗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627204, 530627, '尖山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627208, 530627, '杉树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627209, 530627, '花山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627211, 530627, '果珠彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530627212, 530627, '林口彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628001, 530628, '角奎街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628002, 530628, '发界街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628102, 530628, '洛泽河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628103, 530628, '牛街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628104, 530628, '海子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628105, 530628, '荞山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628106, 530628, '龙安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628107, 530628, '钟鸣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628108, 530628, '两河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628109, 530628, '小草坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628110, 530628, '龙海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628201, 530628, '龙街苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628202, 530628, '奎香苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628203, 530628, '树林彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628211, 530628, '柳溪苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530628212, 530628, '洛旺苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629101, 530629, '扎西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629102, 530629, '旧城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629103, 530629, '罗布镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629104, 530629, '麟凤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629105, 530629, '长安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629106, 530629, '庙沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629107, 530629, '水田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629201, 530629, '双河苗族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629202, 530629, '高田乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530629207, 530629, '三桃乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530681001, 530681, '云富街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530681101, 530681, '向家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530681102, 530681, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530681103, 530681, '两碗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702001, 530702, '西安街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702002, 530702, '大研街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702003, 530702, '祥和街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702004, 530702, '束河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702005, 530702, '金山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702006, 530702, '开南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702007, 530702, '文化街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702101, 530702, '金安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702102, 530702, '七河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702203, 530702, '大东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530702205, 530702, '金江白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721101, 530721, '黄山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721102, 530721, '石鼓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721103, 530721, '巨甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721104, 530721, '白沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721105, 530721, '拉市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721106, 530721, '奉科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721107, 530721, '鸣音镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721203, 530721, '太安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721204, 530721, '龙蟠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721205, 530721, '黎明傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721206, 530721, '鲁甸乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721207, 530721, '塔城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721208, 530721, '大具乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721209, 530721, '宝山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721212, 530721, '石头白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530721213, 530721, '九河白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722101, 530722, '永北镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722102, 530722, '仁和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722103, 530722, '期纳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722104, 530722, '三川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722105, 530722, '程海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722106, 530722, '涛源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722107, 530722, '鲁地拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722108, 530722, '片角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722109, 530722, '顺州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722201, 530722, '羊坪彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722202, 530722, '六德傈僳族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722203, 530722, '东山傈僳族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722207, 530722, '光华傈僳族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722208, 530722, '松坪傈僳族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530722209, 530722, '大安彝族纳西族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723101, 530723, '中心镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723102, 530723, '荣将镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723103, 530723, '兴泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723104, 530723, '石龙坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723202, 530723, '新庄傈僳族傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723203, 530723, '通达傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723204, 530723, '永兴傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530723205, 530723, '船房傈僳族傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724001, 530724, '大兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724002, 530724, '紫玛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724102, 530724, '永宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724103, 530724, '红桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724104, 530724, '战河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724201, 530724, '拉伯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724203, 530724, '翠玉傈僳族普米族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724205, 530724, '宁利乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724206, 530724, '金棉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724207, 530724, '西川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724208, 530724, '西布河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724210, 530724, '永宁坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724211, 530724, '跑马坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724212, 530724, '蝉战河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724213, 530724, '新营盘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530724214, 530724, '烂泥箐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802001, 530802, '思茅街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802102, 530802, '南屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802103, 530802, '倚象镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802104, 530802, '思茅港镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802105, 530802, '六顺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802201, 530802, '龙潭彝族傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530802202, 530802, '云仙彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821101, 530821, '宁洱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821102, 530821, '磨黑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821103, 530821, '德化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821104, 530821, '同心镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821105, 530821, '勐先镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821106, 530821, '梅子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821201, 530821, '德安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821205, 530821, '普义乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530821206, 530821, '黎明乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822101, 530822, '联珠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822102, 530822, '通关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822103, 530822, '龙坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822104, 530822, '新安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822105, 530822, '团田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822106, 530822, '新抚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822107, 530822, '景星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822108, 530822, '鱼塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822109, 530822, '文武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822110, 530822, '坝溜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822111, 530822, '泗南江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822112, 530822, '雅邑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822203, 530822, '孟弄彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822208, 530822, '龙潭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530822212, 530822, '那哈乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823101, 530823, '锦屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823102, 530823, '文井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823103, 530823, '漫湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823104, 530823, '大朝山东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823105, 530823, '花山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823106, 530823, '大街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823107, 530823, '太忠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823108, 530823, '文龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823109, 530823, '安定镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823110, 530823, '景福镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823201, 530823, '曼等乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823205, 530823, '龙街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530823208, 530823, '林街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824101, 530824, '威远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824102, 530824, '永平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824103, 530824, '正兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824104, 530824, '民乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824105, 530824, '凤山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824106, 530824, '景谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824201, 530824, '碧安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824204, 530824, '益智乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824205, 530824, '半坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530824206, 530824, '勐班乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825101, 530825, '恩乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825102, 530825, '按板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825103, 530825, '勐大镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825104, 530825, '者东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825105, 530825, '九甲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825106, 530825, '古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825107, 530825, '振太镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825108, 530825, '和平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530825201, 530825, '田坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826101, 530826, '勐烈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826102, 530826, '整董镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826103, 530826, '曲水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826104, 530826, '宝藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826105, 530826, '康平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826202, 530826, '国庆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530826203, 530826, '嘉禾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530827101, 530827, '娜允镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530827102, 530827, '勐马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530827103, 530827, '芒信镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530827104, 530827, '富岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530827201, 530827, '景信乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530827202, 530827, '公信乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828101, 530828, '勐朗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828102, 530828, '上允镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828103, 530828, '糯扎渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828104, 530828, '惠民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828105, 530828, '东回镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828201, 530828, '发展河哈尼族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828202, 530828, '谦六彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828203, 530828, '糯福乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828204, 530828, '东河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828205, 530828, '大山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828206, 530828, '南岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828207, 530828, '雪林佤族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828208, 530828, '木戛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828209, 530828, '酒井哈尼族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828212, 530828, '拉巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828213, 530828, '竹塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828214, 530828, '富邦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828215, 530828, '安康佤族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828216, 530828, '文东佤族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530828217, 530828, '富东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829101, 530829, '勐梭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829102, 530829, '勐卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829103, 530829, '翁嘎科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829104, 530829, '中课镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829105, 530829, '新厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829202, 530829, '力所拉祜族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530829203, 530829, '岳宋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902001, 530902, '凤翔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902002, 530902, '忙畔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902102, 530902, '博尚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902202, 530902, '南美拉祜族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902203, 530902, '蚂蚁堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902204, 530902, '章驮乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902206, 530902, '圈内乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902207, 530902, '马台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902208, 530902, '邦东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530902209, 530902, '平村彝族傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921101, 530921, '凤山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921102, 530921, '鲁史镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921103, 530921, '小湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921104, 530921, '营盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921105, 530921, '三岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921106, 530921, '勐佑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921107, 530921, '雪山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921108, 530921, '洛党镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921201, 530921, '诗礼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921202, 530921, '新华彝族苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921204, 530921, '大寺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921206, 530921, '腰街彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530921207, 530921, '郭大寨彝族白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922101, 530922, '爱华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922102, 530922, '漫湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922103, 530922, '大朝山西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922104, 530922, '涌宝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922105, 530922, '茂兰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922106, 530922, '幸福镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922107, 530922, '大寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922201, 530922, '忙怀彝族布朗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922202, 530922, '晓街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922203, 530922, '茶房乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922204, 530922, '栗树彝族傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922205, 530922, '后箐彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922501, 530922, '幸福农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530922502, 530922, '新城农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923101, 530923, '德党镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923102, 530923, '小勐统镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923103, 530923, '永康镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923203, 530923, '勐板乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923204, 530923, '亚练乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923205, 530923, '乌木龙彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923206, 530923, '大雪山彝族拉祜族傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923207, 530923, '班卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923208, 530923, '崇岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923209, 530923, '大山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530923401, 530923, '勐底农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924101, 530924, '凤尾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924102, 530924, '勐捧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924103, 530924, '南伞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924201, 530924, '忙丙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924202, 530924, '勐堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924204, 530924, '木场乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530924205, 530924, '军赛佤族拉祜族傈僳族德昂族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530925101, 530925, '勐勐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530925102, 530925, '勐库镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530925201, 530925, '沙河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530925202, 530925, '大文乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530925203, 530925, '忙糯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530925205, 530925, '邦丙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926100, 530926, '耿马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926101, 530926, '勐永镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926102, 530926, '勐撒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926103, 530926, '孟定镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926200, 530926, '大兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926201, 530926, '芒洪拉祜族布朗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926202, 530926, '四排山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926203, 530926, '贺派乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926204, 530926, '勐简乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926401, 530926, '耿马华侨农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926402, 530926, '勐撒农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530926403, 530926, '孟定农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927101, 530927, '勐董镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927102, 530927, '岩帅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927103, 530927, '勐省镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927104, 530927, '芒卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927202, 530927, '单甲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927203, 530927, '糯良乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927204, 530927, '勐来乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927205, 530927, '勐角傣族彝族拉祜族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927206, 530927, '班洪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927207, 530927, '班老乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (530927401, 530927, '勐省农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301101, 532301, '鹿城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301102, 532301, '东瓜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301103, 532301, '吕合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301104, 532301, '紫溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301105, 532301, '东华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301106, 532301, '子午镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301107, 532301, '苍岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301108, 532301, '三街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301109, 532301, '八角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301110, 532301, '中山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301111, 532301, '新村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301112, 532301, '西舍路镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301201, 532301, '树苴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301202, 532301, '大过口乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532301203, 532301, '大地基乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302101, 532302, '金山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302102, 532302, '仁兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302103, 532302, '碧城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302104, 532302, '勤丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302105, 532302, '一平浪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302106, 532302, '广通镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302107, 532302, '黑井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302108, 532302, '土官镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302109, 532302, '彩云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302110, 532302, '和平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302111, 532302, '恐龙山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302201, 532302, '中村乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302202, 532302, '高峰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532302203, 532302, '妥安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322101, 532322, '妥甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322102, 532322, '大庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322103, 532322, '法脿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322104, 532322, '鄂嘉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322105, 532322, '大麦地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322201, 532322, '安龙堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322202, 532322, '爱尼山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532322203, 532322, '独田乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323101, 532323, '共和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323102, 532323, '新桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323103, 532323, '江坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323104, 532323, '凤屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323201, 532323, '蟠猫乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323202, 532323, '戌街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532323203, 532323, '安乐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324101, 532324, '龙川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324102, 532324, '沙桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324103, 532324, '五街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324104, 532324, '红土坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324105, 532324, '马街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324106, 532324, '兔街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324201, 532324, '雨露白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324202, 532324, '一街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324203, 532324, '罗武庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532324204, 532324, '五顶山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325101, 532325, '栋川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325102, 532325, '光禄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325103, 532325, '前场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325104, 532325, '弥兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325105, 532325, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325106, 532325, '官屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325201, 532325, '适中乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325202, 532325, '左门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532325204, 532325, '大河口乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326101, 532326, '金碧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326102, 532326, '石羊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326103, 532326, '六苴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326104, 532326, '龙街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326105, 532326, '新街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326106, 532326, '赵家店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326107, 532326, '三岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326108, 532326, '桂花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326204, 532326, '昙华乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326206, 532326, '湾碧傣族傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326207, 532326, '铁锁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532326208, 532326, '三台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327101, 532327, '永定镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327102, 532327, '宜就镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327103, 532327, '中和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327201, 532327, '莲池乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327202, 532327, '维的乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327203, 532327, '猛虎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532327204, 532327, '永兴傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328101, 532328, '元马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328103, 532328, '黄瓜园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328104, 532328, '羊街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328202, 532328, '老城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328203, 532328, '物茂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328204, 532328, '江边乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328205, 532328, '新华乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328206, 532328, '平田乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328209, 532328, '凉山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532328210, 532328, '姜驿乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329101, 532329, '狮山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329102, 532329, '高桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329103, 532329, '猫街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329104, 532329, '插甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329105, 532329, '白路镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329106, 532329, '万德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329107, 532329, '己衣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329202, 532329, '田心乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329203, 532329, '发窝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329207, 532329, '环州乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532329208, 532329, '东坡傣族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501001, 532501, '城区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501002, 532501, '沙甸街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501003, 532501, '大屯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501004, 532501, '锡城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501103, 532501, '鸡街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501106, 532501, '老厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501107, 532501, '卡房镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501108, 532501, '蔓耗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501202, 532501, '贾沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532501203, 532501, '保和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502001, 532502, '乐白道街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502002, 532502, '灵泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502101, 532502, '中和营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502102, 532502, '小龙潭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502201, 532502, '大庄回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502202, 532502, '羊街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532502203, 532502, '碑格乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503001, 532503, '文澜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503002, 532503, '雨过铺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503003, 532503, '观澜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503004, 532503, '文萃街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503005, 532503, '新安所街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503102, 532503, '草坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503105, 532503, '芷村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503106, 532503, '鸣鹫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503107, 532503, '冷泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503201, 532503, '期路白苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503202, 532503, '老寨苗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503203, 532503, '水田乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532503204, 532503, '西北勒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504001, 532504, '弥阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504102, 532504, '新哨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504103, 532504, '虹溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504104, 532504, '竹园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504105, 532504, '朋普镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504106, 532504, '巡检司镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504107, 532504, '西一镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504108, 532504, '西二镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504109, 532504, '西三镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504110, 532504, '东山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504202, 532504, '五山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532504203, 532504, '江边乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523101, 532523, '玉屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523102, 532523, '新现镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523103, 532523, '和平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523104, 532523, '白河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523204, 532523, '白云乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523205, 532523, '新华乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532523206, 532523, '湾塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524101, 532524, '临安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524102, 532524, '官厅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524103, 532524, '西庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524104, 532524, '青龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524105, 532524, '南庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524106, 532524, '岔科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524107, 532524, '曲江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524108, 532524, '面甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524201, 532524, '普雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524202, 532524, '李浩寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524203, 532524, '坡头乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524204, 532524, '盘江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524205, 532524, '利民乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532524206, 532524, '甸尾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525101, 532525, '异龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525102, 532525, '宝秀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525103, 532525, '坝心镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525104, 532525, '龙朋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525105, 532525, '龙武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525106, 532525, '哨冲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525107, 532525, '牛街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525201, 532525, '新城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532525202, 532525, '大桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527101, 532527, '中枢镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527102, 532527, '金马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527104, 532527, '旧城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527106, 532527, '午街铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527107, 532527, '白水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527201, 532527, '向阳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527202, 532527, '三塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532527203, 532527, '永宁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528101, 532528, '南沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528102, 532528, '新街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528103, 532528, '牛角寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528203, 532528, '沙拉托乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528204, 532528, '嘎娘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528205, 532528, '上新城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528206, 532528, '小新街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528207, 532528, '逢春岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528208, 532528, '大坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528209, 532528, '攀枝花乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528210, 532528, '黄茅岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528211, 532528, '黄草岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528212, 532528, '俄扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532528213, 532528, '马街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529101, 532529, '迤萨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529102, 532529, '甲寅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529103, 532529, '宝华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529104, 532529, '乐育镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529105, 532529, '浪堤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529203, 532529, '洛恩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529204, 532529, '石头寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529205, 532529, '阿扎河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529208, 532529, '大羊街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529209, 532529, '车古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529210, 532529, '架车乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529211, 532529, '垤玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532529212, 532529, '三村乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530101, 532530, '金河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530102, 532530, '金水河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530103, 532530, '勐拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530104, 532530, '老勐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530202, 532530, '铜厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530204, 532530, '老集寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530205, 532530, '者米拉祜族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530206, 532530, '阿得博乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530207, 532530, '沙依坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530208, 532530, '大寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530209, 532530, '马鞍底乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530210, 532530, '勐桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532530211, 532530, '营盘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531101, 532531, '大兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531102, 532531, '牛孔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531103, 532531, '大黑山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531104, 532531, '平河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531201, 532531, '戈奎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531203, 532531, '大水沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531205, 532531, '半坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531206, 532531, '骑马坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532531207, 532531, '三猛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532532101, 532532, '河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532532102, 532532, '南溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532532201, 532532, '老范寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532532202, 532532, '桥头苗族壮族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532532203, 532532, '瑶山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532532204, 532532, '莲花滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601001, 532601, '开化街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601002, 532601, '卧龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601003, 532601, '新平街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601102, 532601, '古木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601103, 532601, '平坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601104, 532601, '马塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601105, 532601, '德厚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601106, 532601, '小街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601107, 532601, '薄竹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601108, 532601, '追栗街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601201, 532601, '东山彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601202, 532601, '柳井彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601203, 532601, '新街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601204, 532601, '喜古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601205, 532601, '坝心彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601206, 532601, '秉烈彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601207, 532601, '红甸回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601401, 532601, '文山市三七产业园区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532601402, 532601, '文山市马塘工业园区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622101, 532622, '江那镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622102, 532622, '平远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622103, 532622, '稼依镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622104, 532622, '阿猛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622201, 532622, '阿舍彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622202, 532622, '维摩彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622203, 532622, '盘龙彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622204, 532622, '八嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622205, 532622, '者腊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622206, 532622, '蚌峨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532622207, 532622, '干河彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623101, 532623, '西洒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623102, 532623, '兴街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623201, 532623, '蚌谷乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623202, 532623, '莲花塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623203, 532623, '新马街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623204, 532623, '柏林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623205, 532623, '法斗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623206, 532623, '董马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532623207, 532623, '鸡街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624101, 532624, '麻栗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624102, 532624, '大坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624103, 532624, '董干镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624104, 532624, '天保镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624201, 532624, '猛硐瑶族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624202, 532624, '下金厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624203, 532624, '八布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624204, 532624, '六河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624205, 532624, '杨万乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624206, 532624, '铁厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532624207, 532624, '马街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625101, 532625, '马白镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625102, 532625, '八寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625103, 532625, '仁和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625104, 532625, '木厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625105, 532625, '夹寒箐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625106, 532625, '小坝子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625107, 532625, '都龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625108, 532625, '金厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625109, 532625, '坡脚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625201, 532625, '南捞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625202, 532625, '大栗树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625203, 532625, '篾厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625204, 532625, '古林箐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532625501, 532625, '健康农场管理区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626101, 532626, '锦屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626102, 532626, '曰者镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626103, 532626, '双龙营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626201, 532626, '八道哨彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626202, 532626, '天星乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626203, 532626, '平寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626204, 532626, '树皮彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626205, 532626, '腻脚彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626206, 532626, '新店彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626207, 532626, '舍得彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626208, 532626, '官寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532626209, 532626, '温浏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627101, 532627, '莲城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627102, 532627, '八宝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627103, 532627, '南屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627104, 532627, '珠街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627105, 532627, '那洒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627106, 532627, '珠琳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627107, 532627, '坝美镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627201, 532627, '董堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627202, 532627, '旧莫乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627203, 532627, '杨柳井乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627204, 532627, '板蚌乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627205, 532627, '曙光乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627206, 532627, '黑支果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627207, 532627, '篆角乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627208, 532627, '五珠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627209, 532627, '者兔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627210, 532627, '者太乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532627211, 532627, '底圩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628101, 532628, '新华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628102, 532628, '归朝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628103, 532628, '剥隘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628104, 532628, '里达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628105, 532628, '田蓬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628106, 532628, '木央镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628201, 532628, '板仑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628202, 532628, '谷拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628203, 532628, '者桑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628204, 532628, '那能乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628205, 532628, '洞波瑶族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628206, 532628, '阿用乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532628207, 532628, '花甲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801001, 532801, '允景洪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801002, 532801, '江北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801102, 532801, '嘎洒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801103, 532801, '勐龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801104, 532801, '勐罕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801105, 532801, '勐养镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801106, 532801, '普文镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801202, 532801, '景哈哈尼族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801203, 532801, '景讷乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801204, 532801, '大渡岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801205, 532801, '勐旺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801206, 532801, '基诺山基诺族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801401, 532801, '景洪农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801402, 532801, '东风农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801403, 532801, '橄榄坝农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801404, 532801, '勐养农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801405, 532801, '大渡岗农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801406, 532801, '西双版纳州旅游度假区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801407, 532801, '景洪工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532801408, 532801, '西双版纳监狱', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822101, 532822, '勐海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822102, 532822, '打洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822103, 532822, '勐混镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822104, 532822, '勐遮镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822105, 532822, '勐满镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822106, 532822, '勐阿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822201, 532822, '勐宋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822202, 532822, '勐往乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822203, 532822, '格朗和哈尼族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822204, 532822, '布朗山布朗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822205, 532822, '西定哈尼族布朗族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532822401, 532822, '黎明农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823101, 532823, '勐腊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823102, 532823, '勐捧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823103, 532823, '勐满镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823104, 532823, '勐仑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823105, 532823, '磨憨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823106, 532823, '勐伴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823107, 532823, '关累镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823108, 532823, '易武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823202, 532823, '象明彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823203, 532823, '瑶区瑶族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823401, 532823, '勐腊农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823402, 532823, '勐捧农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823403, 532823, '勐满农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532823404, 532823, '勐醒农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901003, 532901, '下关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901004, 532901, '太和街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901005, 532901, '满江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901102, 532901, '大理镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901103, 532901, '凤仪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901104, 532901, '喜洲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901105, 532901, '海东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901106, 532901, '挖色镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901107, 532901, '湾桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901108, 532901, '银桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901109, 532901, '双廊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901110, 532901, '上关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532901201, 532901, '太邑彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922101, 532922, '苍山西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922102, 532922, '漾江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922103, 532922, '平坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922104, 532922, '顺濞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922201, 532922, '富恒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922202, 532922, '太平乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922204, 532922, '瓦厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922205, 532922, '龙潭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532922206, 532922, '鸡街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923101, 532923, '祥城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923102, 532923, '沙龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923103, 532923, '云南驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923104, 532923, '下庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923105, 532923, '普棚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923106, 532923, '刘厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923107, 532923, '禾甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923108, 532923, '米甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923201, 532923, '鹿鸣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532923202, 532923, '东山彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924101, 532924, '金牛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924102, 532924, '宾居镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924103, 532924, '州城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924104, 532924, '大营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924105, 532924, '鸡足山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924106, 532924, '力角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924107, 532924, '平川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924108, 532924, '乔甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924201, 532924, '钟英傈僳族彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532924202, 532924, '拉乌彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925101, 532925, '弥城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925102, 532925, '红岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925103, 532925, '新街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925104, 532925, '寅街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925105, 532925, '苴力镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925106, 532925, '密祉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925203, 532925, '德苴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532925204, 532925, '牛街彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926101, 532926, '南涧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926102, 532926, '小湾东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926103, 532926, '公郎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926104, 532926, '宝华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926105, 532926, '无量山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926201, 532926, '拥翠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926202, 532926, '乐秋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532926203, 532926, '碧溪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927101, 532927, '南诏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927102, 532927, '庙街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927103, 532927, '大仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927104, 532927, '永建镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927201, 532927, '巍宝山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927202, 532927, '马鞍山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927203, 532927, '紫金乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927204, 532927, '五印乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927205, 532927, '牛街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532927206, 532927, '青华乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928101, 532928, '博南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928102, 532928, '杉阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928103, 532928, '龙街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928201, 532928, '龙门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928202, 532928, '北斗彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928203, 532928, '厂街彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532928204, 532928, '水泄彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929101, 532929, '诺邓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929102, 532929, '功果桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929103, 532929, '漕涧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929104, 532929, '白石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929201, 532929, '宝丰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929202, 532929, '关坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929203, 532929, '团结彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929204, 532929, '长新乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929205, 532929, '检槽乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929206, 532929, '苗尾傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532929207, 532929, '民建乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930101, 532930, '茈碧湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930102, 532930, '邓川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930103, 532930, '右所镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930104, 532930, '三营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930105, 532930, '凤羽镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930106, 532930, '乔后镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930201, 532930, '牛街乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930202, 532930, '炼铁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532930203, 532930, '西山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931101, 532931, '金华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931102, 532931, '老君山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931103, 532931, '甸南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931104, 532931, '沙溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931105, 532931, '马登镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931201, 532931, '羊岑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931202, 532931, '弥沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532931203, 532931, '象图乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932101, 532932, '云鹤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932102, 532932, '辛屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932103, 532932, '松桂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932104, 532932, '黄坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932105, 532932, '草海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932106, 532932, '西邑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932107, 532932, '龙开口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932201, 532932, '金墩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (532932203, 532932, '六合彝族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102001, 533102, '勐卯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102102, 533102, '畹町镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102103, 533102, '弄岛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102104, 533102, '姐相镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102202, 533102, '户育乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102203, 533102, '勐秀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102400, 533102, '瑞丽农场管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533102401, 533102, '畹町农场管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103001, 533103, '芒市勐焕街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103101, 533103, '芒市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103102, 533103, '遮放镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103103, 533103, '勐戛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103104, 533103, '芒海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103105, 533103, '风平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103201, 533103, '轩岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103202, 533103, '江东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103203, 533103, '西山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103204, 533103, '中山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103205, 533103, '三台山德昂族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103206, 533103, '五岔路乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533103400, 533103, '芒市遮放农场管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122101, 533122, '遮岛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122102, 533122, '芒东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122103, 533122, '勐养镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122201, 533122, '平山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122202, 533122, '小厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122203, 533122, '大厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122204, 533122, '九保阿昌族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122205, 533122, '曩宋阿昌族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533122206, 533122, '河西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123101, 533123, '平原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123102, 533123, '旧城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123103, 533123, '那邦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123104, 533123, '弄璋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123105, 533123, '盏西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123106, 533123, '卡场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123107, 533123, '昔马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123108, 533123, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123201, 533123, '新城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123202, 533123, '油松岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123203, 533123, '芒章乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123204, 533123, '支那乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123205, 533123, '苏典傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123206, 533123, '勐弄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123207, 533123, '铜壁关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533123400, 533123, '盈江县农场管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124101, 533124, '章凤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124102, 533124, '陇把镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124103, 533124, '景罕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124104, 533124, '城子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124201, 533124, '户撒阿昌族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124202, 533124, '护国乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124203, 533124, '清平乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124204, 533124, '王子树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124205, 533124, '勐约乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533124400, 533124, '陇川农场管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301001, 533301, '大练地街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301002, 533301, '六库街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301102, 533301, '鲁掌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301103, 533301, '片马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301104, 533301, '上江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301105, 533301, '老窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301106, 533301, '大兴地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301204, 533301, '称杆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301205, 533301, '古登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533301206, 533301, '洛本卓白族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323101, 533323, '上帕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323201, 533323, '匹河怒族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323202, 533323, '子里甲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323203, 533323, '架科底乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323204, 533323, '鹿马登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323205, 533323, '石月亮乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533323206, 533323, '马吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533324101, 533324, '茨开镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533324102, 533324, '丙中洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533324202, 533324, '捧当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533324203, 533324, '普拉底乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533324204, 533324, '独龙江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325101, 533325, '金顶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325102, 533325, '啦井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325103, 533325, '营盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325104, 533325, '通甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325201, 533325, '河西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325202, 533325, '中排乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325203, 533325, '石登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533325204, 533325, '兔峨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401101, 533401, '建塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401102, 533401, '小中甸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401103, 533401, '虎跳峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401104, 533401, '金江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401201, 533401, '上江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401202, 533401, '三坝纳西族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401203, 533401, '洛吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401204, 533401, '尼西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401205, 533401, '格咱乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401206, 533401, '东旺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401207, 533401, '五境乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533401501, 533401, '迪庆扶贫民族经济开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422101, 533422, '升平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422102, 533422, '奔子栏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422201, 533422, '佛山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422202, 533422, '云岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422203, 533422, '燕门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422204, 533422, '拖顶傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422205, 533422, '霞若傈僳族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533422206, 533422, '羊拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423101, 533423, '保和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423102, 533423, '叶枝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423103, 533423, '塔城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423201, 533423, '永春乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423202, 533423, '攀天阁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423203, 533423, '白济汛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423204, 533423, '康普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423205, 533423, '巴迪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423206, 533423, '中路乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (533423207, 533423, '维登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102002, 540102, '八廓街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102003, 540102, '吉日街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102004, 540102, '吉崩岗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102005, 540102, '扎细街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102006, 540102, '公德林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102007, 540102, '嘎玛贡桑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102008, 540102, '两岛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102009, 540102, '金珠西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102010, 540102, '蔡公堂街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102011, 540102, '夺底街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102012, 540102, '娘热街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540102013, 540102, '纳金街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103001, 540103, '东嘎街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103002, 540103, '乃琼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103003, 540103, '羊达街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103004, 540103, '柳梧街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103102, 540103, '古荣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103103, 540103, '马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540103104, 540103, '德庆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540104100, 540104, '德庆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540104200, 540104, '塔杰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540104201, 540104, '章多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540104202, 540104, '唐嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540104203, 540104, '雪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540104204, 540104, '帮堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121100, 540121, '甘丹曲果镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121200, 540121, '春堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121201, 540121, '松盘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121202, 540121, '强嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121203, 540121, '卡孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121204, 540121, '边交林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121205, 540121, '江热夏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121206, 540121, '阿朗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121207, 540121, '唐古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540121208, 540121, '旁多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122100, 540122, '当曲卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122101, 540122, '羊八井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122200, 540122, '格达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122201, 540122, '宁中乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122202, 540122, '公塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122203, 540122, '龙仁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122204, 540122, '乌玛塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540122205, 540122, '纳木湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123100, 540123, '塔荣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123101, 540123, '吞巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123200, 540123, '麻江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123201, 540123, '普松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123202, 540123, '卡如乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123203, 540123, '尼木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123204, 540123, '续迈乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540123205, 540123, '帕古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540124100, 540124, '曲水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540124101, 540124, '达嘎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540124201, 540124, '才纳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540124202, 540124, '南木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540124203, 540124, '聂当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540124204, 540124, '茶巴拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127100, 540127, '工卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127200, 540127, '扎雪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127201, 540127, '门巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127202, 540127, '扎西岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127203, 540127, '日多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127204, 540127, '尼玛江热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127205, 540127, '甲玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540127206, 540127, '唐加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540171400, 540171, '藏青工业园乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540172400, 540172, '拉萨市经济技术开发区管委会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540173400, 540173, '西藏文化旅游创意园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540174400, 540174, '达孜县工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202001, 540202, '城南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202002, 540202, '城北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202200, 540202, '曲布雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202201, 540202, '曲美乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202202, 540202, '聂日雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202203, 540202, '甲措雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202204, 540202, '纳尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202205, 540202, '东嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202206, 540202, '边雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202207, 540202, '江当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202208, 540202, '年木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540202209, 540202, '联乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221100, 540221, '南木林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221200, 540221, '达那乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221201, 540221, '卡孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221202, 540221, '多角乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221203, 540221, '秋木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221204, 540221, '艾玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221205, 540221, '土布加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221206, 540221, '查尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221207, 540221, '索金乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221208, 540221, '达孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221209, 540221, '奴玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221210, 540221, '热当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221211, 540221, '拉布普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221212, 540221, '普当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221213, 540221, '仁堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221214, 540221, '芒热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540221215, 540221, '甲措乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222100, 540222, '江孜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222200, 540222, '纳如乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222201, 540222, '卡麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222202, 540222, '卡堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222203, 540222, '藏改乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222204, 540222, '日朗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222205, 540222, '达孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222206, 540222, '热索乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222207, 540222, '重孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222208, 540222, '龙马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222209, 540222, '加克西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222210, 540222, '紫金乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222211, 540222, '江热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222212, 540222, '年雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222213, 540222, '康卓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222214, 540222, '金嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222215, 540222, '日星乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222216, 540222, '车仁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540222217, 540222, '热龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223100, 540223, '协格尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223101, 540223, '岗嘎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223200, 540223, '扎西宗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223201, 540223, '绒辖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223202, 540223, '曲当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223203, 540223, '措果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223204, 540223, '曲洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223205, 540223, '长所乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223206, 540223, '尼辖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223207, 540223, '扎果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223208, 540223, '克玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223209, 540223, '盆吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540223210, 540223, '加措乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224100, 540224, '萨迦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224101, 540224, '吉定镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224200, 540224, '雄麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224201, 540224, '麻布加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224202, 540224, '雄玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224203, 540224, '扎西岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224204, 540224, '扯休乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224205, 540224, '赛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224206, 540224, '拉洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224207, 540224, '查荣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540224208, 540224, '木拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225100, 540225, '曲下镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225101, 540225, '拉孜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225200, 540225, '扎西宗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225201, 540225, '曲玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225202, 540225, '彭措林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225203, 540225, '扎西岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225204, 540225, '柳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225205, 540225, '热萨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225206, 540225, '锡钦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225207, 540225, '芒普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540225208, 540225, '查务乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226100, 540226, '卡嘎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226101, 540226, '桑桑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226200, 540226, '达若乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226201, 540226, '贡久布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226202, 540226, '措迈乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226203, 540226, '雄巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226204, 540226, '查孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226205, 540226, '阿木雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226206, 540226, '如萨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226207, 540226, '孔隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226208, 540226, '尼果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226209, 540226, '日吾其乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226210, 540226, '多白乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226211, 540226, '切热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226212, 540226, '秋窝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226213, 540226, '达居乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540226214, 540226, '亚木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227100, 540227, '卡嘎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227200, 540227, '达木夏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227201, 540227, '查布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227202, 540227, '春哲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227203, 540227, '则许乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227204, 540227, '娘热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227205, 540227, '措布西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227206, 540227, '纳当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227207, 540227, '青都乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227208, 540227, '切琼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227209, 540227, '美巴切勤乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227210, 540227, '列巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227211, 540227, '塔丁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227212, 540227, '荣玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227213, 540227, '通门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227214, 540227, '达那普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227215, 540227, '达那答乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227216, 540227, '南木切乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540227217, 540227, '仁钦则乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228100, 540228, '洛江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228101, 540228, '嘎东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228200, 540228, '巴扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228201, 540228, '玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228202, 540228, '旺丹乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228203, 540228, '曲奴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228204, 540228, '杜琼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228205, 540228, '强堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228206, 540228, '嘎普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228207, 540228, '者下乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540228208, 540228, '东喜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229100, 540229, '德吉林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229200, 540229, '康雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229201, 540229, '普松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229202, 540229, '帕当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229203, 540229, '然巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229204, 540229, '查巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229205, 540229, '切娃乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229206, 540229, '姆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540229207, 540229, '仁布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230100, 540230, '康马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230200, 540230, '南尼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230201, 540230, '少岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230202, 540230, '康如乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230203, 540230, '萨玛达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230204, 540230, '嘎拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230205, 540230, '涅如堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230206, 540230, '涅如麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540230207, 540230, '雄章乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231100, 540231, '江嘎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231101, 540231, '陈塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231102, 540231, '日屋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231201, 540231, '确布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231202, 540231, '定结乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231203, 540231, '多布扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231204, 540231, '扎西岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231205, 540231, '琼孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231206, 540231, '萨尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540231207, 540231, '郭加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232100, 540232, '帕羊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232200, 540232, '拉让乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232201, 540232, '琼果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232202, 540232, '亚热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232203, 540232, '布多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232204, 540232, '偏吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232205, 540232, '纳久乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232206, 540232, '吉拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232207, 540232, '霍尔巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232208, 540232, '隆格尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232209, 540232, '吉玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232210, 540232, '仁多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540232211, 540232, '帕江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233100, 540233, '下司马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233101, 540233, '帕里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233200, 540233, '下亚东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233201, 540233, '上亚东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233202, 540233, '康布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233203, 540233, '堆纳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540233204, 540233, '吉汝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540234100, 540234, '宗嘎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540234101, 540234, '吉隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540234200, 540234, '差那乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540234201, 540234, '折巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540234202, 540234, '贡当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540234203, 540234, '萨勒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235100, 540235, '聂拉木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235101, 540235, '樟木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235200, 540235, '亚来乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235201, 540235, '锁作乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235202, 540235, '乃龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235203, 540235, '门布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540235204, 540235, '波绒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236100, 540236, '加加镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236200, 540236, '昌果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236201, 540236, '雄如乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236202, 540236, '拉藏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236203, 540236, '如角乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236204, 540236, '达吉岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236205, 540236, '旦嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540236206, 540236, '夏如乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540237100, 540237, '岗巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540237200, 540237, '昌龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540237201, 540237, '直克乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540237202, 540237, '孔玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540237203, 540237, '龙中乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302100, 540302, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302101, 540302, '俄洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302102, 540302, '卡若镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302200, 540302, '芒达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302201, 540302, '约巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302202, 540302, '妥坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302203, 540302, '拉多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302204, 540302, '面达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302205, 540302, '嘎玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302206, 540302, '柴维乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302207, 540302, '日通乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302208, 540302, '如意乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302209, 540302, '埃西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302210, 540302, '若巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540302211, 540302, '沙贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321100, 540321, '江达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321101, 540321, '岗托镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321200, 540321, '卡贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321201, 540321, '岩比乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321202, 540321, '邓柯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321203, 540321, '生达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321204, 540321, '娘西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321205, 540321, '字嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321206, 540321, '青泥洞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321207, 540321, '汪布顶乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321208, 540321, '德登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321209, 540321, '同普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540321210, 540321, '波罗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322100, 540322, '莫洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322200, 540322, '相皮乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322201, 540322, '哈加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322202, 540322, '雄松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322203, 540322, '拉妥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322204, 540322, '阿旺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322205, 540322, '木协乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322206, 540322, '罗麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322207, 540322, '沙东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322208, 540322, '克日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322209, 540322, '则巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540322210, 540322, '敏都乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323100, 540323, '类乌齐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323101, 540323, '桑多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323200, 540323, '甲桑卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323201, 540323, '长毛岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323202, 540323, '岗色乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323203, 540323, '吉多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323204, 540323, '宾达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323205, 540323, '卡玛多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323206, 540323, '尚卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540323207, 540323, '伊日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324100, 540324, '丁青镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324101, 540324, '尺犊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324200, 540324, '觉恩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324201, 540324, '沙贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324202, 540324, '当堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324203, 540324, '桑多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324204, 540324, '木塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324205, 540324, '布塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324206, 540324, '巴达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324207, 540324, '甘岩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324208, 540324, '嘎塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324209, 540324, '色扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540324210, 540324, '协雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325100, 540325, '烟多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325101, 540325, '香堆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325102, 540325, '吉塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325200, 540325, '宗沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325201, 540325, '卡贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325202, 540325, '荣周乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325203, 540325, '巴日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325204, 540325, '阿孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325205, 540325, '王卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325206, 540325, '新卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325207, 540325, '肯通乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325208, 540325, '扩达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540325209, 540325, '察拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326100, 540326, '白玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326101, 540326, '帮达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326102, 540326, '然乌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326103, 540326, '同卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326202, 540326, '郭庆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326203, 540326, '拉根乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326204, 540326, '益庆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326205, 540326, '吉中乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326206, 540326, '卡瓦白庆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326207, 540326, '吉达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326208, 540326, '夏里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326209, 540326, '拥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326210, 540326, '瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540326211, 540326, '林卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327100, 540327, '旺达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327101, 540327, '田妥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327102, 540327, '扎玉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327203, 540327, '东坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327204, 540327, '仁果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327207, 540327, '绕金乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327208, 540327, '碧土乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327210, 540327, '美玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327211, 540327, '中林卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540327212, 540327, '下林卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328100, 540328, '嘎托镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328101, 540328, '如美镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328200, 540328, '索多西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328201, 540328, '莽岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328202, 540328, '宗西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328203, 540328, '昂多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328204, 540328, '措瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328205, 540328, '洛尼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328206, 540328, '戈波乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328207, 540328, '帮达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328208, 540328, '徐中乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328209, 540328, '曲登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328210, 540328, '木许乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328211, 540328, '纳西民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328212, 540328, '竹巴龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540328213, 540328, '曲孜卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329100, 540329, '孜托镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329101, 540329, '硕督镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329111, 540329, '康沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329112, 540329, '马利镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329200, 540329, '达龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329201, 540329, '新荣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329202, 540329, '白达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329203, 540329, '玉西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329204, 540329, '腊久乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329205, 540329, '俄西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540329206, 540329, '中亦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330100, 540330, '边坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330101, 540330, '草卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330201, 540330, '沙丁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330202, 540330, '金岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330203, 540330, '加贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330204, 540330, '马武乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330205, 540330, '热玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330206, 540330, '尼木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330207, 540330, '马秀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330208, 540330, '拉孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540330209, 540330, '都瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402001, 540402, '白玛岗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402002, 540402, '觉木街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402100, 540402, '林芝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402101, 540402, '百巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402102, 540402, '八一镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402103, 540402, '鲁朗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402200, 540402, '更章门巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402202, 540402, '布久乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540402203, 540402, '米瑞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421100, 540421, '工布江达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421101, 540421, '金达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421102, 540421, '巴河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421200, 540421, '朱拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421201, 540421, '错高乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421202, 540421, '仲萨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421203, 540421, '江达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421204, 540421, '娘蒲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540421205, 540421, '加兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422100, 540422, '米林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422101, 540422, '派镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422102, 540422, '卧龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422200, 540422, '丹娘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422201, 540422, '南伊珞巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422202, 540422, '扎西绕登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422203, 540422, '里龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540422204, 540422, '羌纳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423100, 540423, '墨脱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423200, 540423, '加热萨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423201, 540423, '甘登乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423202, 540423, '达木珞巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423203, 540423, '帮辛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423204, 540423, '格当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423205, 540423, '德兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540423206, 540423, '背崩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424100, 540424, '扎木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424101, 540424, '倾多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424102, 540424, '松宗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424200, 540424, '易贡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424201, 540424, '玉普乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424202, 540424, '康玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424203, 540424, '多吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424204, 540424, '玉许乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424205, 540424, '八盖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540424207, 540424, '古乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540425100, 540425, '竹瓦根镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540425101, 540425, '上察隅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540425102, 540425, '下察隅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540425200, 540425, '察瓦龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540425201, 540425, '古拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540425202, 540425, '古玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540426100, 540426, '朗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540426101, 540426, '仲达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540426102, 540426, '洞嘎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540426200, 540426, '拉多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540426201, 540426, '金东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540426202, 540426, '登木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502001, 540502, '泽当街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502101, 540502, '昌珠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502200, 540502, '亚堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502201, 540502, '索珠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502202, 540502, '多颇章乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502203, 540502, '结巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540502204, 540502, '颇章乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540521100, 540521, '扎塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540521101, 540521, '桑耶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540521200, 540521, '扎其乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540521201, 540521, '阿扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540521202, 540521, '吉汝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522100, 540522, '吉雄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522101, 540522, '甲竹林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522102, 540522, '杰德秀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522103, 540522, '岗堆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522104, 540522, '江塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522200, 540522, '朗杰学乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522201, 540522, '昌果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522205, 540522, '东拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540522206, 540522, '克西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540523100, 540523, '桑日镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540523200, 540523, '增期乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540523201, 540523, '白堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540523202, 540523, '绒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540524100, 540524, '琼结镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540524200, 540524, '加麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540524201, 540524, '下水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540524202, 540524, '拉玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540525100, 540525, '曲松镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540525101, 540525, '罗布沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540525200, 540525, '下江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540525201, 540525, '邱多江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540525202, 540525, '堆随乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540526100, 540526, '措美镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540526101, 540526, '哲古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540526200, 540526, '乃西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540526201, 540526, '古堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527100, 540527, '洛扎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527101, 540527, '拉康镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527201, 540527, '扎日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527202, 540527, '色乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527203, 540527, '生格乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527204, 540527, '边巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540527205, 540527, '拉郊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528100, 540528, '加查镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528101, 540528, '安绕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528200, 540528, '拉绥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528201, 540528, '崔久乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528202, 540528, '坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528203, 540528, '冷达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540528204, 540528, '洛林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529100, 540529, '隆子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529101, 540529, '日当镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529200, 540529, '列麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529201, 540529, '热荣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529202, 540529, '三安曲林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529203, 540529, '准巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529204, 540529, '雪萨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529205, 540529, '扎日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529206, 540529, '玉麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529207, 540529, '加玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540529208, 540529, '斗玉珞巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530100, 540530, '错那镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530200, 540530, '卡达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530201, 540530, '觉拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530202, 540530, '浪坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530203, 540530, '曲卓木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530204, 540530, '库局乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530205, 540530, '麻麻门巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530206, 540530, '贡日门巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530207, 540530, '吉巴门巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540530208, 540530, '勒门巴民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531100, 540531, '浪卡子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531101, 540531, '打隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531200, 540531, '张达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531201, 540531, '伦布雪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531202, 540531, '多却乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531203, 540531, '普玛江塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531204, 540531, '阿扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531205, 540531, '卡龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531206, 540531, '白地乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540531207, 540531, '卡热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602100, 540602, '那曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602101, 540602, '罗玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602102, 540602, '古露镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602200, 540602, '达萨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602202, 540602, '油恰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602203, 540602, '香茂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602205, 540602, '那么切乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602209, 540602, '达前乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602210, 540602, '劳麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602211, 540602, '孔玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602213, 540602, '尼玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540602217, 540602, '色雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621100, 540621, '阿扎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621101, 540621, '嘉黎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621201, 540621, '尼屋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621202, 540621, '藏比乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621203, 540621, '措多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621204, 540621, '夏玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621206, 540621, '林堤乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621207, 540621, '麦地卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621209, 540621, '绒多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540621210, 540621, '鸽群乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622100, 540622, '比如镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622101, 540622, '夏曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622201, 540622, '白嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622202, 540622, '达塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622203, 540622, '恰则乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622204, 540622, '扎拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622207, 540622, '羊秀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622208, 540622, '香曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622209, 540622, '良曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540622210, 540622, '茶曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623100, 540623, '聂荣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623201, 540623, '尼玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623203, 540623, '色庆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623205, 540623, '桑荣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623206, 540623, '下曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623207, 540623, '白雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623208, 540623, '索雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623210, 540623, '当木江乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623211, 540623, '查当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540623212, 540623, '永曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624100, 540624, '帕那镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624101, 540624, '强玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624102, 540624, '扎仁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624103, 540624, '雁石坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624201, 540624, '多玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624202, 540624, '玛曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624205, 540624, '滩堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624207, 540624, '帮爱乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624209, 540624, '玛荣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624210, 540624, '扎曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624211, 540624, '色务乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624212, 540624, '措玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540624213, 540624, '岗尼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625100, 540625, '申扎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625101, 540625, '雄梅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625201, 540625, '下过乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625202, 540625, '卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625203, 540625, '巴扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625204, 540625, '塔尔玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625206, 540625, '买巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540625207, 540625, '马跃乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626100, 540626, '亚拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626101, 540626, '荣布镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626201, 540626, '若达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626202, 540626, '加勤乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626203, 540626, '赤多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626205, 540626, '西昌乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626206, 540626, '江达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626208, 540626, '热瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626209, 540626, '嘎美乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540626210, 540626, '嘎木乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627100, 540627, '普保镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627101, 540627, '北拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627102, 540627, '德庆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627103, 540627, '佳琼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627205, 540627, '尼玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627207, 540627, '保吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627209, 540627, '青龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627211, 540627, '马前乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627215, 540627, '门当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540627216, 540627, '新吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628100, 540628, '拉西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628101, 540628, '杂色镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628102, 540628, '雅安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628201, 540628, '江绵乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628202, 540628, '玛如乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628204, 540628, '阿秀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628205, 540628, '贡日乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628206, 540628, '岗切乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628210, 540628, '巴青乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540628211, 540628, '本塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629100, 540629, '尼玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629201, 540629, '卓尼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629202, 540629, '达果乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629203, 540629, '阿索乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629204, 540629, '荣玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629205, 540629, '中仓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629206, 540629, '来多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629207, 540629, '申亚乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629208, 540629, '卓瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629209, 540629, '俄久乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629210, 540629, '文部乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629211, 540629, '甲谷乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629212, 540629, '军仓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540629219, 540629, '吉瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630101, 540630, '措折罗玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630200, 540630, '协德乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630201, 540630, '雅曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630202, 540630, '嘎措乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630203, 540630, '措折强玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630204, 540630, '多玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (540630205, 540630, '巴岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542521100, 542521, '普兰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542521200, 542521, '巴嘎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542521201, 542521, '霍尔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522100, 542522, '托林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522200, 542522, '萨让乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522201, 542522, '达巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522202, 542522, '底雅乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522203, 542522, '香孜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522204, 542522, '曲松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542522205, 542522, '楚鲁松杰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542523100, 542523, '狮泉河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542523200, 542523, '昆莎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542523201, 542523, '左左乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542523202, 542523, '门士乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542523203, 542523, '扎西岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542524100, 542524, '日土镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542524200, 542524, '热帮乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542524201, 542524, '日松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542524202, 542524, '东汝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542524203, 542524, '多玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542525100, 542525, '革吉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542525200, 542525, '雄巴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542525201, 542525, '亚热乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542525202, 542525, '盐湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542525203, 542525, '文布当桑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526100, 542526, '改则镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526200, 542526, '物玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526201, 542526, '先遣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526202, 542526, '麻米乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526203, 542526, '洞措乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526204, 542526, '古姆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542526205, 542526, '察布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542527100, 542527, '措勤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542527200, 542527, '磁石乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542527201, 542527, '曲洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542527202, 542527, '江让乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (542527203, 542527, '达雄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102001, 610102, '西一路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102002, 610102, '长乐中路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102003, 610102, '中山门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102004, 610102, '韩森寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102005, 610102, '解放门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102006, 610102, '自强路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102007, 610102, '太华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102008, 610102, '长乐西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610102009, 610102, '胡家庙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103001, 610103, '南院门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103002, 610103, '柏树林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103003, 610103, '长乐坊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103004, 610103, '东关南街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103005, 610103, '太乙路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103006, 610103, '文艺路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103007, 610103, '长安路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610103008, 610103, '张家村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104001, 610104, '青年路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104002, 610104, '北院门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104003, 610104, '北关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104004, 610104, '红庙坡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104005, 610104, '环城西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104006, 610104, '西关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104007, 610104, '土门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104008, 610104, '桃园路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610104009, 610104, '枣园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111001, 610111, '纺织城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111002, 610111, '十里铺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111003, 610111, '红旗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111004, 610111, '席王街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111005, 610111, '洪庆街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111006, 610111, '狄寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111007, 610111, '灞桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111008, 610111, '新筑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610111009, 610111, '新合街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112001, 610112, '张家堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112002, 610112, '三桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112003, 610112, '辛家庙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112004, 610112, '徐家湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112005, 610112, '大明宫街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112006, 610112, '谭家街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112007, 610112, '草滩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112008, 610112, '六村堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112009, 610112, '未央宫街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112010, 610112, '汉城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112011, 610112, '未央湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610112012, 610112, '建章路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113001, 610113, '小寨路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113002, 610113, '大雁塔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113003, 610113, '长延堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113004, 610113, '电子城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113005, 610113, '等驾坡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113006, 610113, '鱼化寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113007, 610113, '丈八沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113008, 610113, '曲江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113009, 610113, '杜城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610113010, 610113, '漳浒寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114001, 610114, '凤凰路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114002, 610114, '新华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114003, 610114, '振兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114004, 610114, '新兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114005, 610114, '北屯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114006, 610114, '武屯街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610114007, 610114, '关山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115001, 610115, '骊山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115002, 610115, '秦陵街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115003, 610115, '新丰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115004, 610115, '代王街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115005, 610115, '斜口街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115006, 610115, '行者街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115007, 610115, '零口街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115008, 610115, '相桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115009, 610115, '雨金街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115010, 610115, '新市街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115011, 610115, '徐杨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115012, 610115, '西泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115013, 610115, '栎阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115014, 610115, '马额街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115015, 610115, '何寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115016, 610115, '交口街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115017, 610115, '油槐街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115018, 610115, '北田街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115019, 610115, '铁炉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115020, 610115, '任留街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115021, 610115, '穆寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115022, 610115, '小金街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610115023, 610115, '仁宗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116001, 610116, '韦曲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116002, 610116, '郭杜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116003, 610116, '滦镇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116004, 610116, '引镇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116005, 610116, '王寺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116006, 610116, '马王街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116007, 610116, '太乙宫街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116008, 610116, '东大街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116009, 610116, '子午街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116010, 610116, '斗门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116011, 610116, '细柳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116012, 610116, '杜曲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116013, 610116, '大兆街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116014, 610116, '黄良街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116015, 610116, '兴隆街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116016, 610116, '王曲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116017, 610116, '鸣犊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116018, 610116, '王莽街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116019, 610116, '五台街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116020, 610116, '高桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116021, 610116, '五星街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116022, 610116, '灵沼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116023, 610116, '杨庄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116024, 610116, '砲里街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610116025, 610116, '魏寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117001, 610117, '鹿苑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117002, 610117, '泾渭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117003, 610117, '崇皇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117004, 610117, '姬家街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117005, 610117, '耿镇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117006, 610117, '张卜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610117007, 610117, '通远街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118001, 610118, '甘亭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118002, 610118, '余下街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118003, 610118, '玉蝉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118004, 610118, '五竹街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118005, 610118, '大王街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118006, 610118, '秦渡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118007, 610118, '草堂街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118008, 610118, '庞光街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118009, 610118, '祖庵街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118010, 610118, '渭丰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118011, 610118, '涝店街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118012, 610118, '甘河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118013, 610118, '蒋村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610118014, 610118, '石井街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122001, 610122, '蓝关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122101, 610122, '洩湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122102, 610122, '华胥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122103, 610122, '前卫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122104, 610122, '汤峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122105, 610122, '焦岱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122106, 610122, '玉山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122107, 610122, '三里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122108, 610122, '普化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122109, 610122, '葛牌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122110, 610122, '灞源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122111, 610122, '九间房镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122112, 610122, '蓝桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122113, 610122, '辋川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122115, 610122, '厚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122116, 610122, '三官庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122118, 610122, '安村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122119, 610122, '孟村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610122120, 610122, '小寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124001, 610124, '二曲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124101, 610124, '哑柏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124102, 610124, '终南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124103, 610124, '马召镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124104, 610124, '集贤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124105, 610124, '楼观镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124106, 610124, '尚村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124107, 610124, '广济镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124108, 610124, '厚畛子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124109, 610124, '青化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124110, 610124, '竹峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124111, 610124, '翠峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124112, 610124, '四屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124115, 610124, '司竹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124116, 610124, '九峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124117, 610124, '富仁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124118, 610124, '骆峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124119, 610124, '陈河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124120, 610124, '板房子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610124121, 610124, '王家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202001, 610202, '七一路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202002, 610202, '红旗街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202003, 610202, '桃园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202004, 610202, '青年路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202005, 610202, '王家河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202006, 610202, '王益街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610202100, 610202, '黄堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203001, 610203, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203002, 610203, '三里洞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203003, 610203, '王石凹街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203004, 610203, '印台街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203100, 610203, '陈炉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203101, 610203, '红土镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203102, 610203, '广阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203104, 610203, '金锁关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610203106, 610203, '阿庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204001, 610204, '永安路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204002, 610204, '天宝路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204003, 610204, '咸丰路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204004, 610204, '正阳路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204005, 610204, '锦阳路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204006, 610204, '坡头街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204101, 610204, '董家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204102, 610204, '庙湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204103, 610204, '瑶曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204104, 610204, '照金镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204107, 610204, '小丘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204108, 610204, '孙原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204109, 610204, '关庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610204111, 610204, '石柱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222001, 610222, '宜阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222101, 610222, '彭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222102, 610222, '五里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222103, 610222, '太安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222104, 610222, '棋盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222105, 610222, '尧生镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222106, 610222, '哭泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610222201, 610222, '云梦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302001, 610302, '金陵街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302002, 610302, '经二路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302003, 610302, '清姜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302004, 610302, '姜谭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302005, 610302, '桥南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302100, 610302, '马营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302101, 610302, '石鼓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302102, 610302, '神农镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302103, 610302, '高家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610302104, 610302, '八鱼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303001, 610303, '中山东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303002, 610303, '西关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303003, 610303, '中山西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303004, 610303, '群众路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303006, 610303, '东风路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303007, 610303, '十里铺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303008, 610303, '卧龙寺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303100, 610303, '陈仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303101, 610303, '蟠龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303102, 610303, '金河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610303103, 610303, '硖石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304001, 610304, '虢镇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304002, 610304, '东关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304003, 610304, '千渭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304101, 610304, '阳平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304102, 610304, '千河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304103, 610304, '磻溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304104, 610304, '天王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304105, 610304, '慕仪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304106, 610304, '周原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304107, 610304, '贾村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304109, 610304, '县功镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304110, 610304, '新街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304111, 610304, '坪头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304112, 610304, '香泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304113, 610304, '赤沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304114, 610304, '拓石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304115, 610304, '凤阁岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610304116, 610304, '钓渭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305100, 610305, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305101, 610305, '虢王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305102, 610305, '彪角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305103, 610305, '横水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305104, 610305, '田家庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305105, 610305, '糜杆桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305107, 610305, '南指挥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305108, 610305, '陈村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305109, 610305, '长青镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305110, 610305, '柳林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305111, 610305, '姚家沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610305112, 610305, '范家寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323100, 610323, '凤鸣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323101, 610323, '蔡家坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323103, 610323, '益店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323104, 610323, '蒲村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323106, 610323, '青化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323107, 610323, '枣林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323108, 610323, '雍川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323111, 610323, '故郡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610323112, 610323, '京当镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324001, 610324, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324101, 610324, '天度镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324102, 610324, '午井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324103, 610324, '绛帐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324104, 610324, '段家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324105, 610324, '杏林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324106, 610324, '召公镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610324107, 610324, '法门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326001, 610326, '首善街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326101, 610326, '横渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326102, 610326, '槐芽镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326103, 610326, '汤峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326104, 610326, '常兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326105, 610326, '金渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326106, 610326, '营头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326107, 610326, '齐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326400, 610326, '陕西省太白山旅游区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610326401, 610326, '红河谷森林公园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327100, 610327, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327101, 610327, '东风镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327102, 610327, '八渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327104, 610327, '东南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327106, 610327, '温水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327107, 610327, '天成镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327108, 610327, '曹家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327109, 610327, '固关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327112, 610327, '河北镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610327113, 610327, '新集川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328100, 610328, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328101, 610328, '崔家头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328102, 610328, '南寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328103, 610328, '张家塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328104, 610328, '水沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328105, 610328, '草碧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610328107, 610328, '高崖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329100, 610329, '九成宫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329101, 610329, '崔木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329102, 610329, '招贤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329103, 610329, '两亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329105, 610329, '常丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329106, 610329, '丈八镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610329107, 610329, '酒房镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330100, 610330, '双石铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330101, 610330, '凤州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330102, 610330, '黄牛铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330103, 610330, '红花铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330104, 610330, '河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330105, 610330, '唐藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330106, 610330, '平木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330107, 610330, '坪坎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330110, 610330, '留凤关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330400, 610330, '马头滩林业局', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610330401, 610330, '辛家山林业场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331100, 610331, '咀头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331101, 610331, '桃川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331102, 610331, '鹦鸽镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331103, 610331, '靖口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331104, 610331, '太白河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331105, 610331, '黄柏塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610331106, 610331, '王家堎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402001, 610402, '人民路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402002, 610402, '西兰路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402003, 610402, '吴家堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402004, 610402, '渭阳西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402005, 610402, '陈杨寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402006, 610402, '古渡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402007, 610402, '上林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402008, 610402, '钓台街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402009, 610402, '马泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402010, 610402, '渭滨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402011, 610402, '双照街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610402012, 610402, '马庄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610403001, 610403, '杨陵街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610403002, 610403, '李台街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610403003, 610403, '大寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610403100, 610403, '五泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610403102, 610403, '揉谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404001, 610404, '中山街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404002, 610404, '文汇路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404003, 610404, '新兴路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404004, 610404, '渭阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404005, 610404, '渭城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404006, 610404, '窑店街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404007, 610404, '正阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404008, 610404, '周陵街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404009, 610404, '底张街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610404010, 610404, '北杜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422001, 610422, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422102, 610422, '陂西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422103, 610422, '独李镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422104, 610422, '大程镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422105, 610422, '西阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422106, 610422, '鲁桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422107, 610422, '陵前镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422109, 610422, '新兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422110, 610422, '嵯峨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610422111, 610422, '渠岸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423001, 610423, '泾干街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423101, 610423, '永乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423102, 610423, '云阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423103, 610423, '桥底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423104, 610423, '王桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423105, 610423, '口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423107, 610423, '三渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423108, 610423, '高庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423111, 610423, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423112, 610423, '崇文镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423113, 610423, '安吴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423114, 610423, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610423115, 610423, '中张镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424001, 610424, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424101, 610424, '薛录镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424102, 610424, '梁村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424103, 610424, '临平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424104, 610424, '姜村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424105, 610424, '王村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424106, 610424, '马连镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424107, 610424, '阳峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424108, 610424, '峰阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424109, 610424, '注泔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424110, 610424, '灵源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424111, 610424, '阳洪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424112, 610424, '梁山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424113, 610424, '周城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424114, 610424, '新阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610424115, 610424, '大杨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425001, 610425, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425101, 610425, '史德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425102, 610425, '西张堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425103, 610425, '阡东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425104, 610425, '烽火镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425105, 610425, '烟霞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425106, 610425, '赵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425108, 610425, '叱干镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425109, 610425, '南坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425110, 610425, '石潭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425111, 610425, '昭陵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610425112, 610425, '骏马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426001, 610426, '监军街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426101, 610426, '店头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426102, 610426, '常宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426104, 610426, '甘井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426105, 610426, '马坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426108, 610426, '渠子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610426110, 610426, '永平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428001, 610428, '昭仁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428101, 610428, '相公镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428102, 610428, '巨家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428103, 610428, '丁家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428104, 610428, '洪家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428105, 610428, '亭口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428106, 610428, '彭公镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610428108, 610428, '枣园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429001, 610429, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429101, 610429, '土桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429102, 610429, '职田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429103, 610429, '张洪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429104, 610429, '太村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429105, 610429, '郑家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429106, 610429, '湫坡头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429107, 610429, '底庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429109, 610429, '马栏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610429110, 610429, '清塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430001, 610430, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430101, 610430, '官庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430103, 610430, '方里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430104, 610430, '润镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430105, 610430, '车坞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430106, 610430, '铁王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430107, 610430, '石桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610430109, 610430, '十里塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431001, 610431, '普集街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431101, 610431, '苏坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431102, 610431, '武功镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431103, 610431, '游凤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431104, 610431, '贞元镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431105, 610431, '长宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431106, 610431, '小村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610431107, 610431, '大庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481001, 610481, '东城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481002, 610481, '西城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481003, 610481, '店张街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481004, 610481, '西吴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481005, 610481, '马嵬街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481101, 610481, '赵村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481102, 610481, '桑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481104, 610481, '南市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481105, 610481, '庄头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481106, 610481, '南位镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481107, 610481, '阜寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481108, 610481, '丰仪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610481109, 610481, '汤坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482001, 610482, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482002, 610482, '豳风街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482101, 610482, '北极镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482102, 610482, '新民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482103, 610482, '龙高镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482105, 610482, '永乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482106, 610482, '义门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482107, 610482, '水口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482108, 610482, '韩家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610482109, 610482, '太峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502001, 610502, '人民街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502002, 610502, '杜桥街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502003, 610502, '解放街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502004, 610502, '向阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502005, 610502, '站南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502006, 610502, '双王街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502007, 610502, '良田街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502008, 610502, '崇业路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502009, 610502, '辛市街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502010, 610502, '龙背街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502011, 610502, '阳曲街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502012, 610502, '信义街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502013, 610502, '白杨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502100, 610502, '桥南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502101, 610502, '阳郭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502102, 610502, '故市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502103, 610502, '下邽镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502104, 610502, '三张镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502105, 610502, '交斜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502107, 610502, '崇凝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502108, 610502, '孝义镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502109, 610502, '蔺店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502111, 610502, '官底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502112, 610502, '官路镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502113, 610502, '丰原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502114, 610502, '阎村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610502116, 610502, '官道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503001, 610503, '华州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503101, 610503, '杏林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503102, 610503, '赤水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503103, 610503, '高塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503104, 610503, '大明镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503105, 610503, '瓜坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503106, 610503, '莲花寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503107, 610503, '柳枝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503108, 610503, '下庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610503109, 610503, '金堆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610522001, 610522, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610522101, 610522, '秦东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610522102, 610522, '太要镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610522103, 610522, '桐峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610522104, 610522, '代字营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523001, 610523, '西城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523002, 610523, '东城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523101, 610523, '许庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523102, 610523, '朝邑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523103, 610523, '安仁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523104, 610523, '两宜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523105, 610523, '羌白镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523106, 610523, '官池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523107, 610523, '冯村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523108, 610523, '双泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523110, 610523, '下寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523111, 610523, '韦林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523112, 610523, '范家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523113, 610523, '苏村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523114, 610523, '赵渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523116, 610523, '埝桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610523117, 610523, '段家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524001, 610524, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524101, 610524, '甘井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524102, 610524, '坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524103, 610524, '洽川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524104, 610524, '新池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524105, 610524, '黑池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524106, 610524, '路井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524107, 610524, '和家庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524108, 610524, '王村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524110, 610524, '同家庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524111, 610524, '百良镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610524112, 610524, '金峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525001, 610525, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525101, 610525, '冯原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525102, 610525, '王庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525103, 610525, '尧头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525104, 610525, '赵庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525105, 610525, '交道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525106, 610525, '寺前镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525107, 610525, '韦庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525108, 610525, '安里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610525109, 610525, '庄头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526001, 610526, '奉先街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526002, 610526, '紫荆街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526101, 610526, '罕井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526102, 610526, '孙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526103, 610526, '兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526104, 610526, '党睦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526105, 610526, '高阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526106, 610526, '永丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526107, 610526, '荆姚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526108, 610526, '苏坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526109, 610526, '龙阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526112, 610526, '洛滨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526113, 610526, '陈庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526114, 610526, '桥陵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526116, 610526, '尧山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526117, 610526, '椿林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610526118, 610526, '龙池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527001, 610527, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527102, 610527, '尧禾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527103, 610527, '杜康镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527104, 610527, '西固镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527105, 610527, '林皋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527106, 610527, '史官镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527107, 610527, '北塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610527109, 610527, '雷牙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528001, 610528, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528101, 610528, '庄里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528102, 610528, '张桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528103, 610528, '美原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528104, 610528, '流曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528105, 610528, '淡村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528107, 610528, '留古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528108, 610528, '老庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528109, 610528, '薛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528110, 610528, '到贤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528111, 610528, '曹村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528112, 610528, '宫里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528113, 610528, '梅家坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528114, 610528, '刘集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610528115, 610528, '齐村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581001, 610581, '新城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581002, 610581, '金城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581100, 610581, '龙门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581101, 610581, '桑树坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581103, 610581, '芝川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581104, 610581, '西庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581106, 610581, '芝阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610581107, 610581, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582001, 610582, '太华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582002, 610582, '岳庙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582100, 610582, '孟塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582103, 610582, '华西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582104, 610582, '罗敷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582105, 610582, '华山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610582400, 610582, '国营陕西华山企业公司', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602001, 610602, '宝塔山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602002, 610602, '南市街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602003, 610602, '凤凰山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602004, 610602, '枣园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602005, 610602, '桥沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602006, 610602, '新城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602102, 610602, '河庄坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602103, 610602, '李渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602104, 610602, '姚店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602105, 610602, '青化砭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602106, 610602, '蟠龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602107, 610602, '柳林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602108, 610602, '南泥湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602109, 610602, '临镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602110, 610602, '甘谷驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602111, 610602, '万花山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602112, 610602, '川口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602113, 610602, '麻洞川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610602202, 610602, '冯庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603001, 610603, '真武洞街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603002, 610603, '金明街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603003, 610603, '白坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603101, 610603, '砖窑湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603102, 610603, '沿河湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603103, 610603, '招安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603104, 610603, '化子坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603105, 610603, '坪桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603106, 610603, '建华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603107, 610603, '高桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610603108, 610603, '镰刀湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621001, 610621, '七里村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621101, 610621, '黑家堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621102, 610621, '郑庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621103, 610621, '张家滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621104, 610621, '交口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621106, 610621, '雷赤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621107, 610621, '罗子山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610621108, 610621, '安沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622001, 610622, '大禹街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622101, 610622, '永坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622102, 610622, '延水关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622103, 610622, '文安驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622104, 610622, '杨家圪台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622105, 610622, '贾家坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622107, 610622, '关庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610622108, 610622, '乾坤湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625001, 610625, '保安街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625101, 610625, '杏河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625102, 610625, '顺宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625103, 610625, '旦八镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625104, 610625, '金丁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625105, 610625, '永宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625106, 610625, '义正镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610625107, 610625, '双河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626001, 610626, '吴起街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626101, 610626, '铁边城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626102, 610626, '周湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626103, 610626, '白豹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626104, 610626, '长官庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626105, 610626, '长城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626106, 610626, '五谷城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626107, 610626, '吴仓堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610626108, 610626, '庙沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610627001, 610627, '美水街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610627101, 610627, '下寺湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610627102, 610627, '道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610627103, 610627, '石门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610627200, 610627, '桥镇乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610627203, 610627, '劳山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628001, 610628, '茶坊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628101, 610628, '羊泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628102, 610628, '张村驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628103, 610628, '张家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628104, 610628, '直罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628106, 610628, '牛武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628109, 610628, '寺仙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610628204, 610628, '北道德乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629001, 610629, '凤栖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629101, 610629, '旧县镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629102, 610629, '交口河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629103, 610629, '老庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629104, 610629, '土基镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629105, 610629, '石头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629106, 610629, '槐柏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629107, 610629, '永乡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610629108, 610629, '菩提镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630001, 610630, '丹州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630101, 610630, '秋林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630102, 610630, '云岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630104, 610630, '集义镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630105, 610630, '壶口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630200, 610630, '英旺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610630201, 610630, '交里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631100, 610631, '石堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631101, 610631, '白马滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631102, 610631, '瓦子街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631106, 610631, '界头庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631107, 610631, '三岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631205, 610631, '圪台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610631206, 610631, '崾崄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610632001, 610632, '桥山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610632101, 610632, '店头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610632102, 610632, '隆坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610632103, 610632, '田庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610632104, 610632, '阿党镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610632105, 610632, '双龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681001, 610681, '瓦窑堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681002, 610681, '秀延街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681003, 610681, '栾家坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681101, 610681, '杨家园则镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681102, 610681, '玉家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681103, 610681, '安定镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681104, 610681, '马家砭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681105, 610681, '南沟岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681106, 610681, '涧峪岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681107, 610681, '李家岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610681108, 610681, '余家坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702001, 610702, '北关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702002, 610702, '东大街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702003, 610702, '汉中路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702004, 610702, '中山街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702005, 610702, '东关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702006, 610702, '鑫源街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702008, 610702, '七里街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702009, 610702, '龙江街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702100, 610702, '铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702101, 610702, '武乡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702102, 610702, '河东店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702104, 610702, '宗营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702105, 610702, '老君镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702106, 610702, '汉王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610702107, 610702, '徐望镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703001, 610703, '汉山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703002, 610703, '中所营街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703101, 610703, '圣水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703102, 610703, '大河坎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703103, 610703, '协税镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703104, 610703, '梁山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703105, 610703, '阳春镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703106, 610703, '高台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703107, 610703, '新集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703108, 610703, '濂水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703109, 610703, '黄官镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703110, 610703, '青树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703111, 610703, '红庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703112, 610703, '牟家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703113, 610703, '法镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703114, 610703, '湘水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703115, 610703, '小南海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703116, 610703, '碑坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703117, 610703, '黎坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703118, 610703, '福成镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703119, 610703, '两河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610703120, 610703, '胡家营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722001, 610722, '博望街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722002, 610722, '莲花街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722101, 610722, '龙头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722102, 610722, '沙河营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722103, 610722, '文川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722104, 610722, '柳林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722105, 610722, '老庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722107, 610722, '桔园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722108, 610722, '原公镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722109, 610722, '上元观镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722110, 610722, '天明镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722111, 610722, '二里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722112, 610722, '五堵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722114, 610722, '双溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722116, 610722, '小河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722119, 610722, '董家营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722120, 610722, '三合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610722400, 610722, '陕西飞机制造公司', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723001, 610723, '洋州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723002, 610723, '纸坊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723003, 610723, '戚氏街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723103, 610723, '龙亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723104, 610723, '谢村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723105, 610723, '马畅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723107, 610723, '溢水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723108, 610723, '磨子桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723109, 610723, '黄家营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723110, 610723, '黄安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723111, 610723, '黄金峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723112, 610723, '槐树关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723113, 610723, '金水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723114, 610723, '华阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723115, 610723, '茅坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723119, 610723, '八里关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723120, 610723, '桑溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610723121, 610723, '关帝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724001, 610724, '城北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724002, 610724, '城南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724101, 610724, '杨河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724102, 610724, '柳树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724103, 610724, '沙河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724104, 610724, '私渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724105, 610724, '桑园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724106, 610724, '白龙塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724108, 610724, '峡口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724109, 610724, '堰口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724110, 610724, '茶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724111, 610724, '高川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724112, 610724, '两河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724114, 610724, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724116, 610724, '骆家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724117, 610724, '子午镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610724118, 610724, '白勉峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725001, 610725, '勉阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725101, 610725, '武侯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725102, 610725, '周家山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725103, 610725, '同沟寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725105, 610725, '新街子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725106, 610725, '老道寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725107, 610725, '褒城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725109, 610725, '金泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725110, 610725, '定军山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725111, 610725, '温泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725112, 610725, '元墩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725113, 610725, '阜川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725114, 610725, '新铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725116, 610725, '茶店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725117, 610725, '镇川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725118, 610725, '漆树坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725119, 610725, '张家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610725120, 610725, '长沟河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726001, 610726, '汉源街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726002, 610726, '高寨子街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726102, 610726, '大安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726103, 610726, '代家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726104, 610726, '阳平关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726105, 610726, '燕子砭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726106, 610726, '广坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726107, 610726, '青木川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726108, 610726, '毛坝河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726109, 610726, '铁锁关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726110, 610726, '胡家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726111, 610726, '巴山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726112, 610726, '巨亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726113, 610726, '舒家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726117, 610726, '太阳岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726118, 610726, '安乐河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726119, 610726, '二郎坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610726120, 610726, '禅家岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727001, 610727, '兴州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727002, 610727, '横现河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727101, 610727, '接官亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727102, 610727, '西淮坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727103, 610727, '两河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727104, 610727, '金家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727105, 610727, '徐家坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727106, 610727, '白水江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727107, 610727, '硖口驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727108, 610727, '马蹄湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727109, 610727, '乐素河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727110, 610727, '郭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727111, 610727, '黑河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727112, 610727, '白雀寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727113, 610727, '仙台坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727114, 610727, '五龙洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610727115, 610727, '观音寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728001, 610728, '泾洋街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728101, 610728, '渔渡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728102, 610728, '盐场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728103, 610728, '观音镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728104, 610728, '巴庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728105, 610728, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728106, 610728, '长岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728107, 610728, '三元镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728108, 610728, '简池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728109, 610728, '碾子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728110, 610728, '小洋镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728111, 610728, '青水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728112, 610728, '赤南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728113, 610728, '平安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728114, 610728, '杨家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728115, 610728, '巴山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728116, 610728, '黎坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728117, 610728, '仁村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728118, 610728, '大池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610728120, 610728, '永乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729001, 610729, '紫柏街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729101, 610729, '马道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729102, 610729, '武关驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729103, 610729, '留侯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729104, 610729, '江口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729105, 610729, '玉皇庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729106, 610729, '火烧店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610729107, 610729, '青桥驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730001, 610730, '袁家庄街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730101, 610730, '陈家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730102, 610730, '大河坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730103, 610730, '西岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730104, 610730, '岳坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730105, 610730, '长角坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610730106, 610730, '石墩河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802001, 610802, '鼓楼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802002, 610802, '青山路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802003, 610802, '上郡路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802004, 610802, '新明楼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802005, 610802, '驼峰路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802006, 610802, '崇文路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802007, 610802, '航宇路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802008, 610802, '长城路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802009, 610802, '金沙路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802010, 610802, '朝阳路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802011, 610802, '沙河路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802012, 610802, '明珠路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802100, 610802, '鱼河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802101, 610802, '上盐湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802102, 610802, '镇川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802105, 610802, '麻黄梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802106, 610802, '牛家梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802107, 610802, '金鸡滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802108, 610802, '马合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802109, 610802, '巴拉素镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802111, 610802, '鱼河峁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802112, 610802, '青云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802113, 610802, '古塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802114, 610802, '大河塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802115, 610802, '小纪汗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802116, 610802, '芹河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802205, 610802, '孟家湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802206, 610802, '小壕兔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802207, 610802, '岔河则乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802208, 610802, '补浪河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610802209, 610802, '红石桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803001, 610803, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803002, 610803, '怀远街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803003, 610803, '夏州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803004, 610803, '怀仁路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803005, 610803, '崇德路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803101, 610803, '石湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803102, 610803, '高镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803103, 610803, '武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803104, 610803, '党岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803105, 610803, '响水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803106, 610803, '波罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803107, 610803, '殿市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803108, 610803, '塔湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803109, 610803, '赵石畔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803110, 610803, '魏家楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803111, 610803, '韩岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803112, 610803, '白界镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610803113, 610803, '雷龙湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822100, 610822, '府谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822101, 610822, '黄甫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822103, 610822, '哈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822104, 610822, '庙沟门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822105, 610822, '新民镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822106, 610822, '孤山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822107, 610822, '清水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822108, 610822, '大昌汗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822109, 610822, '古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822110, 610822, '三道沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822111, 610822, '老高川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822112, 610822, '武家庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822113, 610822, '木瓜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610822114, 610822, '田家寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824001, 610824, '张家畔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824101, 610824, '东坑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824102, 610824, '青阳岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824103, 610824, '宁条梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824104, 610824, '周河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824105, 610824, '红墩界镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824106, 610824, '杨桥畔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824107, 610824, '王渠则镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824108, 610824, '中山涧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824109, 610824, '杨米涧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824110, 610824, '天赐湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824111, 610824, '小河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824112, 610824, '龙洲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824113, 610824, '黄蒿界镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824114, 610824, '海则滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824115, 610824, '席麻湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610824116, 610824, '镇靖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825001, 610825, '定边街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825101, 610825, '贺圈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825102, 610825, '红柳沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825103, 610825, '砖井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825104, 610825, '白泥井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825105, 610825, '安边镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825106, 610825, '堆子梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825107, 610825, '白湾子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825108, 610825, '姬塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825109, 610825, '杨井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825110, 610825, '新安边镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825111, 610825, '张崾先镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825112, 610825, '樊学镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825113, 610825, '盐场堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825114, 610825, '郝滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825115, 610825, '石洞沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825116, 610825, '冯地坑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825204, 610825, '油房庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610825210, 610825, '学庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826100, 610826, '名州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826101, 610826, '薛家峁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826102, 610826, '崔家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826103, 610826, '定仙墕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826104, 610826, '枣林坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826105, 610826, '义合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826106, 610826, '吉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826107, 610826, '薛家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826108, 610826, '四十里铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826109, 610826, '石家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826110, 610826, '田庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826111, 610826, '中角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826112, 610826, '满堂川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826113, 610826, '张家砭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610826114, 610826, '白家硷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827001, 610827, '银州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827101, 610827, '桃镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827102, 610827, '龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827103, 610827, '杨家沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827104, 610827, '杜家石沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827105, 610827, '沙家店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827106, 610827, '印斗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827107, 610827, '郭兴庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610827108, 610827, '城郊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828001, 610828, '佳州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828101, 610828, '坑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828102, 610828, '店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828103, 610828, '乌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828104, 610828, '金明寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828105, 610828, '通镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828106, 610828, '王家砭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828107, 610828, '方塌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828108, 610828, '朱家坬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828109, 610828, '螅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828110, 610828, '朱官寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828111, 610828, '刘国具镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610828112, 610828, '木头峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610829001, 610829, '宋家川街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610829101, 610829, '辛家沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610829102, 610829, '郭家沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610829103, 610829, '寇家塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610829104, 610829, '岔上镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610829105, 610829, '张家山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830100, 610830, '宽州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830101, 610830, '石咀驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830102, 610830, '折家坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830103, 610830, '玉家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830104, 610830, '高杰村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830105, 610830, '李家塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830106, 610830, '店则沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830107, 610830, '解家沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610830108, 610830, '下廿里铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831001, 610831, '双湖峪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831101, 610831, '何家集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831102, 610831, '老君殿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831103, 610831, '裴家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831104, 610831, '苗家坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831105, 610831, '三川口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831106, 610831, '马蹄沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831107, 610831, '周家硷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831108, 610831, '电市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831109, 610831, '砖庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831110, 610831, '淮宁湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831111, 610831, '马岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610831200, 610831, '驼耳巷乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881001, 610881, '滨河新区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881002, 610881, '西沙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881003, 610881, '麟州街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881004, 610881, '迎宾路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881005, 610881, '永兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881006, 610881, '西沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881101, 610881, '高家堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881102, 610881, '店塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881103, 610881, '孙家岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881104, 610881, '大柳塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881105, 610881, '花石崖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881106, 610881, '中鸡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881107, 610881, '贺家川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881108, 610881, '尔林兔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881109, 610881, '万镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881110, 610881, '大保当镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881111, 610881, '马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881112, 610881, '栏杆堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881113, 610881, '沙峁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610881114, 610881, '锦界镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902001, 610902, '老城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902002, 610902, '新城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902003, 610902, '江北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902004, 610902, '建民街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902100, 610902, '关庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902101, 610902, '张滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902102, 610902, '瀛湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902104, 610902, '五里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902107, 610902, '恒口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902109, 610902, '吉河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902110, 610902, '流水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902111, 610902, '大竹园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902112, 610902, '洪山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902114, 610902, '茨沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902115, 610902, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902116, 610902, '沈坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902117, 610902, '双龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902118, 610902, '叶坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902119, 610902, '中原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902120, 610902, '县河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902121, 610902, '紫荆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902122, 610902, '早阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902123, 610902, '关家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902124, 610902, '石梯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902125, 610902, '坝河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902128, 610902, '牛蹄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902130, 610902, '晏坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610902132, 610902, '谭坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921100, 610921, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921101, 610921, '涧池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921102, 610921, '蒲溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921103, 610921, '平梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921104, 610921, '双乳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921105, 610921, '铁佛寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921107, 610921, '漩涡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921108, 610921, '汉阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921110, 610921, '双河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610921112, 610921, '观音河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922100, 610922, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922101, 610922, '饶峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922102, 610922, '两河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922103, 610922, '迎丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922104, 610922, '池河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922105, 610922, '后柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922106, 610922, '喜河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922107, 610922, '熨斗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922108, 610922, '云雾山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922109, 610922, '中池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610922110, 610922, '曾溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923100, 610923, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923101, 610923, '四亩地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923102, 610923, '江口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923104, 610923, '广货街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923105, 610923, '龙王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923106, 610923, '筒车湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923108, 610923, '金川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923109, 610923, '皇冠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923110, 610923, '太山庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923111, 610923, '梅子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610923113, 610923, '新场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924100, 610924, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924101, 610924, '蒿坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924102, 610924, '汉王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924103, 610924, '焕古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924104, 610924, '向阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924105, 610924, '洞河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924106, 610924, '洄水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924108, 610924, '双桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924109, 610924, '高桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924110, 610924, '红椿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924111, 610924, '高滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924112, 610924, '毛坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924113, 610924, '瓦庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924114, 610924, '麻柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924115, 610924, '双安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924116, 610924, '东木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610924117, 610924, '界岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925100, 610925, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925101, 610925, '佐龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925103, 610925, '滔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925104, 610925, '官元镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925105, 610925, '石门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925106, 610925, '民主镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925107, 610925, '大道河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925109, 610925, '堰门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925111, 610925, '蔺河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925112, 610925, '四季镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925114, 610925, '孟石岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610925115, 610925, '南宫山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926100, 610926, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926101, 610926, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926102, 610926, '老县镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926103, 610926, '大贵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926104, 610926, '三阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926105, 610926, '洛河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926106, 610926, '广佛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926107, 610926, '八仙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926108, 610926, '长安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926109, 610926, '正阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610926110, 610926, '西河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927100, 610927, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927101, 610927, '曾家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927102, 610927, '牛头店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927103, 610927, '钟宝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927105, 610927, '上竹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927106, 610927, '华坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610927108, 610927, '曙坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929100, 610929, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929101, 610929, '中厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929102, 610929, '构朳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929103, 610929, '卡子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929104, 610929, '茅坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929105, 610929, '宋家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929106, 610929, '西营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929107, 610929, '仓上镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929108, 610929, '冷水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929109, 610929, '双丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610929110, 610929, '麻虎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981100, 610981, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981101, 610981, '棕溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981102, 610981, '关口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981103, 610981, '蜀河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981104, 610981, '双河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981105, 610981, '小河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981106, 610981, '赵湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981107, 610981, '麻坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981108, 610981, '甘溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981109, 610981, '白柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981110, 610981, '吕河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981111, 610981, '神河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981112, 610981, '铜钱关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981113, 610981, '段家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981114, 610981, '仙河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981115, 610981, '金寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981116, 610981, '桐木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981117, 610981, '构元镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981118, 610981, '石门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981119, 610981, '红军镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (610981120, 610981, '仁河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002001, 611002, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002002, 611002, '大赵峪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002003, 611002, '陈塬街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002004, 611002, '刘湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002101, 611002, '夜村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002104, 611002, '沙河子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002105, 611002, '杨峪河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002106, 611002, '金陵寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002107, 611002, '黑山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002108, 611002, '杨斜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002109, 611002, '麻街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002111, 611002, '牧护关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002112, 611002, '大荆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002113, 611002, '腰市镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002114, 611002, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002115, 611002, '北宽坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002119, 611002, '三岔河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002121, 611002, '闫村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002400, 611002, '二龙山水库', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002401, 611002, '南秦水库', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002402, 611002, '二龙山国营林场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002403, 611002, '商丹循环工业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002404, 611002, '荆河工业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002405, 611002, '荆河农业示范园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002406, 611002, '高校园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002407, 611002, '商洛职业技术学院', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611002408, 611002, '氟化硅产业业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021001, 611021, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021002, 611021, '四皓街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021101, 611021, '景村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021102, 611021, '古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021103, 611021, '三要镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021104, 611021, '灵口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021106, 611021, '寺耳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021107, 611021, '巡检镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021108, 611021, '石坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021109, 611021, '石门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021110, 611021, '麻坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021111, 611021, '洛源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021112, 611021, '保安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021114, 611021, '永丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021117, 611021, '柏峪寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611021118, 611021, '高耀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022001, 611022, '龙驹寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022101, 611022, '庾岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022102, 611022, '蔡川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022103, 611022, '峦庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022104, 611022, '铁峪铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022105, 611022, '武关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022106, 611022, '竹林关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022107, 611022, '土门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022108, 611022, '寺坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022109, 611022, '商镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022110, 611022, '棣花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611022115, 611022, '花瓶子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023001, 611023, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023101, 611023, '富水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023102, 611023, '湘河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023104, 611023, '赵川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023107, 611023, '过风楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023108, 611023, '试马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023109, 611023, '清油河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023110, 611023, '十里坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023111, 611023, '金丝峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611023112, 611023, '青山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024001, 611024, '城关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024002, 611024, '十里铺街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024101, 611024, '高坝店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024102, 611024, '天竺山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024103, 611024, '中村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024104, 611024, '银花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024105, 611024, '西照川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024106, 611024, '漫川关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024107, 611024, '南宽坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024108, 611024, '户家塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024109, 611024, '杨地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024111, 611024, '小河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024112, 611024, '色河铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024113, 611024, '板岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024116, 611024, '延坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024117, 611024, '两岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024118, 611024, '王阎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611024121, 611024, '法官镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025001, 611025, '永乐街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025101, 611025, '回龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025102, 611025, '铁厂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025103, 611025, '大坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025104, 611025, '米粮镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025105, 611025, '茅坪回族镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025106, 611025, '西口回族镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025107, 611025, '高峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025108, 611025, '青铜关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025109, 611025, '柴坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025110, 611025, '达仁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025111, 611025, '木王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025113, 611025, '云盖寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025114, 611025, '庙沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025117, 611025, '月河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025400, 611025, '黑窑沟林厂', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025401, 611025, '木王林厂', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611025402, 611025, '镇安县苗圃', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026001, 611026, '乾佑街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026101, 611026, '营盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026102, 611026, '下梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026104, 611026, '小岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026105, 611026, '凤凰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026106, 611026, '红岩寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026107, 611026, '曹坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026109, 611026, '杏坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (611026110, 611026, '瓦房口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102001, 620102, '酒泉路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102002, 620102, '张掖路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102003, 620102, '雁南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102004, 620102, '临夏路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102005, 620102, '雁北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102006, 620102, '五泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102007, 620102, '白银路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102008, 620102, '皋兰路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102009, 620102, '广武门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102010, 620102, '伏龙坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102011, 620102, '靖远路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102012, 620102, '草场街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102013, 620102, '火车站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102014, 620102, '拱星墩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102015, 620102, '东岗街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102016, 620102, '团结新村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102017, 620102, '东岗西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102018, 620102, '铁路东村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102019, 620102, '铁路西村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102020, 620102, '渭源路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102021, 620102, '盐场路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102022, 620102, '嘉峪关路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102023, 620102, '焦家湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102024, 620102, '青白石街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102025, 620102, '雁园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102400, 620102, '高新区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102402, 620102, '甘肃农垦集团', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620102403, 620102, '甘肃监狱企业集团公司', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103001, 620103, '西园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103002, 620103, '西湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103003, 620103, '建兰路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103004, 620103, '敦煌路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103005, 620103, '西站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103006, 620103, '晏家坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103007, 620103, '龚家湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103008, 620103, '土门墩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103009, 620103, '秀川街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103100, 620103, '阿干镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103101, 620103, '八里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103102, 620103, '彭家坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103103, 620103, '西果园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103104, 620103, '黄峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620103201, 620103, '魏岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104001, 620104, '陈坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104002, 620104, '先锋路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104003, 620104, '福利路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104004, 620104, '西固城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104005, 620104, '四季青街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104006, 620104, '临洮街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104007, 620104, '西柳沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104100, 620104, '新城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104101, 620104, '东川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104102, 620104, '河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104103, 620104, '达川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104104, 620104, '柳泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620104204, 620104, '金沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105001, 620105, '培黎街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105002, 620105, '西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105003, 620105, '沙井驿街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105004, 620105, '十里店街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105005, 620105, '孔家崖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105006, 620105, '银滩路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105007, 620105, '刘家堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620105008, 620105, '安宁堡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111001, 620111, '窑街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111003, 620111, '矿区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111004, 620111, '华龙街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111101, 620111, '海石湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111102, 620111, '花庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111103, 620111, '平安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620111104, 620111, '红古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121100, 620121, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121101, 620121, '红城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121102, 620121, '中堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121103, 620121, '武胜驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121104, 620121, '河桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121105, 620121, '连城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121106, 620121, '苦水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121109, 620121, '大同镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121110, 620121, '龙泉寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121111, 620121, '树屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121112, 620121, '上川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121113, 620121, '柳树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121114, 620121, '通远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121201, 620121, '坪城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121202, 620121, '民乐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620121204, 620121, '七山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620122100, 620122, '石洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620122102, 620122, '忠和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620122103, 620122, '什川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620122104, 620122, '九合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620122105, 620122, '水阜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620122106, 620122, '黑石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123100, 620123, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123101, 620123, '夏官营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123102, 620123, '高崖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123103, 620123, '金崖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123104, 620123, '和平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123105, 620123, '甘草店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123106, 620123, '青城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123107, 620123, '定远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123108, 620123, '连搭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123109, 620123, '新营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123110, 620123, '贡井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123202, 620123, '小康营乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123205, 620123, '马坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123207, 620123, '清水驿乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123208, 620123, '龙泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123209, 620123, '韦营乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123210, 620123, '中连川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123212, 620123, '园子岔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123213, 620123, '上花岔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620123214, 620123, '哈岘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620171101, 620171, '中川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620171102, 620171, '秦川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620171103, 620171, '西岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620201001, 620201, '雄关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620201002, 620201, '钢城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620201100, 620201, '新城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620201101, 620201, '峪泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620201102, 620201, '文殊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302001, 620302, '滨河路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302002, 620302, '桂林路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302003, 620302, '北京路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302004, 620302, '金川路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302005, 620302, '新华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302006, 620302, '广州路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302100, 620302, '宁远堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620302101, 620302, '双湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321100, 620321, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321101, 620321, '河西堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321102, 620321, '新城子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321103, 620321, '朱王堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321104, 620321, '东寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321105, 620321, '水源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321106, 620321, '红山窑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321107, 620321, '焦家庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321108, 620321, '六坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620321203, 620321, '南坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402001, 620402, '人民路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402002, 620402, '公园路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402003, 620402, '四龙路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402004, 620402, '工农路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402005, 620402, '纺织路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402100, 620402, '水川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402101, 620402, '四龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402102, 620402, '王岘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402201, 620402, '强湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620402202, 620402, '武川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403001, 620403, '长征街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403002, 620403, '电力路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403003, 620403, '红会路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403004, 620403, '兴平路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403100, 620403, '王家山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403101, 620403, '水泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403102, 620403, '共和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403105, 620403, '宝积镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403106, 620403, '黄峤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403203, 620403, '种田乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620403204, 620403, '复兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421101, 620421, '北湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421102, 620421, '东湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421103, 620421, '乌兰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421104, 620421, '刘川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421105, 620421, '北滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421106, 620421, '五合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421107, 620421, '大芦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421108, 620421, '糜滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421109, 620421, '高湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421110, 620421, '平堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421111, 620421, '东升镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421112, 620421, '双龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421113, 620421, '三滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421206, 620421, '兴隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421208, 620421, '石门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421211, 620421, '靖安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421215, 620421, '永新乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620421216, 620421, '若笠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422100, 620422, '会师镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422101, 620422, '郭城驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422102, 620422, '河畔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422103, 620422, '头寨子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422104, 620422, '太平店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422105, 620422, '甘沟驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422106, 620422, '侯家川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422107, 620422, '柴家门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422108, 620422, '汉家岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422109, 620422, '刘家寨子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422110, 620422, '白草塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422111, 620422, '大沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422112, 620422, '四房吴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422113, 620422, '中川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422114, 620422, '老君坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422115, 620422, '平头川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422116, 620422, '丁家沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422117, 620422, '杨崖集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422118, 620422, '翟家所镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422119, 620422, '韩家集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422120, 620422, '土门岘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422121, 620422, '新塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422122, 620422, '草滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422123, 620422, '新庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422202, 620422, '新添堡回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422204, 620422, '党家岘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422213, 620422, '八里湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620422225, 620422, '土高山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423100, 620423, '一条山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423101, 620423, '芦阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423102, 620423, '上沙沃镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423103, 620423, '喜泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423104, 620423, '草窝滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423105, 620423, '红水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423106, 620423, '中泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423107, 620423, '正路镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423203, 620423, '寺滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423205, 620423, '五佛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620423207, 620423, '漫水滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502001, 620502, '大城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502002, 620502, '七里墩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502003, 620502, '东关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502004, 620502, '中城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502005, 620502, '西关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502006, 620502, '石马坪街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502007, 620502, '天水郡街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502100, 620502, '玉泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502101, 620502, '太京镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502102, 620502, '藉口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502103, 620502, '皂郊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502104, 620502, '汪川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502105, 620502, '牡丹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502106, 620502, '关子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502107, 620502, '平南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502108, 620502, '天水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502109, 620502, '娘娘坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502110, 620502, '中梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502111, 620502, '杨家寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502112, 620502, '齐寿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502113, 620502, '大门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502114, 620502, '秦岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620502115, 620502, '华歧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503001, 620503, '道北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503002, 620503, '北道埠街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503003, 620503, '桥南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503100, 620503, '社棠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503101, 620503, '马跑泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503102, 620503, '甘泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503103, 620503, '渭南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503104, 620503, '东岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503105, 620503, '花牛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503106, 620503, '中滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503107, 620503, '新阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503108, 620503, '元龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503109, 620503, '伯阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503110, 620503, '麦积镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503111, 620503, '石佛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503112, 620503, '三岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503113, 620503, '琥珀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503114, 620503, '利桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503115, 620503, '五龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503116, 620503, '党川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503400, 620503, '天水经济开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503401, 620503, '天水市高新技术工业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503402, 620503, '天水市农业高新技术示范区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503403, 620503, '天水市麦积区三阳工业示范区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503404, 620503, '天水市麦积区廿铺工业示范区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620503405, 620503, '天水市麦积区东柯河工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521100, 620521, '永清镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521101, 620521, '红堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521102, 620521, '白驼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521103, 620521, '金集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521104, 620521, '秦亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521105, 620521, '山门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521106, 620521, '白沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521107, 620521, '王河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521108, 620521, '郭川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521109, 620521, '黄门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521110, 620521, '松树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521111, 620521, '远门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521112, 620521, '土门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521113, 620521, '草川铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521114, 620521, '陇东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521206, 620521, '贾川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521207, 620521, '丰望乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521211, 620521, '新城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620521400, 620521, '清水县科技养殖示范园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522100, 620522, '兴国镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522101, 620522, '莲花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522102, 620522, '西川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522103, 620522, '陇城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522104, 620522, '郭嘉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522105, 620522, '五营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522106, 620522, '叶堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522107, 620522, '魏店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522108, 620522, '安伏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522109, 620522, '千户镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522110, 620522, '王尹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522111, 620522, '兴丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522112, 620522, '中山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522113, 620522, '刘坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522114, 620522, '王铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522115, 620522, '王窑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620522116, 620522, '云山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523100, 620523, '大像山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523101, 620523, '新兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523102, 620523, '磐安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523103, 620523, '六峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523104, 620523, '安远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523105, 620523, '金山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523106, 620523, '大石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523107, 620523, '礼辛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523108, 620523, '武家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523109, 620523, '大庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523110, 620523, '古坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523111, 620523, '八里湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523112, 620523, '西坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523200, 620523, '谢家湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620523207, 620523, '白家湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524100, 620524, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524101, 620524, '洛门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524102, 620524, '鸳鸯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524103, 620524, '滩歌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524104, 620524, '四门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524105, 620524, '马力镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524106, 620524, '山丹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524107, 620524, '温泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524108, 620524, '桦林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524109, 620524, '龙台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524110, 620524, '榆盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524111, 620524, '高楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524112, 620524, '杨河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524202, 620524, '嘴头乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620524206, 620524, '沿安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525100, 620525, '张家川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525101, 620525, '龙山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525102, 620525, '恭门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525103, 620525, '马鹿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525104, 620525, '梁山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525105, 620525, '马关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525106, 620525, '刘堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525107, 620525, '胡川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525108, 620525, '大阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525109, 620525, '川王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525202, 620525, '张棉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525204, 620525, '木河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525209, 620525, '连五乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525213, 620525, '平安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620525214, 620525, '阎家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602001, 620602, '东大街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602002, 620602, '西大街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602003, 620602, '东关街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602004, 620602, '西关街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602005, 620602, '火车站街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602006, 620602, '地质新村街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602007, 620602, '荣华街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602008, 620602, '宣武街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602009, 620602, '黄羊河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602100, 620602, '黄羊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602101, 620602, '武南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602102, 620602, '清源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602103, 620602, '永昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602104, 620602, '双城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602105, 620602, '丰乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602106, 620602, '高坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602107, 620602, '金羊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602108, 620602, '和平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602109, 620602, '羊下坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602110, 620602, '中坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602111, 620602, '永丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602112, 620602, '古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602113, 620602, '张义镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602114, 620602, '发放镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602115, 620602, '西营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602116, 620602, '四坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602117, 620602, '洪祥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602118, 620602, '谢河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602119, 620602, '金沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602120, 620602, '松树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602121, 620602, '怀安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602122, 620602, '下双镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602123, 620602, '清水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602124, 620602, '河东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602125, 620602, '五和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602126, 620602, '长城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602127, 620602, '吴家井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602128, 620602, '金河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602129, 620602, '韩佐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602130, 620602, '大柳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602131, 620602, '柏树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602132, 620602, '金塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602133, 620602, '九墩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602134, 620602, '金山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602135, 620602, '新华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602136, 620602, '康宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602400, 620602, '九墩滩生态建设指挥部', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602401, 620602, '邓马营湖生态建设指挥部', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602402, 620602, '凉州工业园区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620602403, 620602, '甘肃武威工业园区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621100, 620621, '三雷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621101, 620621, '东坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621102, 620621, '泉山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621103, 620621, '西渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621104, 620621, '东湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621105, 620621, '红砂岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621106, 620621, '昌宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621107, 620621, '重兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621108, 620621, '薛百镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621109, 620621, '大坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621110, 620621, '苏武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621111, 620621, '大滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621112, 620621, '双茨科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621113, 620621, '红沙梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621114, 620621, '蔡旗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621115, 620621, '夹河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621116, 620621, '收成镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620621117, 620621, '南湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622100, 620622, '古浪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622101, 620622, '泗水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622102, 620622, '土门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622103, 620622, '大靖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622104, 620622, '裴家营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622105, 620622, '海子滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622106, 620622, '定宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622107, 620622, '黄羊川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622108, 620622, '黑松驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622109, 620622, '永丰滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622110, 620622, '黄花滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622111, 620622, '西靖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622112, 620622, '民权镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622113, 620622, '直滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622114, 620622, '古丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622205, 620622, '新堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622206, 620622, '干城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622207, 620622, '横梁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620622208, 620622, '十八里堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623100, 620623, '华藏寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623101, 620623, '打柴沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623102, 620623, '安远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623103, 620623, '炭山岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623104, 620623, '哈溪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623105, 620623, '赛什斯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623106, 620623, '石门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623107, 620623, '松山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623108, 620623, '天堂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623109, 620623, '朵什镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623110, 620623, '西大滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623111, 620623, '抓喜秀龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623112, 620623, '大红沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623113, 620623, '祁连镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623201, 620623, '东坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623202, 620623, '赛拉隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623203, 620623, '东大滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623208, 620623, '毛藏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623210, 620623, '旦马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623401, 620623, '天祝建材厂', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620623402, 620623, '天祝煤电公司', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702001, 620702, '东街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702002, 620702, '南街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702003, 620702, '西街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702004, 620702, '北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702005, 620702, '火车站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702100, 620702, '梁家墩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702101, 620702, '上秦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702102, 620702, '大满镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702103, 620702, '沙井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702104, 620702, '乌江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702105, 620702, '甘浚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702106, 620702, '新墩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702107, 620702, '党寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702108, 620702, '碱滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702109, 620702, '三闸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702110, 620702, '小满镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702111, 620702, '明永镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702112, 620702, '长安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702202, 620702, '龙渠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702203, 620702, '安阳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702204, 620702, '花寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702207, 620702, '靖安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702211, 620702, '平山湖蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620702402, 620702, '张掖经济技术开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721100, 620721, '红湾寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721101, 620721, '皇城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721102, 620721, '康乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721200, 620721, '马蹄藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721202, 620721, '白银蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721203, 620721, '大河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721204, 620721, '明花乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721205, 620721, '祁丰蔵族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721500, 620721, '甘肃省绵羊育种场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620721501, 620721, '张掖宝瓶河牧场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722101, 620722, '洪水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722102, 620722, '六坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722103, 620722, '新天镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722104, 620722, '南古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722105, 620722, '永固镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722106, 620722, '三堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722107, 620722, '南丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722108, 620722, '民联镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722109, 620722, '顺化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722110, 620722, '丰乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620722400, 620722, '民乐生态工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723101, 620723, '沙河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723102, 620723, '新华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723103, 620723, '蓼泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723104, 620723, '平川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723105, 620723, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723106, 620723, '鸭暖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723107, 620723, '倪家营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723500, 620723, '国营临泽农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723501, 620723, '五泉林场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723502, 620723, '沙河林场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723503, 620723, '小泉子治沙站', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723504, 620723, '园艺场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620723505, 620723, '良种繁殖场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724100, 620724, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724101, 620724, '宣化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724102, 620724, '南华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724103, 620724, '巷道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724104, 620724, '合黎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724105, 620724, '骆驼城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724106, 620724, '新坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724107, 620724, '黑泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724108, 620724, '罗城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620724400, 620724, '甘肃高台工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725101, 620725, '清泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725102, 620725, '位奇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725103, 620725, '霍城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725104, 620725, '陈户镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725105, 620725, '大马营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725106, 620725, '东乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725203, 620725, '老军乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725204, 620725, '李桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725400, 620725, '国营山丹农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620725402, 620725, '中牧公司山丹马场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802001, 620802, '东关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802002, 620802, '中街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802003, 620802, '西郊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802101, 620802, '崆峒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802102, 620802, '白水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802103, 620802, '草峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802104, 620802, '安国镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802105, 620802, '柳湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802106, 620802, '四十里铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802107, 620802, '花所镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802203, 620802, '索罗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802204, 620802, '香莲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802205, 620802, '西阳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802206, 620802, '大秦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802207, 620802, '白庙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802208, 620802, '寨河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802209, 620802, '大寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802210, 620802, '上杨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802211, 620802, '麻武乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802212, 620802, '峡门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620802498, 620802, '平凉崆峒山大景区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821001, 620821, '城市社区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821100, 620821, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821101, 620821, '玉都镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821102, 620821, '高平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821103, 620821, '荔堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821104, 620821, '王村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821105, 620821, '窑店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821106, 620821, '飞云镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821107, 620821, '丰台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821108, 620821, '党原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821109, 620821, '汭丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821110, 620821, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821201, 620821, '罗汉洞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821202, 620821, '泾明乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821203, 620821, '红河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620821500, 620821, '张老寺农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822001, 620822, '城市社区管理委员会地区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822100, 620822, '中台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822101, 620822, '邵寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822102, 620822, '独店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822103, 620822, '什字镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822104, 620822, '朝那镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822105, 620822, '西屯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822106, 620822, '上良镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822107, 620822, '百里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822108, 620822, '蒲窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822201, 620822, '新开乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822204, 620822, '梁原乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822205, 620822, '龙门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822206, 620822, '星火乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620822400, 620822, '万宝川农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823001, 620823, '城市社区管理委员会街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823100, 620823, '锦屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823101, 620823, '新窑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823102, 620823, '柏树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823103, 620823, '黄寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823202, 620823, '黄花乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620823203, 620823, '木林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825001, 620825, '水洛街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825100, 620825, '水洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825101, 620825, '南湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825102, 620825, '朱店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825103, 620825, '万泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825104, 620825, '韩店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825105, 620825, '卧龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825106, 620825, '阳川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825107, 620825, '盘安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825108, 620825, '大庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825109, 620825, '通化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825110, 620825, '永宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825111, 620825, '良邑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825112, 620825, '岳堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825113, 620825, '柳梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825114, 620825, '南坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825201, 620825, '杨河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825202, 620825, '赵墩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620825215, 620825, '郑河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826001, 620826, '城区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826100, 620826, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826101, 620826, '威戎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826102, 620826, '界石铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826103, 620826, '八里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826104, 620826, '李店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826105, 620826, '古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826106, 620826, '仁大镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826107, 620826, '甘沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826108, 620826, '城川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826109, 620826, '曹务镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826110, 620826, '雷大镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826111, 620826, '四河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826112, 620826, '细巷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826113, 620826, '双岘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826114, 620826, '治平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826115, 620826, '红寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826116, 620826, '原安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826201, 620826, '司桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826206, 620826, '余湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826208, 620826, '贾河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826209, 620826, '深沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826211, 620826, '新店乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826216, 620826, '三合乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620826218, 620826, '灵芝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881001, 620881, '东华街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881100, 620881, '东华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881101, 620881, '安口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881102, 620881, '西华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881103, 620881, '马峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881104, 620881, '策底镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881105, 620881, '上关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881106, 620881, '河西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881201, 620881, '神峪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881202, 620881, '山寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881204, 620881, '砚峡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620881400, 620881, '甘肃华亭工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902001, 620902, '东北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902002, 620902, '东南街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902003, 620902, '工业园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902004, 620902, '新城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902005, 620902, '西北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902006, 620902, '西南街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902007, 620902, '玉管局生活基地街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902100, 620902, '西洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902101, 620902, '清水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902102, 620902, '总寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902103, 620902, '金佛寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902104, 620902, '上坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902105, 620902, '三墩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902106, 620902, '银达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902107, 620902, '西峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902108, 620902, '泉湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902109, 620902, '果园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902110, 620902, '下河清镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902111, 620902, '铧尖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902112, 620902, '东洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902113, 620902, '丰乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902207, 620902, '黄泥堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902403, 620902, '酒泉经济技术开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620902404, 620902, '十号基地', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921100, 620921, '中东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921101, 620921, '鼎新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921102, 620921, '金塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921103, 620921, '东坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921105, 620921, '航天镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921106, 620921, '大庄子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921107, 620921, '西坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921204, 620921, '古城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921209, 620921, '羊井子湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620921401, 620921, '工业园区管委会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922100, 620922, '渊泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922101, 620922, '柳园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922102, 620922, '三道沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922103, 620922, '南岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922104, 620922, '锁阳城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922105, 620922, '瓜州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922106, 620922, '西湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922107, 620922, '河东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922108, 620922, '双塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922109, 620922, '腰站子东乡族镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922201, 620922, '布隆吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922212, 620922, '七墩回族东乡族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922214, 620922, '广至藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922215, 620922, '沙河回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620922216, 620922, '梁湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620923100, 620923, '党城湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620923101, 620923, '马鬃山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620923201, 620923, '盐池湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620923202, 620923, '石包城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620924100, 620924, '红柳湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620924200, 620924, '阿克旗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620924203, 620924, '阿勒腾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620924204, 620924, '阿伊纳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620924400, 620924, '阿克塞县工业园区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981002, 620981, '新市区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981101, 620981, '玉门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981102, 620981, '赤金镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981103, 620981, '花海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981104, 620981, '老君庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981105, 620981, '黄闸湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981106, 620981, '下西号镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981107, 620981, '柳河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981108, 620981, '昌马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981109, 620981, '柳湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981110, 620981, '六墩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981206, 620981, '小金湾东乡族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981208, 620981, '独山子东乡族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981400, 620981, '国营饮马农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981401, 620981, '国营黄花农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620981404, 620981, '甘肃矿区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982100, 620982, '七里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982101, 620982, '沙州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982102, 620982, '肃州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982103, 620982, '莫高镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982104, 620982, '转渠口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982105, 620982, '阳关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982106, 620982, '月牙泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982107, 620982, '郭家堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982108, 620982, '黄渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (620982401, 620982, '青海石油管理局生活基地', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002001, 621002, '北街办事处街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002002, 621002, '南街办事处街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002003, 621002, '西街办事处街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002100, 621002, '肖金镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002101, 621002, '董志镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002102, 621002, '后官寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002103, 621002, '彭原镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002104, 621002, '温泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002203, 621002, '什社乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621002204, 621002, '显胜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021100, 621021, '庆城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021101, 621021, '驿马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021102, 621021, '三十里铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021103, 621021, '马岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021104, 621021, '玄马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021105, 621021, '白马铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021106, 621021, '桐川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021107, 621021, '赤城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021108, 621021, '高楼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021203, 621021, '太白梁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021204, 621021, '土桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021205, 621021, '蔡口集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021207, 621021, '南庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021208, 621021, '翟家河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621021209, 621021, '蔡家庙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022100, 621022, '环城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022101, 621022, '曲子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022102, 621022, '甜水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022103, 621022, '木钵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022104, 621022, '洪德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022105, 621022, '合道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022106, 621022, '虎洞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022107, 621022, '毛井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022108, 621022, '樊家川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022109, 621022, '车道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022200, 621022, '天池乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022201, 621022, '演武乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022204, 621022, '八珠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022206, 621022, '耿湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022207, 621022, '秦团庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022208, 621022, '山城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022209, 621022, '南湫乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022210, 621022, '罗山川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022212, 621022, '小南沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621022215, 621022, '芦家湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023100, 621023, '悦乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023101, 621023, '柔远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023102, 621023, '元城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023103, 621023, '南梁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023104, 621023, '城壕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023105, 621023, '五蛟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023202, 621023, '上里塬乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023203, 621023, '王咀子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023204, 621023, '白马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023205, 621023, '怀安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023206, 621023, '乔川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023207, 621023, '乔河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023208, 621023, '山庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023210, 621023, '林镇乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621023211, 621023, '紫坊畔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024100, 621024, '西华池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024101, 621024, '老城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024102, 621024, '太白镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024103, 621024, '板桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024104, 621024, '何家畔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024105, 621024, '吉岘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024106, 621024, '肖咀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024107, 621024, '固城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024202, 621024, '段家集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024204, 621024, '太莪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024205, 621024, '店子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621024208, 621024, '蒿咀铺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025100, 621025, '山河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025101, 621025, '榆林子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025102, 621025, '宫河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025103, 621025, '永和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025104, 621025, '永正镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025105, 621025, '周家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025106, 621025, '湫头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025107, 621025, '西坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025204, 621025, '五顷塬回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621025205, 621025, '三嘉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026100, 621026, '新宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026101, 621026, '平子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026102, 621026, '早胜镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026103, 621026, '长庆桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026104, 621026, '和盛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026105, 621026, '湘乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026106, 621026, '新庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026107, 621026, '盘克镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026108, 621026, '中村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026109, 621026, '焦村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026110, 621026, '米桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026111, 621026, '良平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026112, 621026, '太昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026113, 621026, '春荣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026205, 621026, '南义乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026206, 621026, '瓦斜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026207, 621026, '金村乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621026208, 621026, '九岘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027100, 621027, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027101, 621027, '屯字镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027102, 621027, '孟坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027103, 621027, '三岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027104, 621027, '平泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027105, 621027, '开边镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027106, 621027, '太平镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027107, 621027, '临泾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027108, 621027, '新城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027109, 621027, '上肖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027110, 621027, '新集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027111, 621027, '马渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027112, 621027, '庙渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027201, 621027, '南川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027204, 621027, '方山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027205, 621027, '殷家城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027208, 621027, '武沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027209, 621027, '郭原乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621027210, 621027, '中原乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102001, 621102, '中华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102002, 621102, '永定路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102003, 621102, '福台路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102101, 621102, '凤翔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102102, 621102, '内官营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102103, 621102, '巉口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102104, 621102, '称钩驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102105, 621102, '鲁家沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102106, 621102, '西巩驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102107, 621102, '宁远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102108, 621102, '李家堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102109, 621102, '团结镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102110, 621102, '香泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102111, 621102, '符家川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102112, 621102, '葛家岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102204, 621102, '白碌乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102207, 621102, '石峡湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102208, 621102, '新集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102209, 621102, '青岚山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102210, 621102, '高峰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102211, 621102, '石泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621102214, 621102, '杏园乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121100, 621121, '平襄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121101, 621121, '马营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121102, 621121, '鸡川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121103, 621121, '榜罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121104, 621121, '常家河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121105, 621121, '义岗川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121106, 621121, '陇阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121107, 621121, '陇山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121108, 621121, '陇川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121109, 621121, '碧玉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121110, 621121, '襄南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121111, 621121, '什川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121112, 621121, '华家岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121113, 621121, '北城铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121203, 621121, '新景乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121207, 621121, '李家店乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121212, 621121, '第三铺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621121215, 621121, '寺子川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122100, 621122, '巩昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122101, 621122, '文峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122102, 621122, '首阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122103, 621122, '菜子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122104, 621122, '福星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122105, 621122, '通安驿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122106, 621122, '云田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122107, 621122, '碧岩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122108, 621122, '马河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122109, 621122, '柯寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122110, 621122, '双泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122111, 621122, '权家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122200, 621122, '渭阳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122201, 621122, '宏伟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122202, 621122, '和平乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122205, 621122, '德兴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621122206, 621122, '永吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123100, 621123, '清源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123101, 621123, '莲峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123102, 621123, '会川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123103, 621123, '五竹镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123104, 621123, '路园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123105, 621123, '北寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123106, 621123, '新寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123107, 621123, '麻家集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123108, 621123, '锹峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123109, 621123, '庆坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123110, 621123, '祁家庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123111, 621123, '上湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123203, 621123, '大安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123204, 621123, '秦祁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123209, 621123, '峡城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621123210, 621123, '田家河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124100, 621124, '洮阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124101, 621124, '八里铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124102, 621124, '新添镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124103, 621124, '辛店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124104, 621124, '太石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124105, 621124, '中铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124106, 621124, '峡口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124107, 621124, '龙门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124108, 621124, '窑店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124109, 621124, '玉井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124110, 621124, '衙下集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124111, 621124, '南屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124200, 621124, '红旗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124201, 621124, '上营乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124202, 621124, '康家集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124203, 621124, '站滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124204, 621124, '漫洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621124205, 621124, '连儿湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125100, 621125, '武阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125101, 621125, '三岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125102, 621125, '新寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125103, 621125, '金钟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125104, 621125, '盐井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125105, 621125, '殪虎桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125106, 621125, '大草滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125107, 621125, '四族镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125108, 621125, '石川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125109, 621125, '贵清山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125204, 621125, '马泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125208, 621125, '武当乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621125209, 621125, '东泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126100, 621126, '岷阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126101, 621126, '蒲麻镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126102, 621126, '西寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126103, 621126, '梅川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126104, 621126, '西江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126105, 621126, '闾井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126106, 621126, '十里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126107, 621126, '茶埠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126108, 621126, '中寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126109, 621126, '清水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126110, 621126, '寺沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126111, 621126, '麻子川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126112, 621126, '维新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126113, 621126, '禾驮镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126114, 621126, '马坞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126204, 621126, '秦许乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126207, 621126, '申都乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621126208, 621126, '锁龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202001, 621202, '钟楼街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202002, 621202, '吉石坝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202003, 621202, '江北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202004, 621202, '江南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202100, 621202, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202101, 621202, '安化镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202102, 621202, '东江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202103, 621202, '两水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202104, 621202, '汉王镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202105, 621202, '洛塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202106, 621202, '角弓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202107, 621202, '马街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202108, 621202, '三河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202109, 621202, '甘泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202110, 621202, '鱼龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202111, 621202, '琵琶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202112, 621202, '外纳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202113, 621202, '马营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202114, 621202, '柏林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202115, 621202, '姚寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202116, 621202, '佛崖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202117, 621202, '石门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202118, 621202, '五马镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202119, 621202, '裕河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202120, 621202, '汉林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202121, 621202, '桔柑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202122, 621202, '隆兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202123, 621202, '黄坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202124, 621202, '五库镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202125, 621202, '三仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202201, 621202, '坪垭藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202203, 621202, '蒲池乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202211, 621202, '池坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202218, 621202, '龙坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202219, 621202, '龙凤乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202221, 621202, '磨坝藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202225, 621202, '玉皇乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202226, 621202, '郭河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202229, 621202, '枫相乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621202233, 621202, '月照乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221100, 621221, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221101, 621221, '黄渚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221102, 621221, '红川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221103, 621221, '小川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221104, 621221, '纸坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221105, 621221, '抛沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221107, 621221, '店村镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221108, 621221, '王磨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221109, 621221, '陈院镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221110, 621221, '沙坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221111, 621221, '黄陈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221112, 621221, '鸡峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221113, 621221, '苏元镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221114, 621221, '索池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221203, 621221, '宋坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221206, 621221, '二郎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621221213, 621221, '镡河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222100, 621222, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222101, 621222, '碧口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222102, 621222, '尚德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222103, 621222, '中寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222104, 621222, '临江镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222105, 621222, '桥头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222106, 621222, '梨坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222107, 621222, '天池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222108, 621222, '堡子坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222109, 621222, '石坊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222110, 621222, '石鸡坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222111, 621222, '丹堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222112, 621222, '中庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222113, 621222, '范坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222200, 621222, '铁楼藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222205, 621222, '刘家坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222206, 621222, '玉垒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222211, 621222, '口头坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222212, 621222, '尖山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621222215, 621222, '舍书乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223100, 621223, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223101, 621223, '哈达铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223102, 621223, '理川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223103, 621223, '南阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223104, 621223, '官亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223105, 621223, '沙湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223106, 621223, '阿坞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223107, 621223, '南河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223108, 621223, '八力镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223109, 621223, '临江铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223110, 621223, '两河口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223206, 621223, '木耳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223207, 621223, '庞家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223209, 621223, '何家堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223211, 621223, '贾河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223212, 621223, '将台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223213, 621223, '车拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223214, 621223, '新城子藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223216, 621223, '好梯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223217, 621223, '韩院乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223218, 621223, '竹院乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223219, 621223, '兴化乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223220, 621223, '甘江头乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223223, 621223, '新寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621223224, 621223, '狮子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224100, 621224, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224101, 621224, '平洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224102, 621224, '大堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224103, 621224, '岸门口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224104, 621224, '两河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224105, 621224, '长坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224106, 621224, '云台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224107, 621224, '阳坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224108, 621224, '王坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224109, 621224, '碾坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224110, 621224, '豆坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224111, 621224, '望关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224112, 621224, '大南峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224113, 621224, '周家坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224114, 621224, '寺台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224115, 621224, '白杨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224116, 621224, '铜钱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224117, 621224, '三河坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224204, 621224, '迷坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224209, 621224, '店子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621224214, 621224, '太石乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225100, 621225, '汉源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225101, 621225, '长道镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225102, 621225, '何坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225103, 621225, '姜席镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225104, 621225, '石峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225105, 621225, '洛峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225106, 621225, '西峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225107, 621225, '马元镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225108, 621225, '大桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225109, 621225, '十里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225110, 621225, '石堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225111, 621225, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225112, 621225, '苏合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225113, 621225, '卢河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225114, 621225, '稍峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225115, 621225, '西高山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225208, 621225, '晒经乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225217, 621225, '蒿林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225218, 621225, '太石河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621225220, 621225, '六巷乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226100, 621226, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226101, 621226, '盐官镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226102, 621226, '石桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226103, 621226, '白河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226104, 621226, '宽川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226105, 621226, '永兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226106, 621226, '祁山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226107, 621226, '红河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226108, 621226, '永坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226109, 621226, '中坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226110, 621226, '罗坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226111, 621226, '雷坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226112, 621226, '崖城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226113, 621226, '洮坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226114, 621226, '龙林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226115, 621226, '固城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226116, 621226, '江口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226117, 621226, '湫山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226118, 621226, '白关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226119, 621226, '桥头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226120, 621226, '王坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226121, 621226, '滩坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226203, 621226, '马河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226215, 621226, '上坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226219, 621226, '雷王乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226224, 621226, '沙金乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226228, 621226, '草坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226231, 621226, '肖良乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621226232, 621226, '三峪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227100, 621227, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227101, 621227, '伏家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227102, 621227, '江洛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227103, 621227, '泥阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227104, 621227, '柳林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227105, 621227, '嘉陵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227106, 621227, '永宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227107, 621227, '银杏树镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227108, 621227, '水阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227109, 621227, '栗川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227110, 621227, '麻沿河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227111, 621227, '高桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227112, 621227, '大河店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227208, 621227, '榆树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621227211, 621227, '虞关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228100, 621228, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228101, 621228, '站儿巷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228102, 621228, '西坡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228103, 621228, '杨店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228104, 621228, '显龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228105, 621228, '云屏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228201, 621228, '左家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228203, 621228, '鱼池乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228204, 621228, '兴化乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228207, 621228, '张家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228210, 621228, '泰山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (621228212, 621228, '金洞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901001, 622901, '城南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901002, 622901, '城北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901003, 622901, '东关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901004, 622901, '西关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901005, 622901, '八坊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901006, 622901, '红园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901007, 622901, '东区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901100, 622901, '城郊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901101, 622901, '枹罕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901102, 622901, '南龙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622901103, 622901, '折桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921100, 622921, '韩集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921101, 622921, '土桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921102, 622921, '马集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921103, 622921, '莲花镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921104, 622921, '新集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921105, 622921, '尹集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921106, 622921, '刁祁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921107, 622921, '北塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921108, 622921, '黄泥湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921200, 622921, '营滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921201, 622921, '掌子沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921202, 622921, '麻尼寺沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921204, 622921, '漠泥沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921208, 622921, '漫路乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921209, 622921, '榆林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921210, 622921, '井沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921213, 622921, '坡头乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921214, 622921, '桥寺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921215, 622921, '先锋乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921216, 622921, '河西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921217, 622921, '安家坡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921218, 622921, '南塬乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921220, 622921, '红台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921223, 622921, '路盘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622921224, 622921, '民主乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922100, 622922, '附城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922101, 622922, '苏集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922102, 622922, '胭脂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922103, 622922, '景古镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922104, 622922, '莲麓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922200, 622922, '康丰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922201, 622922, '虎关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922202, 622922, '流川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922203, 622922, '白王乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922205, 622922, '八松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922206, 622922, '鸣鹿乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922207, 622922, '八丹乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922208, 622922, '上湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922211, 622922, '草滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622922212, 622922, '五户乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923100, 622923, '刘家峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923101, 622923, '盐锅峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923102, 622923, '太极镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923103, 622923, '西河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923104, 622923, '三塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923105, 622923, '岘塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923106, 622923, '陈井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923107, 622923, '川城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923108, 622923, '王台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923109, 622923, '红泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923200, 622923, '关山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923201, 622923, '徐顶乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923202, 622923, '三条岘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923203, 622923, '坪沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923206, 622923, '新寺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923207, 622923, '小岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622923208, 622923, '杨塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924100, 622924, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924101, 622924, '三甲集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924102, 622924, '祁家集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924103, 622924, '庄窠集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924104, 622924, '买家巷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924105, 622924, '齐家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924202, 622924, '水泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924203, 622924, '官坊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622924204, 622924, '阿力麻土东乡族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925100, 622925, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925101, 622925, '三合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925102, 622925, '三十里铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925103, 622925, '马家堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925104, 622925, '买家集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925105, 622925, '松鸣镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925106, 622925, '陈家集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925107, 622925, '罗家集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925108, 622925, '新营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925200, 622925, '梁家寺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925203, 622925, '卜家庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925205, 622925, '新庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622925207, 622925, '达浪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926100, 622926, '锁南镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926101, 622926, '达板镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926102, 622926, '河滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926103, 622926, '那勒寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926104, 622926, '唐汪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926105, 622926, '果园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926106, 622926, '汪集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926107, 622926, '龙泉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926200, 622926, '春台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926201, 622926, '柳树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926202, 622926, '东塬乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926204, 622926, '坪庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926205, 622926, '百和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926206, 622926, '关卜乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926208, 622926, '赵家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926209, 622926, '五家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926212, 622926, '沿岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926214, 622926, '风山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926215, 622926, '车家湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926216, 622926, '高山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926219, 622926, '大树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926220, 622926, '北岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926222, 622926, '考勒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622926223, 622926, '董岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927100, 622927, '吹麻滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927101, 622927, '大河家镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927102, 622927, '居集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927103, 622927, '癿藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927104, 622927, '石塬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927105, 622927, '安集镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927106, 622927, '银川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927200, 622927, '刘集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927202, 622927, '柳沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927203, 622927, '关家川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927204, 622927, '胡林家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927206, 622927, '寨子沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927207, 622927, '郭干乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927208, 622927, '徐扈家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927209, 622927, '中咀岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927210, 622927, '小关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (622927211, 622927, '铺川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001001, 623001, '当周街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001002, 623001, '伊合昂街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001003, 623001, '坚木克尔街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001004, 623001, '通钦街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001100, 623001, '那吾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001101, 623001, '勒秀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001102, 623001, '佐盖曼玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001200, 623001, '卡加曼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001201, 623001, '卡加道乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623001202, 623001, '佐盖多玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021100, 623021, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021101, 623021, '新城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021102, 623021, '冶力关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021103, 623021, '羊永镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021104, 623021, '王旗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021105, 623021, '古战镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021106, 623021, '洮滨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021107, 623021, '八角镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021108, 623021, '流顺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021109, 623021, '店子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021110, 623021, '羊沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021200, 623021, '术布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021202, 623021, '卓洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021203, 623021, '长川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021208, 623021, '三岔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623021210, 623021, '石门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022100, 623022, '柳林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022101, 623022, '木耳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022102, 623022, '扎古录镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022103, 623022, '喀尔钦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022104, 623022, '藏巴哇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022105, 623022, '纳浪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022106, 623022, '洮砚镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022107, 623022, '阿子滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022108, 623022, '申藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022109, 623022, '完冒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022110, 623022, '尼巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022202, 623022, '刀告乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022207, 623022, '恰盖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022208, 623022, '康多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623022209, 623022, '杓哇土族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023100, 623023, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023101, 623023, '大川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023102, 623023, '峰迭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023103, 623023, '立节镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023104, 623023, '东山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023105, 623023, '曲告纳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023106, 623023, '博峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023107, 623023, '巴藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023108, 623023, '憨班镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023109, 623023, '坪定镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023110, 623023, '果耶镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023111, 623023, '武坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023112, 623023, '大峪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023113, 623023, '江盘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023114, 623023, '拱坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023200, 623023, '曲瓦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023208, 623023, '南峪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023210, 623023, '八楞乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623023212, 623023, '插岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024100, 623024, '电尕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024101, 623024, '益哇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024102, 623024, '旺藏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024103, 623024, '腊子口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024104, 623024, '洛大镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024201, 623024, '卡坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024202, 623024, '达拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024203, 623024, '尼傲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024205, 623024, '阿夏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024206, 623024, '多儿乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623024207, 623024, '桑坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025100, 623025, '尼玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025101, 623025, '曼日玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025102, 623025, '阿万仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025103, 623025, '齐哈玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025104, 623025, '采日玛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025105, 623025, '欧拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025201, 623025, '欧拉秀玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025203, 623025, '木西合乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025400, 623025, '河曲马场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025401, 623025, '大水军牧场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623025402, 623025, '高原生物研究所', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026100, 623026, '郎木寺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026101, 623026, '玛艾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026102, 623026, '西仓镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026103, 623026, '尕海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026104, 623026, '双岔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026202, 623026, '拉仁关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623026204, 623026, '阿拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027100, 623027, '拉卜楞镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027101, 623027, '王格尔塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027102, 623027, '阿木去乎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027103, 623027, '桑科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027104, 623027, '甘加镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027105, 623027, '麻当镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027106, 623027, '博拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027107, 623027, '科才镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027202, 623027, '达麦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027204, 623027, '曲奥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027205, 623027, '唐尕昂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027206, 623027, '扎油乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (623027208, 623027, '吉仓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102001, 630102, '东关大街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102002, 630102, '清真巷街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102003, 630102, '大众街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102004, 630102, '周家泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102005, 630102, '火车站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102006, 630102, '八一路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102007, 630102, '林家崖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102100, 630102, '乐家湾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102101, 630102, '韵家口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630102400, 630102, '东川工业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103001, 630103, '人民街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103002, 630103, '南滩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103003, 630103, '仓门街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103004, 630103, '礼让街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103005, 630103, '饮马街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103006, 630103, '南川东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103007, 630103, '南川西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103100, 630103, '总寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630103400, 630103, '南川工业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104001, 630104, '西关大街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104002, 630104, '古城台街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104003, 630104, '虎台街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104004, 630104, '胜利路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104005, 630104, '兴海路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104006, 630104, '文汇路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104007, 630104, '通海路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630104100, 630104, '彭家寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105001, 630105, '朝阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105002, 630105, '小桥大街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105003, 630105, '马坊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105004, 630105, '火车西站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105100, 630105, '大堡子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105101, 630105, '廿里铺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630105400, 630105, '生物科技产业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106001, 630106, '康川街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106100, 630106, '田家寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106101, 630106, '上新庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106102, 630106, '鲁沙尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106103, 630106, '甘河滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106104, 630106, '共和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106105, 630106, '多巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106106, 630106, '拦隆口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106107, 630106, '上五庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106108, 630106, '李家山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106109, 630106, '西堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106200, 630106, '群加藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106201, 630106, '土门关乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106202, 630106, '汉东回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106203, 630106, '大才回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106204, 630106, '海子沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630106400, 630106, '甘河工业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121100, 630121, '桥头镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121101, 630121, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121102, 630121, '塔尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121103, 630121, '东峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121104, 630121, '黄家寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121105, 630121, '长宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121106, 630121, '景阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121107, 630121, '多林镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121108, 630121, '新庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121200, 630121, '青林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121201, 630121, '青山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121202, 630121, '逊让乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121203, 630121, '极乐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121204, 630121, '石山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121205, 630121, '宝库乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121206, 630121, '斜沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121207, 630121, '良教乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121208, 630121, '向化藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121209, 630121, '桦林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630121210, 630121, '朔北藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123100, 630123, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123101, 630123, '大华镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123200, 630123, '东峡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123201, 630123, '日月藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123202, 630123, '和平乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123203, 630123, '波航乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123204, 630123, '申中乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123205, 630123, '巴燕乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630123206, 630123, '寺寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202100, 630202, '碾伯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202101, 630202, '雨润镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202102, 630202, '寿乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202103, 630202, '高庙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202104, 630202, '洪水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202105, 630202, '高店镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202106, 630202, '瞿昙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202200, 630202, '共和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202201, 630202, '中岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202202, 630202, '李家乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202203, 630202, '下营乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202204, 630202, '芦花乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202205, 630202, '马营乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202206, 630202, '马厂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202207, 630202, '蒲台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202208, 630202, '中坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202209, 630202, '峰堆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202210, 630202, '城台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202211, 630202, '达拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630202400, 630202, '海东工业园区乐都工业园', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203100, 630203, '平安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203101, 630203, '小峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203102, 630203, '三合镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203200, 630203, '洪水泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203201, 630203, '石灰窑乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203202, 630203, '古城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203203, 630203, '沙沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203204, 630203, '巴藏沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630203400, 630203, '曹家堡临空综合经济园平安园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222100, 630222, '川口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222101, 630222, '古鄯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222102, 630222, '马营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222103, 630222, '官亭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222104, 630222, '巴州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222105, 630222, '满坪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222106, 630222, '李二堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222107, 630222, '峡门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222200, 630222, '马场垣乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222201, 630222, '北山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222202, 630222, '松树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222203, 630222, '西沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222204, 630222, '总堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222205, 630222, '隆治乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222206, 630222, '大庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222207, 630222, '转导乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222208, 630222, '前河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222209, 630222, '甘沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222210, 630222, '中川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222211, 630222, '杏儿乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222212, 630222, '核桃庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630222213, 630222, '新民乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223100, 630223, '威远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223101, 630223, '丹麻镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223102, 630223, '高寨镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223103, 630223, '南门峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223104, 630223, '加定镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223105, 630223, '塘川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223106, 630223, '五十镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223107, 630223, '五峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223200, 630223, '台子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223201, 630223, '西山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223202, 630223, '红崖子沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223203, 630223, '巴扎藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223204, 630223, '哈拉直沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223205, 630223, '松多藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223206, 630223, '东山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223207, 630223, '东和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223208, 630223, '东沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223209, 630223, '林川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223210, 630223, '蔡家堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630223400, 630223, '曹家堡临空综合经济园互助园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224100, 630224, '巴燕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224101, 630224, '群科镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224102, 630224, '牙什尕镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224103, 630224, '甘都镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224104, 630224, '扎巴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224105, 630224, '昂思多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224200, 630224, '雄先藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224201, 630224, '初麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224202, 630224, '查甫藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224203, 630224, '塔加藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224204, 630224, '金源藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224205, 630224, '二塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224206, 630224, '谢家滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224207, 630224, '德恒隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224208, 630224, '沙连堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224209, 630224, '阿什奴乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630224210, 630224, '石大仓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225100, 630225, '积石镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225101, 630225, '白庄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225102, 630225, '街子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225200, 630225, '道帏藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225201, 630225, '清水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225202, 630225, '岗察藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225203, 630225, '查汗都斯乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225204, 630225, '文都藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (630225205, 630225, '尕楞藏族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221100, 632221, '浩门镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221101, 632221, '青石咀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221102, 632221, '泉口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221103, 632221, '东川镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221200, 632221, '北山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221201, 632221, '麻莲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221202, 632221, '西滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221203, 632221, '阴田乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221204, 632221, '仙米乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221205, 632221, '珠固乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221206, 632221, '苏吉滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221207, 632221, '皇城蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221400, 632221, '门源监狱', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632221401, 632221, '门源种马场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222100, 632222, '八宝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222101, 632222, '峨堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222102, 632222, '默勒镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222200, 632222, '扎麻什乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222201, 632222, '阿柔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222202, 632222, '野牛沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632222203, 632222, '央隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632223100, 632223, '三角城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632223101, 632223, '西海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632223200, 632223, '金滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632223201, 632223, '哈勒景蒙古族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632223202, 632223, '青海湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632223203, 632223, '甘子河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632224100, 632224, '沙柳河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632224101, 632224, '哈尔盖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632224200, 632224, '伊克乌兰乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632224201, 632224, '泉吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632224202, 632224, '吉尔孟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301100, 632301, '隆务镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301101, 632301, '保安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301102, 632301, '多哇镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301200, 632301, '兰采乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301201, 632301, '双朋西乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301202, 632301, '扎毛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301203, 632301, '黄乃亥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301204, 632301, '曲库乎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301205, 632301, '年都乎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301206, 632301, '瓜什则乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632301207, 632301, '加吾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322100, 632322, '马克堂镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322101, 632322, '康扬镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322102, 632322, '坎布拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322200, 632322, '贾加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322201, 632322, '措周乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322202, 632322, '昂拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322203, 632322, '能科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322204, 632322, '当顺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632322205, 632322, '尖扎滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323100, 632323, '泽曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323101, 632323, '麦秀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323102, 632323, '和日镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323103, 632323, '宁秀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323202, 632323, '王加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323203, 632323, '西卜沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632323204, 632323, '多禾茂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632324100, 632324, '优干宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632324101, 632324, '宁木特镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632324201, 632324, '多松乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632324202, 632324, '赛尔龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632324203, 632324, '柯生乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632324204, 632324, '托叶玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521100, 632521, '恰卜恰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521101, 632521, '倒淌河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521102, 632521, '龙羊峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521103, 632521, '塘格木镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521104, 632521, '黑马河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521105, 632521, '石乃亥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521106, 632521, '江西沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521202, 632521, '沙珠玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521203, 632521, '铁盖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521204, 632521, '廿地乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521205, 632521, '切吉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521400, 632521, '海南州绿色产业发展园区管理区委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521402, 632521, '巴卡台农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521403, 632521, '安置农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632521404, 632521, '铁卜加草改站', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632522100, 632522, '尕巴松多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632522101, 632522, '唐谷镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632522200, 632522, '巴沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632522201, 632522, '秀麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632522202, 632522, '河北乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632522400, 632522, '省牧草良种繁殖场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523100, 632523, '河阴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523101, 632523, '河西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523102, 632523, '拉西瓦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523103, 632523, '常牧镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523200, 632523, '河东乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523201, 632523, '新街回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632523202, 632523, '尕让乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524100, 632524, '子科滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524101, 632524, '河卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524102, 632524, '曲什安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524200, 632524, '温泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524201, 632524, '龙藏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524202, 632524, '中铁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632524203, 632524, '唐乃亥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632525100, 632525, '茫曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632525101, 632525, '过马营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632525102, 632525, '森多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632525200, 632525, '沙沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632525202, 632525, '茫拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632525203, 632525, '塔秀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621100, 632621, '大武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621101, 632621, '拉加镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621200, 632621, '大武乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621201, 632621, '东倾沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621202, 632621, '雪山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621203, 632621, '下大武乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621204, 632621, '优云乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632621205, 632621, '当洛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622100, 632622, '赛来塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622200, 632622, '多贡麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622201, 632622, '马可河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622202, 632622, '吉卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622203, 632622, '达卡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622204, 632622, '知钦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622205, 632622, '江日堂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622206, 632622, '亚尔堂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632622207, 632622, '灯塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623100, 632623, '柯曲镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623200, 632623, '上贡麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623201, 632623, '下贡麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623202, 632623, '岗龙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623203, 632623, '青珍乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623204, 632623, '江千乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632623205, 632623, '下藏科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624100, 632624, '吉迈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624200, 632624, '满掌乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624201, 632624, '德昂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624202, 632624, '窝赛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624203, 632624, '莫坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624204, 632624, '上红科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624205, 632624, '下红科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624206, 632624, '建设乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624207, 632624, '桑日麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632624208, 632624, '特合土乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632625100, 632625, '智青松多镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632625200, 632625, '门堂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632625201, 632625, '哇赛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632625202, 632625, '索呼日麻乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632625203, 632625, '白玉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632625204, 632625, '哇尔依乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632626100, 632626, '玛查理镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632626101, 632626, '花石峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632626200, 632626, '黄河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632626201, 632626, '扎陵湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701001, 632701, '结古街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701002, 632701, '扎西科街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701003, 632701, '西杭街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701004, 632701, '新寨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701101, 632701, '隆宝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701102, 632701, '下拉秀镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701200, 632701, '仲达乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701201, 632701, '巴塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701202, 632701, '小苏莽乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701203, 632701, '上拉秀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701205, 632701, '安冲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632701400, 632701, '哈秀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722100, 632722, '萨呼腾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722200, 632722, '昂赛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722201, 632722, '结多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722202, 632722, '阿多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722203, 632722, '苏鲁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722204, 632722, '查旦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722205, 632722, '莫云乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632722206, 632722, '扎青乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723100, 632723, '称文镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723101, 632723, '歇武镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723102, 632723, '扎朵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723103, 632723, '清水河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723104, 632723, '珍秦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723200, 632723, '尕朵乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632723201, 632723, '拉布乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632724100, 632724, '加吉博洛格镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632724200, 632724, '索加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632724201, 632724, '扎河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632724202, 632724, '多彩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632724203, 632724, '治渠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632724204, 632724, '立新乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725100, 632725, '香达镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725200, 632725, '白扎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725201, 632725, '吉曲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725202, 632725, '娘拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725203, 632725, '毛庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725204, 632725, '觉拉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725205, 632725, '东坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725206, 632725, '尕羊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725207, 632725, '吉尼赛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632725208, 632725, '着晓乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632726100, 632726, '约改镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632726200, 632726, '巴干乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632726201, 632726, '秋智乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632726202, 632726, '叶格乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632726203, 632726, '麻多乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632726204, 632726, '曲麻河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801001, 632801, '昆仑路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801002, 632801, '黄河路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801003, 632801, '金峰路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801004, 632801, '河西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801005, 632801, '西藏路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801100, 632801, '郭勒木德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801101, 632801, '唐古拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801200, 632801, '大格勒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801201, 632801, '乌图美仁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801400, 632801, '察尔汗工行委', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632801401, 632801, '格尔木农垦有限公司', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802001, 632802, '河西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802002, 632802, '河东街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802003, 632802, '火车站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802100, 632802, '尕海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802101, 632802, '怀头他拉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802102, 632802, '柯鲁柯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632802200, 632802, '蓄集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632803100, 632803, '花土沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632803101, 632803, '茫崖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632803102, 632803, '冷湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632821100, 632821, '希里沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632821101, 632821, '茶卡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632821102, 632821, '柯柯镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632821103, 632821, '铜普镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632821500, 632821, '海西州莫河畜牧场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822100, 632822, '察汉乌苏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822101, 632822, '香日德镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822102, 632822, '夏日哈镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822103, 632822, '宗加镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822200, 632822, '热水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822201, 632822, '香加乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822202, 632822, '沟里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632822203, 632822, '巴隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823100, 632823, '新源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823101, 632823, '木里镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823102, 632823, '江河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823200, 632823, '快尔玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823201, 632823, '舟群乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823202, 632823, '织合玛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823203, 632823, '苏里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823204, 632823, '生格乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823205, 632823, '阳康乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632823206, 632823, '龙门乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632857100, 632857, '柴旦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (632857101, 632857, '锡铁山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104001, 640104, '凤凰北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104002, 640104, '解放西街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104003, 640104, '文化街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104004, 640104, '富宁街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104005, 640104, '新华街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104006, 640104, '玉皇阁北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104007, 640104, '前进街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104008, 640104, '中山南街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104009, 640104, '银古路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104010, 640104, '胜利街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104011, 640104, '丽景街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104100, 640104, '掌政镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104101, 640104, '大新镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104200, 640104, '通贵乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640104201, 640104, '月牙湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105001, 640105, '西花园路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105002, 640105, '北京西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105003, 640105, '文昌路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105004, 640105, '朔方路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105005, 640105, '宁华路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105006, 640105, '贺兰山西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105007, 640105, '怀远路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105100, 640105, '兴泾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640105101, 640105, '镇北堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106001, 640106, '满城北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106002, 640106, '黄河东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106003, 640106, '长城中路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106004, 640106, '北京中路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106005, 640106, '上海西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106006, 640106, '贺兰山中路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106100, 640106, '良田镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640106101, 640106, '丰登镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121001, 640121, '团结西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121100, 640121, '杨和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121101, 640121, '李俊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121102, 640121, '望远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121103, 640121, '望洪镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121104, 640121, '闽宁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121200, 640121, '胜利乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121400, 640121, '黄羊滩农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640121401, 640121, '玉泉营农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122001, 640122, '富兴街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122100, 640122, '习岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122101, 640122, '金贵镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122102, 640122, '立岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122103, 640122, '洪广镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122200, 640122, '常信乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122400, 640122, '南梁台子管委会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122401, 640122, '暖泉农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122402, 640122, '宁夏原种场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640122403, 640122, '京星农牧场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181001, 640181, '城区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181100, 640181, '东塔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181101, 640181, '郝家桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181102, 640181, '崇兴镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181103, 640181, '宁东镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181104, 640181, '马家滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181105, 640181, '临河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181200, 640181, '梧桐树乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181201, 640181, '白土岗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640181400, 640181, '灵武农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202001, 640202, '长胜街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202002, 640202, '朝阳街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202003, 640202, '人民路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202004, 640202, '长城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202005, 640202, '青山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202006, 640202, '石炭井街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202007, 640202, '白芨沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202008, 640202, '沟口街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202010, 640202, '长兴街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202011, 640202, '锦林街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640202100, 640202, '星海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205001, 640205, '育才路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205002, 640205, '南街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205003, 640205, '中街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205004, 640205, '北街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205005, 640205, '河滨街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205006, 640205, '火车站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205100, 640205, '红果子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205101, 640205, '尾闸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205102, 640205, '园艺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205200, 640205, '庙台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205201, 640205, '礼和乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640205202, 640205, '燕子墩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221100, 640221, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221101, 640221, '黄渠桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221102, 640221, '宝丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221103, 640221, '头闸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221104, 640221, '姚伏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221105, 640221, '崇岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221106, 640221, '陶乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221200, 640221, '高庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221201, 640221, '灵沙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221202, 640221, '渠口乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221203, 640221, '通伏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221204, 640221, '高仁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221205, 640221, '红崖子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640221400, 640221, '前进农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302100, 640302, '金积镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302101, 640302, '金银滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302102, 640302, '高闸镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302103, 640302, '扁担沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302104, 640302, '上桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302105, 640302, '古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302106, 640302, '金星镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302107, 640302, '胜利镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302200, 640302, '东塔寺乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302201, 640302, '板桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302202, 640302, '马莲渠乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302203, 640302, '郭家桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640302401, 640302, '孙家滩管委会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303001, 640303, '新民街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303100, 640303, '红寺堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303101, 640303, '太阳山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303200, 640303, '大河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303201, 640303, '新庄集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303202, 640303, '柳泉乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640303400, 640303, '工业园区管委会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323001, 640323, '盐州路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323100, 640323, '花马池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323101, 640323, '大水坑镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323102, 640323, '惠安堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323103, 640323, '高沙窝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323200, 640323, '王乐井乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323201, 640323, '冯记沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323202, 640323, '青山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640323203, 640323, '麻黄山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324100, 640324, '豫海镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324101, 640324, '河西镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324102, 640324, '韦州镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324103, 640324, '下马关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324104, 640324, '预旺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324105, 640324, '王团镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324106, 640324, '丁塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324201, 640324, '田老庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324202, 640324, '马高庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324203, 640324, '张家塬乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640324204, 640324, '兴隆乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381001, 640381, '裕民街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381100, 640381, '小坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381101, 640381, '大坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381102, 640381, '青铜峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381103, 640381, '叶盛镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381104, 640381, '瞿靖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381105, 640381, '峡口镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381106, 640381, '邵岗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381107, 640381, '陈袁滩镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640381401, 640381, '树新林场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402001, 640402, '南关街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402002, 640402, '古雁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402003, 640402, '北塬街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402100, 640402, '三营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402103, 640402, '官厅镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402104, 640402, '开城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402105, 640402, '张易镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402106, 640402, '彭堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402107, 640402, '头营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402108, 640402, '黄铎堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402200, 640402, '中河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402201, 640402, '河川乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402204, 640402, '炭山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640402205, 640402, '寨科乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422100, 640422, '吉强镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422101, 640422, '兴隆镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422102, 640422, '平峰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422103, 640422, '将台堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422200, 640422, '新营乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422201, 640422, '红耀乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422202, 640422, '田坪乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422203, 640422, '马建乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422204, 640422, '震湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422205, 640422, '兴平乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422206, 640422, '西滩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422207, 640422, '王民乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422208, 640422, '什字乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422209, 640422, '马莲乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422211, 640422, '硝河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422212, 640422, '偏城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422213, 640422, '沙沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422214, 640422, '白崖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640422215, 640422, '火石寨乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423100, 640423, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423101, 640423, '沙塘镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423102, 640423, '联财镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423200, 640423, '陈靳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423201, 640423, '好水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423202, 640423, '观庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423203, 640423, '杨河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423204, 640423, '神林乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423205, 640423, '张程乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423206, 640423, '凤岭乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423207, 640423, '山河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423208, 640423, '温堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640423209, 640423, '奠安乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424100, 640424, '香水镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424101, 640424, '泾河源镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424102, 640424, '六盘山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424200, 640424, '新民乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424201, 640424, '兴盛乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424202, 640424, '黄花乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640424203, 640424, '大湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425100, 640425, '白阳镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425101, 640425, '王洼镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425102, 640425, '古城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425103, 640425, '红河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425200, 640425, '新集乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425201, 640425, '城阳乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425203, 640425, '冯庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425204, 640425, '小岔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425205, 640425, '孟塬乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425206, 640425, '罗洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425207, 640425, '交岔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640425208, 640425, '草庙乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502100, 640502, '滨河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502101, 640502, '文昌镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502102, 640502, '东园镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502103, 640502, '柔远镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502104, 640502, '镇罗镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502105, 640502, '宣和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502106, 640502, '永康镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502107, 640502, '常乐镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502108, 640502, '迎水桥镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502109, 640502, '兴仁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502200, 640502, '香山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502400, 640502, '中卫山羊选育场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640502401, 640502, '中卫工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521100, 640521, '宁安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521101, 640521, '鸣沙镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521102, 640521, '石空镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521103, 640521, '新堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521104, 640521, '恩和镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521105, 640521, '大战场镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521200, 640521, '舟塔乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521201, 640521, '白马乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521202, 640521, '余丁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521204, 640521, '喊叫水乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521205, 640521, '徐套乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640521206, 640521, '太阳梁乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522100, 640522, '海城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522101, 640522, '李旺镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522103, 640522, '西安镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522104, 640522, '三河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522105, 640522, '七营镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522200, 640522, '史店乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522201, 640522, '树台乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522202, 640522, '关桥乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522206, 640522, '高崖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522207, 640522, '郑旗乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522208, 640522, '贾塘乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522209, 640522, '曹洼乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522210, 640522, '九彩乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522211, 640522, '李俊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522212, 640522, '红羊乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522213, 640522, '关庄乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522214, 640522, '甘城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522400, 640522, '种羊场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522401, 640522, '南华山自然保护区管理处', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522402, 640522, '老城管理办公室', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (640522406, 640522, '海兴开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102002, 650102, '燕儿窝街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102003, 650102, '胜利路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102004, 650102, '团结路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102005, 650102, '解放南路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102006, 650102, '新华南路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102007, 650102, '和平路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102008, 650102, '解放北路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102009, 650102, '幸福路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102010, 650102, '东门街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102011, 650102, '新华北路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102012, 650102, '青年路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102013, 650102, '碱泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102014, 650102, '延安路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102015, 650102, '红雁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102016, 650102, '南草滩街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102017, 650102, '东泉路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102400, 650102, '二道桥片区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102401, 650102, '黑甲山片区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102402, 650102, '大湾片区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102403, 650102, '赛马场片区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102404, 650102, '南湾街片区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650102405, 650102, '大巴扎片区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103001, 650103, '长江路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103002, 650103, '和田街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103003, 650103, '扬子江路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103004, 650103, '友好南路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103005, 650103, '友好北路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103006, 650103, '八一街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103007, 650103, '炉院街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103008, 650103, '西山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103009, 650103, '雅玛里克山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103010, 650103, '红庙子街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103011, 650103, '长胜东街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103012, 650103, '长胜西街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103013, 650103, '长胜南街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103014, 650103, '火车南站街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103015, 650103, '仓房沟片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103016, 650103, '环卫路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103017, 650103, '骑马山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103018, 650103, '平顶山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103501, 650103, '兵团农十二师一零四团', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650103502, 650103, '兵团十二师西山农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104001, 650104, '北京路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104002, 650104, '二工街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104003, 650104, '三工街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104004, 650104, '石油新村街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104005, 650104, '迎宾路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104006, 650104, '喀什东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104009, 650104, '八家户街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104010, 650104, '银川路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104011, 650104, '南纬路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104012, 650104, '杭州路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104013, 650104, '鲤鱼山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104014, 650104, '百园路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104015, 650104, '正扬路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104016, 650104, '机场街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104017, 650104, '友谊路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104018, 650104, '高新街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104019, 650104, '长春中路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104100, 650104, '安宁渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104200, 650104, '二工乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104201, 650104, '地窝堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104202, 650104, '青格达湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104203, 650104, '六十户乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650104402, 650104, '十二师养禽场街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105001, 650105, '水磨沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105002, 650105, '六道湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105003, 650105, '苇湖梁街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105004, 650105, '八道湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105005, 650105, '新民路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105006, 650105, '南湖南路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105007, 650105, '南湖北路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105008, 650105, '七道湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105010, 650105, '榆树沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105011, 650105, '石人子沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105012, 650105, '水塔山街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105013, 650105, '华光街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105014, 650105, '龙盛街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105015, 650105, '振安街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650105016, 650105, '河马泉街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106001, 650106, '钢城片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106002, 650106, '火车西站片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106003, 650106, '王家沟片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106004, 650106, '乌昌路片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106005, 650106, '北站西路片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106007, 650106, '中亚北路片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106008, 650106, '中亚南路片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106009, 650106, '嵩山街片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106010, 650106, '高铁片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106011, 650106, '白鸟湖片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106012, 650106, '西湖片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106013, 650106, '北站东路片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106014, 650106, '两河片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106015, 650106, '乌鲁木齐站片区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106198, 650106, '区直辖村级区划', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106501, 650106, '兵团十二师三坪农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106502, 650106, '兵团十二师五一农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650106503, 650106, '新疆兵团十二师头屯河农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107001, 650107, '艾维尔沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107004, 650107, '乌拉泊街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107006, 650107, '达坂城区盐湖街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107100, 650107, '达坂城镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107200, 650107, '东沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107201, 650107, '西沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107202, 650107, '阿克苏乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650107400, 650107, '柴窝堡管委会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109001, 650109, '石化街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109002, 650109, '地磅街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109003, 650109, '卡子湾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109004, 650109, '古牧地东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109005, 650109, '古牧地西路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109006, 650109, '南路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109007, 650109, '永祥街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109008, 650109, '盛达东路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109100, 650109, '古牧地镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109101, 650109, '铁厂沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109102, 650109, '长山子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109103, 650109, '羊毛工镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109104, 650109, '三道坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109200, 650109, '柏杨河乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109201, 650109, '芦草沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650109500, 650109, '兵团梧桐镇分部', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121001, 650121, '清水泉片区管委会街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121002, 650121, '谢家沟片区管委会街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121100, 650121, '水西沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121102, 650121, '板房沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121103, 650121, '永丰镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121207, 650121, '萨尔达坂乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121208, 650121, '甘沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650121213, 650121, '托里乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650202001, 650202, '金山路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650202002, 650202, '西宁路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650202003, 650202, '新北区街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203001, 650203, '天山路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203002, 650203, '胜利路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203003, 650203, '昆仑路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203004, 650203, '银河路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203006, 650203, '五五新镇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203007, 650203, '迎宾街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203008, 650203, '古海街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203200, 650203, '小拐乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203506, 650203, '兵团一二九团分部', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650203530, 650203, '兵团一三六团', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650204001, 650204, '中兴路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650204002, 650204, '三平路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650204003, 650204, '金龙镇街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650205001, 650205, '柳树街街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650205100, 650205, '乌尔禾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650205509, 650205, '兵团一三七团乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402001, 650402, '老城路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402002, 650402, '高昌路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402003, 650402, '葡萄沟街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402004, 650402, '红柳河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402100, 650402, '七泉湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402101, 650402, '大河沿镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402102, 650402, '亚尔镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402103, 650402, '艾丁湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402104, 650402, '葡萄镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402105, 650402, '火焰山镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402203, 650402, '恰特喀勒乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402205, 650402, '三堡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402206, 650402, '胜金乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402401, 650402, '原种场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650402502, 650402, '兵团二二一团', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421100, 650421, '鄯善镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421101, 650421, '七克台镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421102, 650421, '火车站镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421103, 650421, '连木沁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421104, 650421, '鲁克沁镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421105, 650421, '辟展镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421106, 650421, '迪坎镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421201, 650421, '东巴扎回族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421202, 650421, '吐峪沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421203, 650421, '达朗坎乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421400, 650421, '南山矿区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650421401, 650421, '园艺场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422100, 650422, '托克逊镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422101, 650422, '库米什镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422102, 650422, '克尔碱镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422103, 650422, '阿乐惠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422104, 650422, '伊拉湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422105, 650422, '夏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422106, 650422, '博斯坦镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650422201, 650422, '郭勒布依乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502001, 650502, '东河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502002, 650502, '西河街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502003, 650502, '城北街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502004, 650502, '丽园街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502005, 650502, '石油新城街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502100, 650502, '雅满苏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502101, 650502, '七角井镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502102, 650502, '星星峡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502103, 650502, '二堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502104, 650502, '陶家宫镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502105, 650502, '五堡镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502106, 650502, '三道岭镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502200, 650502, '沁城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502201, 650502, '乌拉台哈萨克民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502202, 650502, '双井子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502203, 650502, '大泉湾乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502205, 650502, '回城乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502206, 650502, '花园乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502207, 650502, '南湖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502209, 650502, '德外里都如克哈萨克乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502210, 650502, '西山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502211, 650502, '天山乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502212, 650502, '白石头乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502214, 650502, '柳树沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502404, 650502, '现代农业园区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502406, 650502, '哈密工业园区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502407, 650502, '东郊开发区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502501, 650502, '兵团红星二场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502502, 650502, '兵团红星四场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502503, 650502, '兵团黄田农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502504, 650502, '兵团火箭农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650502505, 650502, '兵团柳树泉农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521100, 650521, '巴里坤镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521101, 650521, '博尔羌吉镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521102, 650521, '大河镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521103, 650521, '奎苏镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521104, 650521, '三塘湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521200, 650521, '萨尔乔克乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521201, 650521, '海子沿乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521202, 650521, '下涝坝乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521205, 650521, '石人子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521206, 650521, '花园乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521208, 650521, '大红柳峡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521209, 650521, '八墙子乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521400, 650521, '良种繁育场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521401, 650521, '黄土场开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521402, 650521, '巴里坤县山南开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650521500, 650521, '兵团红山农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522100, 650522, '伊吾镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522101, 650522, '淖毛湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522102, 650522, '盐池镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522201, 650522, '苇子峡乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522202, 650522, '下马崖乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522204, 650522, '吐葫芦乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522205, 650522, '前山哈萨克民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522400, 650522, '伊吾县工业加工区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522403, 650522, '伊吾县山南开发区管委会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (650522500, 650522, '兵团淖毛湖农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301001, 652301, '宁边路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301002, 652301, '延安北路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301003, 652301, '北京南路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301004, 652301, '建国路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301005, 652301, '中山路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301006, 652301, '绿洲路街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301100, 652301, '硫磺沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301101, 652301, '三工镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301102, 652301, '榆树沟镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301103, 652301, '二六工镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301104, 652301, '大西渠镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301105, 652301, '六工镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301106, 652301, '滨湖镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301107, 652301, '佃坝镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301202, 652301, '阿什里哈萨克民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301203, 652301, '庙尔沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301400, 652301, '新疆昌吉国家农业科技园区管理委员会', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301401, 652301, '昌吉市北部荒漠生态保护管理站', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301402, 652301, '昌吉国家高新技术产业开发区', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301500, 652301, '兵团蔡家湖镇分部', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301503, 652301, '兵团共青团农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652301504, 652301, '兵团军户农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302001, 652302, '博峰街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302002, 652302, '阜新街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302003, 652302, '准东街道', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302100, 652302, '甘河子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302101, 652302, '城关镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302102, 652302, '九运街镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302103, 652302, '滋泥泉子镇', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302201, 652302, '上户沟哈萨克民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302202, 652302, '水磨沟乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302203, 652302, '三工河哈萨克民族乡', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302503, 652302, '兵团农六师土墩子农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302504, 652302, '兵团六运湖农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652302505, 652302, '兵团二二二团农场', 4, '2022-11-09 10:39:29', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323100, 652323, '呼图壁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323101, 652323, '大丰镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323102, 652323, '雀尔沟镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323103, 652323, '二十里店镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323104, 652323, '园户村镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323105, 652323, '五工台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323201, 652323, '石梯子哈萨克民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323402, 652323, '国有林管理中心', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323405, 652323, '呼图壁种牛场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323520, 652323, '兵团一零五团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323521, 652323, '兵团一零六团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652323523, 652323, '兵团芳草湖总场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324100, 652324, '玛纳斯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324101, 652324, '乐土驿镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324102, 652324, '包家店镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324103, 652324, '凉州户镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324104, 652324, '北五岔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324105, 652324, '六户地镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324106, 652324, '兰州湾镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324201, 652324, '广东地乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324202, 652324, '清水河子哈萨克民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324203, 652324, '塔西河乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324204, 652324, '旱卡子滩乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324400, 652324, '玛电工业区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324402, 652324, '自治区林业厅玛纳斯平原林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324404, 652324, '新疆农业科学院玛纳斯县试验站', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324520, 652324, '兵团农六师新湖农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324521, 652324, '兵团一四七团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324522, 652324, '兵团一四八团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324523, 652324, '兵团一四九团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652324524, 652324, '兵团一五零团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325100, 652325, '奇台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325101, 652325, '老奇台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325102, 652325, '半截沟镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325103, 652325, '吉布库镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325104, 652325, '东湾镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325105, 652325, '西地镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325106, 652325, '碧流河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325107, 652325, '三个庄子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325108, 652325, '西北湾镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325202, 652325, '坎尔孜乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325203, 652325, '五马场乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325204, 652325, '古城乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325205, 652325, '乔仁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325206, 652325, '七户乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325208, 652325, '塔塔尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325503, 652325, '兵团奇台农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652325504, 652325, '兵团农六师北塔山牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327100, 652327, '吉木萨尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327101, 652327, '三台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327102, 652327, '泉子街镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327103, 652327, '北庭镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327104, 652327, '二工镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327105, 652327, '大有镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327202, 652327, '庆阳湖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327203, 652327, '老台乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327205, 652327, '新地乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327400, 652327, '五彩湾工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652327500, 652327, '兵团农六师红旗农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328100, 652328, '木垒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328101, 652328, '西吉尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328102, 652328, '东城镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328103, 652328, '新户镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328200, 652328, '英格堡乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328201, 652328, '照壁山乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328203, 652328, '雀仁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328204, 652328, '白杨河乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328205, 652328, '大石头乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328206, 652328, '大南沟乌孜别克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652328207, 652328, '博斯坦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701001, 652701, '青得里街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701002, 652701, '顾力木图街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701004, 652701, '南城区街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701005, 652701, '青达拉街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701006, 652701, '克尔根卓街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701100, 652701, '小营盘镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701101, 652701, '达勒特镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701102, 652701, '乌图布拉格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701103, 652701, '青得里镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701201, 652701, '贝林哈日莫墩乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701400, 652701, '阿热勒托海牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701408, 652701, '五台工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652701504, 652701, '兵团八十六团分部', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652702001, 652702, '阿拉套街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652702100, 652702, '艾比湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722100, 652722, '精河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722101, 652722, '大河沿子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722102, 652722, '托里镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722103, 652722, '托托镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722200, 652722, '茫丁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722400, 652722, '阿合其农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722401, 652722, '八家户农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722402, 652722, '精河工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722503, 652722, '兵团八十三团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652722504, 652722, '兵团九十一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723100, 652723, '博格达尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723101, 652723, '哈日布呼镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723102, 652723, '安格里格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723201, 652723, '查干屯格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723202, 652723, '扎勒木特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723203, 652723, '塔秀乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723400, 652723, '呼和托哈种畜场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723401, 652723, '昆得仑牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723502, 652723, '兵团八十七团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652723503, 652723, '兵团八十八团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801001, 652801, '团结街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801002, 652801, '萨依巴格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801003, 652801, '天山街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801004, 652801, '新城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801005, 652801, '建设街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801006, 652801, '朝阳街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801007, 652801, '梨香街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801100, 652801, '塔什店镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801101, 652801, '上户镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801102, 652801, '库尔勒市西尼尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801200, 652801, '铁克其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801201, 652801, '恰尔巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801202, 652801, '英下乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801203, 652801, '库尔勒市兰干乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801204, 652801, '和什力克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801205, 652801, '哈拉玉宫乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801206, 652801, '阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801207, 652801, '库尔勒市托布力其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801208, 652801, '普惠乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801400, 652801, '库尔楚园艺场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801401, 652801, '包头湖农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801402, 652801, '普惠农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801403, 652801, '巴州阿瓦提农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801404, 652801, '巴州沙依东园艺场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801408, 652801, '巴州奶牛场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801409, 652801, '普惠牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801410, 652801, '经济牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652801411, 652801, '良种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822100, 652822, '轮台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822101, 652822, '轮南镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822102, 652822, '群巴克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822103, 652822, '阳霞镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822201, 652822, '哈尔巴克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822202, 652822, '野云沟乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822203, 652822, '阿克萨来乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822204, 652822, '塔尔拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822205, 652822, '草湖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822206, 652822, '铁热克巴扎乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652822207, 652822, '策达雅乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823100, 652823, '尉犁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823110, 652823, '团结镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823120, 652823, '兴平镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823200, 652823, '塔里木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823203, 652823, '墩阔坦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823204, 652823, '喀尔曲尕乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823205, 652823, '阿克苏普乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823206, 652823, '古勒巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823501, 652823, '兵团三十一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823502, 652823, '兵团三十三团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652823503, 652823, '兵团三十四团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824100, 652824, '若羌镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824101, 652824, '依吞布拉克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824102, 652824, '罗布泊镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824103, 652824, '瓦石峡镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824104, 652824, '铁干里克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824201, 652824, '吾塔木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824203, 652824, '铁木里克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652824204, 652824, '祁曼塔克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825100, 652825, '且末镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825101, 652825, '奥依亚依拉克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825102, 652825, '塔提让镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825103, 652825, '塔中镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825104, 652825, '阿羌镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825105, 652825, '阿热勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825201, 652825, '琼库勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825202, 652825, '托格拉克勒克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825203, 652825, '巴格艾日克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825204, 652825, '英吾斯塘乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825205, 652825, '阿克提坎墩乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825206, 652825, '阔什萨特玛乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652825209, 652825, '库拉木勒克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826100, 652826, '焉耆镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826101, 652826, '七个星镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826102, 652826, '永宁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826103, 652826, '四十里城子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826200, 652826, '北大渠乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826201, 652826, '五号渠乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826203, 652826, '查汗采开乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826204, 652826, '包尔海乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826400, 652826, '王家庄牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652826401, 652826, '苏海良种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827100, 652827, '和静镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827101, 652827, '巴伦台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827102, 652827, '巴润哈尔莫敦镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827103, 652827, '哈尔莫敦镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827104, 652827, '巴音布鲁克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827105, 652827, '巩乃斯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827106, 652827, '乃门莫敦镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827107, 652827, '协比乃尔布呼镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827203, 652827, '克尔古提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827204, 652827, '阿拉沟乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827205, 652827, '额勒再特乌鲁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827206, 652827, '巴音郭楞乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652827501, 652827, '兵团二十一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828100, 652828, '特吾里克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828101, 652828, '塔哈其镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828102, 652828, '曲惠镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828200, 652828, '乌什塔拉回族民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828203, 652828, '苏哈特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828204, 652828, '乃仁克尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828205, 652828, '新塔热乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828400, 652828, '清水河农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652828402, 652828, '和硕县马兰公安管区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829100, 652829, '博湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829101, 652829, '本布图镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829200, 652829, '塔温觉肯乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829202, 652829, '乌兰再格森乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829203, 652829, '才坎诺尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829204, 652829, '查干诺尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829205, 652829, '博斯腾湖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652829501, 652829, '兵团二十五团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652871400, 652871, '开发区乡级单位', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901001, 652901, '兰干街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901002, 652901, '英巴扎街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901003, 652901, '红桥街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901004, 652901, '新城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901005, 652901, '南城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901006, 652901, '柯柯牙街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901007, 652901, '多浪街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901100, 652901, '喀拉塔勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901101, 652901, '阿依库勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901200, 652901, '依干其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901201, 652901, '拜什吐格曼乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901202, 652901, '托普鲁克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901203, 652901, '库木巴什乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901404, 652901, '实验林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901407, 652901, '纺织工业城', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901408, 652901, '经济技术开发区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901409, 652901, '特色产业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652901410, 652901, '柳源农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902001, 652902, '热斯坦街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902002, 652902, '萨克萨克街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902003, 652902, '新城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902004, 652902, '东城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902101, 652902, '乌恰镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902102, 652902, '阿拉哈格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902103, 652902, '齐满镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902104, 652902, '墩阔坦镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902105, 652902, '牙哈镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902106, 652902, '乌尊镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902107, 652902, '伊西哈拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902108, 652902, '二八台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902201, 652902, '玉奇吾斯塘乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902202, 652902, '比西巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902203, 652902, '哈尼喀塔木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902204, 652902, '阿克吾斯塘乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902205, 652902, '阿格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902206, 652902, '塔里木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652902500, 652902, '库车经济技术开发区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922100, 652922, '温宿镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922101, 652922, '吐木秀克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922102, 652922, '克孜勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922103, 652922, '阿热勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922104, 652922, '佳木镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922105, 652922, '托甫汗镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922106, 652922, '共青团镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922107, 652922, '柯柯牙镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922200, 652922, '托乎拉乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922202, 652922, '恰格拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922204, 652922, '依希来木其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922206, 652922, '古勒阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652922207, 652922, '博孜墩柯尔克孜族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924100, 652924, '沙雅镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924101, 652924, '托依堡勒迪镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924102, 652924, '红旗镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924103, 652924, '英买力镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924104, 652924, '沙雅县哈德墩镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924105, 652924, '古勒巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924106, 652924, '海楼镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924205, 652924, '努尔巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924206, 652924, '塔里木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924207, 652924, '盖孜库木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924208, 652924, '央塔克协海尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652924402, 652924, '沙雅县塔河管理委员会', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925100, 652925, '新和镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925101, 652925, '尤鲁都斯巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925102, 652925, '依其艾日克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925103, 652925, '塔什艾日克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925201, 652925, '排先拜巴扎乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925203, 652925, '渭干乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925204, 652925, '玉奇喀特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925205, 652925, '塔木托格拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925402, 652925, '央塔库都片区管委会', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925500, 652925, '新和县轻工业园区生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925502, 652925, '新和县物流园区生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652925503, 652925, '新和县新材料园区生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926100, 652926, '拜城镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926101, 652926, '铁热克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926102, 652926, '察尔齐镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926103, 652926, '赛里木镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926200, 652926, '黑英山乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926201, 652926, '克孜尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926203, 652926, '托克逊乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926204, 652926, '亚吐尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926205, 652926, '康其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926206, 652926, '布隆乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926207, 652926, '米吉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926208, 652926, '温巴什乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926209, 652926, '大桥乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926210, 652926, '老虎台乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652926400, 652926, '大宛其管理委员会', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927100, 652927, '乌什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927101, 652927, '阿合雅镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927102, 652927, '依麻木镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927200, 652927, '阿克托海乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927201, 652927, '亚科瑞克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927202, 652927, '阿恰塔格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927205, 652927, '英阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927206, 652927, '亚曼苏柯尔克孜族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652927207, 652927, '奥特贝希乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928100, 652928, '阿瓦提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928101, 652928, '乌鲁却勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928102, 652928, '拜什艾日克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928103, 652928, '塔木托格拉克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928104, 652928, '英艾日克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928105, 652928, '阿依巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928106, 652928, '三河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928203, 652928, '多浪乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928204, 652928, '巴格托格拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652928405, 652928, '阿克苏监狱', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652929100, 652929, '柯坪镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652929101, 652929, '盖孜力克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652929102, 652929, '阿恰勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652929201, 652929, '玉尔其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (652929203, 652929, '启浪乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001001, 653001, '幸福路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001002, 653001, '光明路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001003, 653001, '新城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001100, 653001, '上阿图什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001200, 653001, '松他克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001201, 653001, '阿扎克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001202, 653001, '阿湖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001204, 653001, '格达良乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001205, 653001, '哈拉峻乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001206, 653001, '吐古买提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653001500, 653001, '兵团农三师红旗农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022100, 653022, '阿克陶镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022101, 653022, '奥依塔克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022102, 653022, '克孜勒陶镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022103, 653022, '恰尔隆镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022200, 653022, '玉麦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022201, 653022, '皮拉勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022202, 653022, '巴仁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022203, 653022, '喀热开其克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022204, 653022, '加马铁热克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022205, 653022, '木吉乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022206, 653022, '布伦口乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022210, 653022, '塔尔塔吉克民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022400, 653022, '托尔塔依农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022401, 653022, '阿克达拉牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022402, 653022, '原种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022403, 653022, '克孜勒苏柯尔克孜自治州林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653022404, 653022, '苗圃', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653023100, 653023, '阿合奇镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653023200, 653023, '库兰萨日克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653023201, 653023, '色帕巴依乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653023202, 653023, '苏木塔什乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653023203, 653023, '哈拉奇乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653023204, 653023, '哈拉布拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024100, 653024, '乌恰镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024101, 653024, '康苏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024102, 653024, '巴音库鲁提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024200, 653024, '乌鲁克恰提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024201, 653024, '吾合沙鲁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024202, 653024, '膘尔托阔依乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024203, 653024, '黑孜苇乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024204, 653024, '托云乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024205, 653024, '铁列克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024207, 653024, '波斯坦铁列克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024208, 653024, '吉根乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653024501, 653024, '兵团托云牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101001, 653101, '恰萨街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101002, 653101, '亚瓦格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101003, 653101, '吾斯塘博依街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101004, 653101, '库木代尔瓦扎街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101005, 653101, '西域大道街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101006, 653101, '东湖街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101007, 653101, '迎宾大道街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101008, 653101, '西公园街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101100, 653101, '乃则尔巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101101, 653101, '夏马勒巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101202, 653101, '多来特巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101203, 653101, '浩罕乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101204, 653101, '色满乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101205, 653101, '荒地乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101206, 653101, '帕哈太克里乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101207, 653101, '伯什克然木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101208, 653101, '阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101209, 653101, '英吾斯坦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653101210, 653101, '阿克喀什乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121100, 653121, '托克扎克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121101, 653121, '兰干镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121102, 653121, '吾库萨克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121103, 653121, '乌帕尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121201, 653121, '塔什米里克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121202, 653121, '铁日木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121203, 653121, '布拉克苏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121204, 653121, '萨依巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121205, 653121, '站敏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121211, 653121, '木什乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121400, 653121, '县种畜场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121401, 653121, '县园艺场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121402, 653121, '县林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121403, 653121, '县良种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653121406, 653121, '疏附广州工业城', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122100, 653122, '疏勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122101, 653122, '罕南力克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122102, 653122, '牙甫泉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122200, 653122, '巴仁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122201, 653122, '洋大曼乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122202, 653122, '亚曼牙乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122203, 653122, '巴合齐乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122204, 653122, '塔孜洪乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122205, 653122, '英尔力克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122206, 653122, '库木西力克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122207, 653122, '塔尕尔其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122208, 653122, '艾尔木东乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122209, 653122, '阿拉力乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122210, 653122, '阿拉甫乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122211, 653122, '英阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653122400, 653122, '高新技术产业孵化园区管委会', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123100, 653123, '英吉沙镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123101, 653123, '乌恰镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123102, 653123, '芒辛镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123103, 653123, '萨罕镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123200, 653123, '城关乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123201, 653123, '乔勒潘乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123202, 653123, '龙甫乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123204, 653123, '色提力乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123206, 653123, '英也尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123207, 653123, '克孜勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123208, 653123, '托普鲁克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123209, 653123, '苏盖提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123211, 653123, '艾古斯乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123212, 653123, '依格孜也尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123401, 653123, '英吉沙工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653123500, 653123, '兵团东风农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124100, 653124, '泽普镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124101, 653124, '奎依巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124200, 653124, '波斯喀木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124201, 653124, '泽普县依玛乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124202, 653124, '古勒巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124203, 653124, '赛力乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124204, 653124, '依肯苏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124205, 653124, '图呼其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124206, 653124, '奎依巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124207, 653124, '阿克塔木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124208, 653124, '阿依库勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124209, 653124, '布依鲁克塔吉克族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124210, 653124, '桐安乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124401, 653124, '泽普县良种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653124403, 653124, '国营林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125001, 653125, '叶尓羌街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125002, 653125, '城中街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125003, 653125, '城东街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125004, 653125, '城西街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125005, 653125, '城北街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125100, 653125, '莎车镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125101, 653125, '恰热克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125102, 653125, '艾力西湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125103, 653125, '荒地镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125104, 653125, '阿瓦提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125105, 653125, '白什坎特镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125106, 653125, '依盖尔其镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125107, 653125, '古勒巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125108, 653125, '米夏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125109, 653125, '托木吾斯塘镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125110, 653125, '塔尕尔其镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125111, 653125, '乌达力克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125112, 653125, '阿拉买提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125113, 653125, '阿扎特巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125201, 653125, '阿热勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125202, 653125, '恰尔巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125204, 653125, '英吾斯塘乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125206, 653125, '阿尔斯兰巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125207, 653125, '孜热甫夏提塔吉克族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125208, 653125, '亚喀艾日克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125209, 653125, '喀群乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125210, 653125, '霍什拉甫乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125211, 653125, '达木斯乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125213, 653125, '伊什库力乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125214, 653125, '拍克其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125216, 653125, '阔什艾日克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125217, 653125, '墩巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125220, 653125, '巴格阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125221, 653125, '喀拉苏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125401, 653125, '喀什监狱', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125402, 653125, '莎车县良种繁育场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125403, 653125, '莎车县第一林场(国营苗圃)', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125404, 653125, '莎车县国营二林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125405, 653125, '莎车县园艺场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125406, 653125, '莎车县蚕种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125407, 653125, '莎车县鱼苗场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125408, 653125, '农科院莎车农业试验站', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125409, 653125, '工业园区管委会', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125410, 653125, '英阿瓦提管理委员会', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653125411, 653125, '永安管理委员会', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126100, 653126, '喀格勒克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126101, 653126, '恰尔巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126102, 653126, '乌夏巴什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126103, 653126, '阿克塔什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126200, 653126, '洛克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126201, 653126, '伯西热克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126202, 653126, '铁提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126203, 653126, '恰萨美其特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126204, 653126, '吐古其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126205, 653126, '江格勒斯乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126206, 653126, '加依提勒克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126207, 653126, '巴仁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126208, 653126, '乌吉热克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126209, 653126, '夏合甫乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126210, 653126, '依力克其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126211, 653126, '依提木孔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126212, 653126, '宗朗乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126213, 653126, '柯克亚乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126214, 653126, '西合休乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126215, 653126, '棋盘乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126216, 653126, '萨依巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126402, 653126, '阿克塔什农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126403, 653126, '良种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126405, 653126, '林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126409, 653126, '叶城工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653126500, 653126, '兵团叶城牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127100, 653127, '麦盖提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127101, 653127, '巴扎结米镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127201, 653127, '希依提墩乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127202, 653127, '央塔克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127203, 653127, '吐曼塔勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127204, 653127, '尕孜库勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127205, 653127, '克孜勒阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127206, 653127, '库木库萨尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127207, 653127, '昂格特勒克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127208, 653127, '库尔玛乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127400, 653127, '胡杨林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127401, 653127, '园艺场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653127402, 653127, '五一林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128100, 653128, '岳普湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128101, 653128, '艾西曼镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128102, 653128, '铁热木镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128103, 653128, '也克先拜巴扎镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128200, 653128, '岳普湖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128203, 653128, '阿其克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128204, 653128, '色也克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128206, 653128, '巴依阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128207, 653128, '阿洪鲁库木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653128402, 653128, '岳普湖县奶牛场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129100, 653129, '巴仁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129101, 653129, '西克尔库勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129102, 653129, '夏普吐勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129103, 653129, '卧里托格拉克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129104, 653129, '克孜勒博依镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129107, 653129, '和夏阿瓦提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129200, 653129, '铁日木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129201, 653129, '英买里乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129202, 653129, '江巴孜乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129205, 653129, '米夏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129208, 653129, '克孜勒苏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129209, 653129, '古勒鲁克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653129210, 653129, '玉代克力克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130100, 653130, '巴楚镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130101, 653130, '色力布亚镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130102, 653130, '阿瓦提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130103, 653130, '三岔口镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130200, 653130, '恰尔巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130201, 653130, '多来提巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130202, 653130, '阿纳库勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130203, 653130, '夏马勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130204, 653130, '阿克萨克玛热勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130205, 653130, '阿拉根乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130206, 653130, '琼库恰克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653130207, 653130, '英吾斯坦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131100, 653131, '塔什库尔干镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131101, 653131, '塔吉克阿巴提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131200, 653131, '塔什库尔干乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131201, 653131, '塔合曼乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131202, 653131, '科克亚尔柯尔克孜族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131203, 653131, '提孜那甫乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131204, 653131, '达布达尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131205, 653131, '马尔洋乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131206, 653131, '瓦恰乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131207, 653131, '班迪尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131208, 653131, '库科西鲁格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653131210, 653131, '大同乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201001, 653201, '努尔巴格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201002, 653201, '古江巴格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201003, 653201, '古勒巴格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201004, 653201, '纳尔巴格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201100, 653201, '拉斯奎镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201101, 653201, '玉龙喀什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201102, 653201, '吐沙拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201200, 653201, '肖尔巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201201, 653201, '伊里其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201202, 653201, '古江巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201204, 653201, '吉亚乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201205, 653201, '阿克恰勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201401, 653201, '北京工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653201402, 653201, '和田市京和物流园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221100, 653221, '巴格其镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221102, 653221, '罕艾日克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221202, 653221, '英阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221203, 653221, '英艾日克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221204, 653221, '布扎克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221205, 653221, '拉依喀乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221206, 653221, '朗如乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221207, 653221, '塔瓦库勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221208, 653221, '伊斯拉木阿瓦提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221209, 653221, '色格孜库勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221210, 653221, '喀什塔什乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221211, 653221, '吾宗肖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653221401, 653221, '和田县经济新区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222100, 653222, '喀拉喀什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222101, 653222, '扎瓦镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222102, 653222, '奎牙镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222103, 653222, '喀尔赛镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222104, 653222, '普恰克其镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222203, 653222, '阿克萨拉依乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222204, 653222, '乌尔其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222205, 653222, '托胡拉乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222206, 653222, '萨依巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222207, 653222, '加汗巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222209, 653222, '芒来乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222210, 653222, '阔依其乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222211, 653222, '雅瓦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222212, 653222, '吐外特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222213, 653222, '英也尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653222214, 653222, '喀瓦克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223001, 653223, '街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223100, 653223, '固玛镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223101, 653223, '杜瓦镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223102, 653223, '赛图拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223103, 653223, '木吉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223104, 653223, '阔什塔格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223105, 653223, '桑株镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223201, 653223, '克里阳乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223202, 653223, '科克铁热克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223205, 653223, '乔达乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223206, 653223, '木奎拉乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223207, 653223, '藏桂乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223208, 653223, '皮亚勒玛乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223209, 653223, '皮西那乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223210, 653223, '巴什兰干乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223211, 653223, '垴阿巴提塔吉克民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223212, 653223, '康克尔柯尔克孜民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653223401, 653223, '皮山三峡工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224001, 653224, '城区街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224100, 653224, '洛浦镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224101, 653224, '山普鲁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224102, 653224, '杭桂镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224103, 653224, '恰尔巴格镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224201, 653224, '布亚乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224205, 653224, '多鲁乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224206, 653224, '纳瓦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224207, 653224, '拜什托格拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224208, 653224, '阿其克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653224403, 653224, '洛浦县北京工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225100, 653225, '策勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225101, 653225, '固拉合玛镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225200, 653225, '策勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225202, 653225, '达玛沟乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225203, 653225, '恰哈乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225204, 653225, '乌鲁克萨依乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225205, 653225, '奴尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653225206, 653225, '博斯坦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226100, 653226, '木尕拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226101, 653226, '先拜巴扎镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226200, 653226, '加依乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226201, 653226, '科克亚乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226202, 653226, '阿热勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226203, 653226, '阿日希乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226204, 653226, '兰干乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226205, 653226, '斯也克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226206, 653226, '托格日尕孜乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226207, 653226, '喀拉克尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226208, 653226, '奥依托格拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226209, 653226, '阿羌乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226210, 653226, '英巴格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226211, 653226, '希吾勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226212, 653226, '达里雅布依乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653226402, 653226, '于田监狱', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227100, 653227, '尼雅镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227200, 653227, '尼雅乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227201, 653227, '若克雅乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227202, 653227, '萨勒吾则克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227203, 653227, '叶亦克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227204, 653227, '安迪尔乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (653227205, 653227, '亚瓦通古孜乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002001, 654002, '萨依布依街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002002, 654002, '墩买里街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002003, 654002, '伊犁河路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002004, 654002, '喀赞其街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002005, 654002, '都来提巴格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002006, 654002, '琼科瑞克街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002007, 654002, '艾兰木巴格街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002008, 654002, '解放路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002100, 654002, '巴彦岱镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002101, 654002, '潘津镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002102, 654002, '英也尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002103, 654002, '达达木图镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002201, 654002, '汉宾乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002202, 654002, '塔什科瑞克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002203, 654002, '喀尔墩乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002204, 654002, '托格拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002205, 654002, '克伯克于孜乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002403, 654002, '伊宁市边境经济合作区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654002404, 654002, '伊犁河南岸新区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003001, 654003, '团结路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003002, 654003, '乌东路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003003, 654003, '北京路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003004, 654003, '乌鲁木齐西路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003005, 654003, '火车站街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003006, 654003, '北京西路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003201, 654003, '开干齐乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003508, 654003, '兵团一三一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654003510, 654003, '天北新区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004001, 654004, '卡拉苏街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004002, 654004, '亚欧东路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004003, 654004, '亚欧西路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004004, 654004, '工业园区街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004200, 654004, '伊车嘎善乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004505, 654004, '兵团六十一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654004506, 654004, '兵团六十二团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021100, 654021, '吉里于孜镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021101, 654021, '墩麻扎镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021102, 654021, '英塔木镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021103, 654021, '胡地于孜镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021104, 654021, '巴依托海镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021105, 654021, '阿热吾斯塘镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021106, 654021, '萨木于孜镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021107, 654021, '喀什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021108, 654021, '维吾尔玉其温镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021109, 654021, '温亚尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021201, 654021, '吐鲁番于孜乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021202, 654021, '喀拉亚尕奇乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021203, 654021, '武功乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021204, 654021, '萨地克于孜乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021205, 654021, '愉群翁回族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021212, 654021, '麻扎乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021214, 654021, '阿乌利亚乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021215, 654021, '曲鲁海乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654021501, 654021, '兵团七十团中心团场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022100, 654022, '察布查尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022101, 654022, '爱新色里镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022102, 654022, '孙扎齐牛录镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022103, 654022, '绰霍尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022104, 654022, '加尕斯台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022105, 654022, '琼博拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022106, 654022, '海努克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022200, 654022, '堆齐牛录乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022203, 654022, '纳达齐牛录乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022204, 654022, '扎库齐牛录乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022205, 654022, '米粮泉回族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022206, 654022, '坎乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022207, 654022, '阔洪奇乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022401, 654022, '安班巴格良繁场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022403, 654022, '伊犁州平原林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022404, 654022, '山区林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022408, 654022, '都拉塔口岸', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022503, 654022, '兵团六十七团分部', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654022504, 654022, '兵团六十九团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023100, 654023, '水定镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023101, 654023, '清水河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023102, 654023, '芦草沟镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023103, 654023, '惠远镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023104, 654023, '萨尔布拉克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023105, 654023, '兰干镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023201, 654023, '三道河乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023204, 654023, '三宫乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023205, 654023, '大西沟乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023403, 654023, '良种繁育中心', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654023509, 654023, '兵团六十六团分部', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024100, 654024, '巩留镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024101, 654024, '阿克吐别克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024102, 654024, '库尔德宁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024103, 654024, '东买里镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024104, 654024, '阿尕尔森镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024105, 654024, '提克阿热克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024201, 654024, '吉尔格郎乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024204, 654024, '塔斯托别乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024400, 654024, '综合农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024401, 654024, '阔什阿尕什羊场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024402, 654024, '牛场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024403, 654024, '良凡场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024405, 654024, '林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654024510, 654024, '兵团七十三团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025100, 654025, '新源镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025101, 654025, '则克台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025102, 654025, '阿热勒托别镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025103, 654025, '塔勒德镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025104, 654025, '那拉提镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025105, 654025, '肖尔布拉克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025106, 654025, '喀拉布拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025107, 654025, '阿勒玛勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025108, 654025, '坎苏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025200, 654025, '别斯托别乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025204, 654025, '吐尔根乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025400, 654025, '种羊场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025403, 654025, '公安农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025511, 654025, '兵团七十一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654025512, 654025, '兵团七十二团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026100, 654026, '昭苏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026101, 654026, '喀夏加尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026102, 654026, '阿克达拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026103, 654026, '喀拉苏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026104, 654026, '洪纳海镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026201, 654026, '乌尊布拉克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026203, 654026, '萨尔阔布乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026206, 654026, '察汗乌苏蒙古族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026207, 654026, '夏特柯尔克孜族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026208, 654026, '胡松图喀尔逊蒙古族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026513, 654026, '兵团七十四团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026514, 654026, '兵团七十五团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026515, 654026, '兵团七十六团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654026516, 654026, '兵团七十七团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027100, 654027, '特克斯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027101, 654027, '乔拉克铁热克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027102, 654027, '喀拉达拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027103, 654027, '齐勒乌泽克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027104, 654027, '喀拉托海镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027200, 654027, '呼吉尔特蒙古民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027201, 654027, '阔克苏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027203, 654027, '阔克铁热克柯尔克孜民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027404, 654027, '特克斯县马场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027405, 654027, '科克苏林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654027517, 654027, '兵团七十八团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028100, 654028, '尼勒克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028101, 654028, '乌拉斯台镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028102, 654028, '乌赞镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028103, 654028, '木斯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028104, 654028, '克令镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028200, 654028, '苏布台乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028201, 654028, '喀拉苏乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028202, 654028, '加哈乌拉斯台乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028204, 654028, '科克浩特浩尔蒙古民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028207, 654028, '喀拉托别乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028208, 654028, '胡吉尔台乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028404, 654028, '种蜂场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654028518, 654028, '兵团七十九团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201001, 654201, '和平街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201002, 654201, '杜别克街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201003, 654201, '新城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201100, 654201, '二工镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201101, 654201, '恰夏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201102, 654201, '博孜达克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201200, 654201, '喀拉哈巴克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201202, 654201, '阿西尔达斡尔民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201203, 654201, '阿不都拉乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201204, 654201, '也门勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201502, 654201, '兵团第九师一六二团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201503, 654201, '兵团农九师一六三团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201504, 654201, '兵团农九师一六四团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654201512, 654201, '巴克图经济开发区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202001, 654202, '南苑街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202002, 654202, '虹桥街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202003, 654202, '新市区街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202006, 654202, '西城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202007, 654202, '奎河街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202100, 654202, '白杨沟镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202101, 654202, '哈图布呼镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202102, 654202, '皇宫镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202103, 654202, '车排子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202104, 654202, '甘河子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202105, 654202, '百泉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202106, 654202, '四棵树镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202107, 654202, '古尔图镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202108, 654202, '西湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202109, 654202, '西大沟镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202200, 654202, '八十四户乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202201, 654202, '夹河子乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202202, 654202, '九间楼乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202203, 654202, '石桥乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202204, 654202, '头台乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202205, 654202, '吉尔格勒特郭愣蒙古民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202206, 654202, '塔布勒合特蒙古民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202400, 654202, '甘家湖牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202401, 654202, '巴音沟牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202402, 654202, '赛力克提牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202403, 654202, '乌苏监狱', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202500, 654202, '兵团一二三团生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202501, 654202, '兵团一二四团生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202502, 654202, '兵团一二五团分部生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202503, 654202, '兵团一二六团生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202504, 654202, '兵团一二七团生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202505, 654202, '兵团一二八团分部生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654202507, 654202, '兵团一三零团分部生活区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203101, 654203, '四道河子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203102, 654203, '老沙湾镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203103, 654203, '乌兰乌苏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203104, 654203, '安集海镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203105, 654203, '东湾镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203106, 654203, '西戈壁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203107, 654203, '柳毛湾镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203108, 654203, '金沟河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203109, 654203, '三道河子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203200, 654203, '商户地乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203201, 654203, '大泉乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203202, 654203, '博尔通古乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203402, 654203, '良种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203500, 654203, '兵团北泉镇分部', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203503, 654203, '兵团一二一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203506, 654203, '兵团一三三团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203507, 654203, '兵团一三四团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203509, 654203, '兵团一四一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203510, 654203, '兵团一四二团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203511, 654203, '兵团一四三团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654203512, 654203, '兵团一四四团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221100, 654221, '额敏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221101, 654221, '玉什喀拉苏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221102, 654221, '杰勒阿尕什镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221103, 654221, '上户镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221104, 654221, '玛热勒苏镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221105, 654221, '喀拉也木勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221200, 654221, '郊区乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221202, 654221, '额玛勒郭楞蒙古民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221207, 654221, '喇嘛昭乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221208, 654221, '霍吉尔特蒙古民族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221209, 654221, '二道桥乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221400, 654221, '二支河牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221401, 654221, '加尔布拉克农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221402, 654221, '阔什比克良种场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221403, 654221, '萨尔也木勒牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221404, 654221, '也木勒牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221405, 654221, '塔城地区种羊场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221406, 654221, '吾宗布拉克牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221407, 654221, '额敏(兵地、辽阳)工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221505, 654221, '兵团农九师一六五团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221506, 654221, '兵团农九师一六六团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221507, 654221, '兵团农九师一六七团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221508, 654221, '兵团农九师一六八团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654221511, 654221, '兵团农九师团结农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224100, 654224, '托里镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224101, 654224, '铁厂沟镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224102, 654224, '庙尔沟镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224103, 654224, '哈图镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224200, 654224, '多拉特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224201, 654224, '乌雪特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224202, 654224, '库普乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224203, 654224, '阿克别里斗乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224401, 654224, '白杨河林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224402, 654224, '老风口林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224403, 654224, '巴尔鲁克山塔斯特林场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654224510, 654224, '兵团农九师一七零团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225100, 654225, '哈拉布拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225101, 654225, '吉也克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225200, 654225, '哈拉布拉乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225201, 654225, '新地乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225202, 654225, '阿勒腾也木勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225204, 654225, '江格斯乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654225501, 654225, '兵团农九师一六一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226100, 654226, '和布克赛尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226101, 654226, '和什托洛盖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226200, 654226, '夏孜盖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226201, 654226, '铁布肯乌散乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226202, 654226, '查干库勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226203, 654226, '巴音傲瓦乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226204, 654226, '莫特格乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226205, 654226, '查和特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226400, 654226, '伊克乌图布拉格牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226401, 654226, '那仁和布克牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226402, 654226, '巴尕乌图布拉格牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226403, 654226, '布斯屯格牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226500, 654226, '兵团一八四团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654226501, 654226, '新疆屯南煤业有限责任公司', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301001, 654301, '金山路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301002, 654301, '解放路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301003, 654301, '团结路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301004, 654301, '恰秀路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301100, 654301, '北屯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301101, 654301, '阿苇滩镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301102, 654301, '红墩镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301103, 654301, '切木尔切克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301104, 654301, '阿拉哈克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301202, 654301, '汗德尕特蒙古族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301203, 654301, '拉斯特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301204, 654301, '喀拉希力克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301205, 654301, '萨尔胡松乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301206, 654301, '巴里巴盖乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301207, 654301, '切尔克齐乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301400, 654301, '喀拉尕什牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301401, 654301, '阿克吐木斯克牧场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654301500, 654301, '兵团一八一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321100, 654321, '布尔津镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321101, 654321, '冲乎尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321102, 654321, '窝依莫克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321103, 654321, '阔斯特克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321201, 654321, '杜来提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321204, 654321, '也格孜托别乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654321205, 654321, '禾木哈纳斯蒙古族乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322100, 654322, '库额尔齐斯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322101, 654322, '可可托海镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322102, 654322, '恰库尔图镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322103, 654322, '喀拉通克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322104, 654322, '杜热镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322200, 654322, '吐尔洪乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322202, 654322, '库尔特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322203, 654322, '克孜勒希力克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322204, 654322, '铁买克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654322205, 654322, '喀拉布勒根乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323100, 654323, '福海镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323101, 654323, '喀拉玛盖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323102, 654323, '解特阿热勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323201, 654323, '阔克阿尕什乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323202, 654323, '齐干吉迭乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323204, 654323, '阿尔达乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323400, 654323, '地区一农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323401, 654323, '福海监狱', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323500, 654323, '兵团一八二团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323504, 654323, '兵团一八三团分部', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654323505, 654323, '兵团一八八团分部', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324100, 654324, '阿克齐镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324101, 654324, '萨尔布拉克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324102, 654324, '齐巴尔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324103, 654324, '库勒拜镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324200, 654324, '萨尔塔木乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324201, 654324, '加依勒玛乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324204, 654324, '铁热克提乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654324500, 654324, '兵团一八五团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325100, 654325, '青河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325101, 654325, '塔克什肯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325102, 654325, '阿热勒托别镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325103, 654325, '阿格达拉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325104, 654325, '阿热勒镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325202, 654325, '萨尔托海乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325203, 654325, '查干郭勒乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654325204, 654325, '阿尕什敖包乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326100, 654326, '托普铁热克镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326101, 654326, '吉木乃镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326102, 654326, '喀尔交镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326103, 654326, '乌拉斯特镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326201, 654326, '托斯特乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326202, 654326, '恰勒什海乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326204, 654326, '别斯铁热克乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (654326500, 654326, '兵团一八六团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001001, 659001, '新城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001002, 659001, '向阳街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001003, 659001, '红山街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001004, 659001, '老街街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001005, 659001, '东城街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001100, 659001, '北泉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001101, 659001, '石河子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659001500, 659001, '兵团一五二团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002001, 659002, '金银川路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002002, 659002, '幸福路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002003, 659002, '青松路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002100, 659002, '金银川镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002101, 659002, '新井子镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002102, 659002, '甘泉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002103, 659002, '永宁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002104, 659002, '沙河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002105, 659002, '双城镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002106, 659002, '花桥镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002107, 659002, '幸福镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002108, 659002, '金杨镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002109, 659002, '玛滩镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002110, 659002, '塔门镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002111, 659002, '梨花镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002112, 659002, '昌安镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002113, 659002, '塔南镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002114, 659002, '新开岭镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002200, 659002, '托喀依乡', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002402, 659002, '工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659002518, 659002, '西工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003001, 659003, '锦绣街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003002, 659003, '前海街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003003, 659003, '永安坝街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003100, 659003, '草湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003101, 659003, '龙口镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003102, 659003, '前海镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003103, 659003, '永兴镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003104, 659003, '兴安镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003105, 659003, '嘉和镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003106, 659003, '河东镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003107, 659003, '夏河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003108, 659003, '永安镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003109, 659003, '海安镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003110, 659003, '唐驿镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659003111, 659003, '金胡杨镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004001, 659004, '军垦路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004002, 659004, '青湖路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004003, 659004, '人民路街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004100, 659004, '梧桐镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004101, 659004, '蔡家湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004500, 659004, '兵团一零一团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659004501, 659004, '五家渠经济技术开区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659005100, 659005, '双渠镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659005101, 659005, '丰庆镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659005102, 659005, '海川镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659005400, 659005, '北屯市核心区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006001, 659006, '迎宾街道', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006100, 659006, '博古其镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006101, 659006, '双丰镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006102, 659006, '河畔镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006103, 659006, '高桥镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006104, 659006, '天湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006105, 659006, '开泽镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006106, 659006, '米兰镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006107, 659006, '金山镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659006108, 659006, '南屯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659007100, 659007, '双桥镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659007101, 659007, '石峪镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659007102, 659007, '博河镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659007103, 659007, '双乐镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659007400, 659007, '双河市核心区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659007500, 659007, '兵团八十九团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659008100, 659008, '榆树庄镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659008101, 659008, '苇湖镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659008102, 659008, '长丰镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659008103, 659008, '金梁镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659008104, 659008, '金屯镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659008400, 659008, '可克达拉市核心区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009100, 659009, '老兵镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009101, 659009, '昆泉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009102, 659009, '昆牧镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009103, 659009, '玉泉镇', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009400, 659009, '昆玉市核心区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009500, 659009, '兵团二二四团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659009501, 659009, '北京皮墨工业园区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659010400, 659010, '胡杨河市核心区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659010500, 659010, '兵团一二五团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659010501, 659010, '兵团一二八团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659010502, 659010, '兵团一二九团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659010503, 659010, '兵团一三零团', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659011400, 659011, '新星市核心区', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659011500, 659011, '兵团红星一场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659011501, 659011, '红星四场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); INSERT INTO `eb_city_region` (`region_id`, `parent_id`, `region_name`, `region_type`, `create_time`, `update_time`) VALUES (659011502, 659011, '黄田农场', 4, '2022-11-09 10:39:30', '2022-11-09 11:10:46'); COMMIT; -- ---------------------------- -- Table structure for eb_coupon -- ---------------------------- DROP TABLE IF EXISTS `eb_coupon`; CREATE TABLE `eb_coupon` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '优惠券表ID', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID', `name` varchar(64) NOT NULL DEFAULT '' COMMENT '优惠券名称', `publisher` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT '发行方,1-平台,2-商户', `category` tinyint(2) NOT NULL DEFAULT '1' COMMENT '类别 1-商家券, 2-商品券, 3-平台券', `receive_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '领取类型 1-手动领取,2-商品赠送券', `coupon_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '优惠券类型 1-满减券,2-折扣券', `money` bigint(11) unsigned NOT NULL DEFAULT '0' COMMENT '优惠金额', `discount` int(3) unsigned NOT NULL DEFAULT '0' COMMENT '折扣', `min_price` bigint(11) unsigned NOT NULL DEFAULT '0' COMMENT '最低消费,0代表不限制', `is_limited` tinyint(1) DEFAULT '0' COMMENT '是否限量, 默认0 不限量, 1限量', `total` int(11) NOT NULL DEFAULT '0' COMMENT '发放总数', `last_total` int(11) NOT NULL DEFAULT '0' COMMENT '剩余数量', `is_time_receive` tinyint(1) DEFAULT '0' COMMENT '领取是否限时, 默认0-不限时,1-限时', `receive_start_time` timestamp NULL DEFAULT NULL COMMENT '可领取开始时间', `receive_end_time` timestamp NULL DEFAULT NULL COMMENT '可领取结束时间', `is_fixed_time` tinyint(1) DEFAULT '0' COMMENT '是否固定使用时间, 默认0-否,1-使用固定时间', `use_start_time` timestamp NULL DEFAULT NULL COMMENT '可使用时间范围 开始时间', `use_end_time` timestamp NULL DEFAULT NULL COMMENT '可使用时间范围 结束时间', `day` int(4) DEFAULT '0' COMMENT '天数', `sort` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '排序', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态(0:关闭,1:开启)', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 状态(0:否,1:是)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE, KEY `publisher` (`publisher`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='优惠券表'; -- ---------------------------- -- Records of eb_coupon -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_coupon_product -- ---------------------------- DROP TABLE IF EXISTS `eb_coupon_product`; CREATE TABLE `eb_coupon_product` ( `cid` int(11) NOT NULL COMMENT '优惠券id', `pid` int(11) NOT NULL COMMENT '商品id', PRIMARY KEY (`cid`,`pid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='优惠券商品关联表'; -- ---------------------------- -- Records of eb_coupon_product -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_coupon_user -- ---------------------------- DROP TABLE IF EXISTS `eb_coupon_user`; CREATE TABLE `eb_coupon_user` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `coupon_id` int(11) NOT NULL COMMENT '优惠券id', `mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '店铺id,平台为0', `uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户id', `name` varchar(64) NOT NULL DEFAULT '' COMMENT '优惠券名称', `publisher` tinyint(2) unsigned NOT NULL DEFAULT '1' COMMENT '发行方,1-平台,2-商户', `category` tinyint(2) NOT NULL DEFAULT '1' COMMENT '类别 1-商家券, 2-商品券, 3-平台券', `receive_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '领取类型 1-手动领取,2-商品赠送券', `coupon_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '优惠券类型 1-满减券,2-折扣券', `money` bigint(11) unsigned NOT NULL DEFAULT '0' COMMENT '优惠金额', `discount` int(3) unsigned NOT NULL DEFAULT '0' COMMENT '折扣', `min_price` bigint(11) unsigned NOT NULL DEFAULT '0' COMMENT '最低消费,0代表不限制', `start_time` timestamp NULL DEFAULT NULL COMMENT '开始使用时间', `end_time` timestamp NULL DEFAULT NULL COMMENT '过期时间', `use_time` timestamp NULL DEFAULT NULL COMMENT '使用时间', `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '状态(0:未使用,1:已使用, 2:已失效)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户优惠券表'; -- ---------------------------- -- Records of eb_coupon_user -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_express -- ---------------------------- DROP TABLE IF EXISTS `eb_express`; CREATE TABLE `eb_express` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '快递公司id', `code` varchar(50) NOT NULL DEFAULT '' COMMENT '快递公司简称', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '快递公司全称', `partner_id` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否需要月结账号', `partner_key` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否需要月结密码', `net` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否需要取件网店', `account` varchar(100) NOT NULL DEFAULT '' COMMENT '账号', `password` varchar(100) NOT NULL DEFAULT '' COMMENT '密码', `net_name` varchar(100) NOT NULL DEFAULT '' COMMENT '网点名称', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否显示', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否可用', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `code` (`code`) USING BTREE, KEY `is_show` (`is_show`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1102 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='快递公司表'; -- ---------------------------- -- Records of eb_express -- ---------------------------- BEGIN; INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1, 'yunda', '韵达快递', 1, 1, 0, '11', '11', '', 0, 0, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (2, 'shunfeng', '顺丰速运', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (3, 'yuantong', '圆通速递', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (4, 'zhongtong', '中通快递', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (5, 'shentong', '申通快递', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (6, 'huitongkuaidi', '百世快递', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (7, 'jd', '京东物流', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (8, 'jtexpress', '极兔速递', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (9, 'youzhengguonei', '邮政快递包裹', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (10, 'tiantian', '天天快递', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (11, 'ems', 'EMS', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (12, 'debangwuliu', '德邦物流', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (13, 'debangkuaidi', '德邦快递', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (14, 'zhongyouex', '众邮快递', 1, 0, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (15, 'youshuwuliu', '优速快递', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (16, 'zhongtongkuaiyun', '中通快运', 0, 0, 0, '', '', '', 1, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (17, 'zhaijisong', '宅急送', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (18, 'suning', '苏宁物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (19, 'baishiwuliu', '百世快运', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (20, 'zhimakaimen', '芝麻开门', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (21, 'ups', 'UPS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (22, 'yundakuaiyun', '韵达快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (23, 'dhlen', 'DHL-全球件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (24, 'fedex', 'FedEx-国际件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (25, 'annengwuliu', '安能快运', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (26, 'lianhaowuliu', '联昊通', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (27, 'ewe', 'EWE全球快递', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (28, 'zhongtongguoji', '中通国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (29, 'dhl', 'DHL-中国件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (30, 'emsguoji', 'EMS-国际件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (31, 'ubonex', '优邦速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (32, 'kuayue', '跨越速运', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (33, 'yuantongkuaiyun', '圆通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (34, 'upsen', 'UPS-全球件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (35, 'rlgaus', '澳洲飞跃物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (36, 'zhongyouwuliu', '中邮物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (37, 'annto', '安得物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (38, 'danniao', '丹鸟', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (39, 'usps', 'USPS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (40, 'suer', '速尔快递', 1, 0, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (41, 'auspost', '澳大利亚(Australia Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (42, 'arkexpress', '方舟速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (43, 'chinaicip', '卓志速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (44, 'zhonghuan', '中环快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (45, 'hkems', '云邮跨境快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (46, 'yimidida', '壹米滴答', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (47, 'shpost', '同城快寄', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (48, 'kuaijiesudi', '快捷速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (49, 'disifang', '递四方', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (50, 'lntjs', '特急送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (51, 'meiquick', '美快国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (52, 'rrs', '日日顺物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (53, 'auexpress', '澳邮中国快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (54, 'sxjdfreight', '顺心捷达', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (55, 'idamalu', '大马鹿', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (56, 'yuantongguoji', '圆通国际', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (57, 'xinfengwuliu', '信丰物流', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (58, 'sendtochina', '速递中国', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (59, 'auod', '澳德物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (60, 'bpost', '比利时(Bpost)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (61, 'japanposten', '日本(Japan Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (62, 'ztky', '中铁快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (63, 'btexpress', '邦泰快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (64, 'tiandihuayu', '天地华宇', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (65, 'lianbangkuaidi', '联邦快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (66, 'dhlde', 'DHL-德国件(DHL Deutschland)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (67, 'banma', '斑马物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (68, 'yangbaoguo', '洋包裹', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (69, 'superb', 'Superb Grace', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (70, 'aramex', 'Aramex', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (71, 'newzealand', '新西兰(New Zealand Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (72, 'longbanwuliu', '龙邦速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (73, 'zhuanyunsifang', '转运四方', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (74, 'austa', 'Austa国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (75, 'flyway', '程光快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (76, 'subida', '速必达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (77, 'dpd', 'DPD', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (78, 'fedexcn', 'Fedex-国际件-中文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (79, 'jinguangsudikuaijian', '京广速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (80, 'weitepai', '微特派', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (81, 'yuxinwuliu', '宇鑫物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (82, 'xlobo', 'Xlobo贝海国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (83, 'sdto', '速达通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (84, 'huisenky', '汇森速运', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (85, 'guotongkuaidi', '国通快递', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (86, 'bsht', '百事亨通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (87, 'jiuyescm', '九曳供应链', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (88, 'tntau', 'TNT Australia', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (89, 'uszcn', '转运中国', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (90, 'tnt', 'TNT', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (91, 'changjiang', '长江国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (92, 'sunjex', '新杰物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (93, 'zhongtiewuliu', '中铁物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (94, 'adapost', '安达速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (95, 'wanjiawuliu', '万家物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (96, 'dpex', 'DPEX', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (97, 'emsbg', 'EMS包裹', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (98, 'aae', 'AAE-中国件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (99, 'shenghuiwuliu', '盛辉物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (100, 'stosolution', '申通国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (101, 'zhengyikuaidi', '鑫正一快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (102, 'savor', '海信物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (103, 'nsf', '新顺丰(NSF)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (104, 'qexpress', '易达通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (105, 'sanhuwuliu', '叁虎物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (106, 'polarexpress', '极地快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (107, 'rufengda', '如风达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (108, 'wanxiangwuliu', '万象物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (109, 'zhongtongphone', '中通(带电话)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (110, 'epanex', '泛捷国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (111, 'ueq', 'UEQ快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (112, 'lbex', '龙邦物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (113, 'jinan', '金岸物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (114, 'sxexpress', '三象速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (115, 'jiayunmeiwuliu', '加运美', 1, 0, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (116, 'wlwex', '星空国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (117, 'hac56', '瀚朝物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (118, 'la911', '鼎润物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (119, 'ftd', '富腾达国际货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (120, 'mosuda', '魔速达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (121, 'emsinten', 'EMS-国际件-英文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (122, 'suteng', '广东速腾物流', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (123, 'feiyuanvipshop', '飞远配送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (124, 'yuntrack', 'YUN TRACK', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (125, 'pingandatengfei', '平安达腾飞', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (126, 'guexp', '全联速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (127, 'hengluwuliu', '恒路物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (128, 'wjkwl', '万家康物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (129, 'xdexpress', '迅达速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (130, 'yw56', '燕文物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (131, 'bflg', '上海缤纷物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (132, 'nebuex', '星云速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (133, 'unitedex', '联合速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (134, 'baifudongfang', '百福东方', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (135, 'jiajiwuliu', '佳吉快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (136, 'beebird', '锋鸟物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (137, 'chszhonghuanguoji', 'CHS中环国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (138, 'tzky', '铁中快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (139, 'httx56', '汇通天下物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (140, 'wotu', '渥途国际速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (141, 'dsukuaidi', 'D速快递', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (142, 'jumstc', '聚盟共建', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (143, 'aotsd', '澳天速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (144, 'coe', 'COE', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (145, 'crazyexpress', '疯狂快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (146, 'dpexen', 'Toll', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (147, 'sut56', '速通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (148, 'zengyisudi', '增益速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (149, 'ucs', '合众速递(UCS)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (150, 'valueway', '美通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (151, 'jssdt56', '时达通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (152, 'yuanfeihangwuliu', '原飞航', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (153, 'haidaibao', '海带宝', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (154, 'ubuy', '德国优拜物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (155, 'zhongsukuaidi', '中速快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (156, 'ane66', '安能快递', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (157, 'anxl', '安迅物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (158, 'fujisuyun', '富吉速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (159, 'onehcang', '一号仓', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (160, 'tstexp', 'TST速运通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (161, 'chukou1', '出口易', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (162, 'jiajikuaidi', '佳吉快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (163, 'ndwl', '南方传媒物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (164, 'chnexp', '中翼国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (165, 'hkpost', '中国香港(HongKong Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (166, 'huangmajia', '黄马甲', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (167, 'hnht56', '鸿泰物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (168, 'shangda', '上大物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (169, 'ytkd', '运通中港快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (170, 'canpar', 'Canpar', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (171, 'dekuncn', '德坤物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (172, 'quansutong', '全速通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (173, 'cccc58', '中集冷云', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (174, 'cnpex', 'CNPEX中邮快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (175, 'dfwl', '达发物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (176, 'euasia', '欧亚专线', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (177, 'quanfengkuaidi', '全峰快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (178, 'sagawa', '佐川急便', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (179, 'doortodoor', 'CJ物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (180, 'fedexus', 'FedEx-美国件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (181, 'etong', 'E通速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (182, 'fastgoexpress', '速派快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (183, 'yujtong', '宇捷通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (184, 'chuangyi', '创一快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (185, 'ocs', 'OCS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (186, 'phlpost', '菲律宾(Philippine Postal)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (187, 'shlindao', '林道国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (188, 'tnten', 'TNT-全球件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (189, 'ganzhongnengda', '能达速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (190, 'yidatong', '易达通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (191, 'bht', 'BHT', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (192, 'cnausu', '中澳速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (193, 'oneexpress', '一速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (194, 'datianwuliu', '大田物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (195, 'emsen', 'EMS-英文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (196, 'quanyikuaidi', '全一快递', 1, 0, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (197, 'deutschepost', '德国(Deutsche Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (198, 'pjbest', '品骏快递', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (199, 'shangqiao56', '商桥物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (200, 'tianma', '天马迅达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (201, 'yousutongda', '优速通达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (202, 'yuananda', '源安达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (203, 'astexpress', '安世通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (204, 'exfresh', '安鲜达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (205, 'huanqiu', '环球速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (206, 'jialidatong', '嘉里大通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (207, 'nanjingshengbang', '晟邦物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (208, 'pfcexpress', '皇家物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (209, 'postnlcn', '荷兰邮政-中文(PostNL international reg', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (210, 'qinyuan', '秦远物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (211, 'runhengfeng', '全时速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (212, 'correosdees', '西班牙(Correos de Espa?a)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (213, 'dayangwuliu', '大洋物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (214, 'heimao56', '黑猫速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (215, 'huaxiahuoyun', '华夏货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (216, 'longfx', 'LUCFLOW EXPRESS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (217, 'myhermes', 'MyHermes', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (218, 'parcelforce', '英国大包、EMS(Parcel Force)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (219, 'zjstky', '苏通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (220, 'zlink', '三真驿道', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (221, 'canpost', '加拿大(Canada Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (222, 'hd', '宏递快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (223, 'hrex', '锦程快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (224, 'sfwl', '盛丰物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (225, 'taoplus', '淘布斯国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (226, 'yuanchengwuliu', '远成物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (227, 'eshunda', '俄顺达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (228, 'est365', '东方汇', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (229, 'farlogistis', '泛远国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (230, 'gsm', 'GSM', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (231, 'italiane', '意大利(Poste Italiane)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (232, 'lijisong', '成都立即送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (233, 'morelink56', 'MoreLink', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (234, 'tnjex', '明通国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (235, 'topspeedex', '中运全速', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (236, 'transrush', 'TransRush', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (237, 'yunfeng56', '韵丰物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (238, 'zhongchuan', '众川国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (239, 'csuivi', '法国(La Poste)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (240, 'efs', 'EFS Post(平安快递)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (241, 'express7th', '7号速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (242, 'lfexpress', '龙枫国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (243, 'wherexpess', '威盛快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (244, 'yizhengdasuyun', '一正达速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (245, 'youyou', '优优速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (246, 'ztong', '智通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (247, 'ajlogistics', '澳捷物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (248, 'chinapostcb', '中邮电商', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (249, 'colissimo', '法国小包(colissimo)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (250, 'gslexpress', '德尚国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (251, 'hlyex', '好来运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (252, 'jgwl', '景光物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (253, 'jiujiuwl', '久久物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (254, 'lineone', '一号线', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (255, 'minghangkuaidi', '民航快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (256, 'postnlchina', '荷兰邮政-中国件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (257, 'quansu', '全速物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (258, 'synship', 'SYNSHIP快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (259, 'tywl99', '天翼物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (260, 'wondersyd', '中邮速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (261, 'yafengsudi', '亚风速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (262, 'youban', '邮邦国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (263, 'ytchengnuoda', '承诺达', 1, 1, 0, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (264, 'anxindakuaixi', '安信达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (265, 'bjemstckj', '北京EMS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (266, 'chengtong', '城通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (267, 'com1express', '商壹国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (268, 'ecmscn', '易客满', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (269, 'eupackage', '易优包裹', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (270, 'ftky365', '丰通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (271, 'gslhkd', '联合快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (272, 'gts', 'GTS快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (273, 'jiayiwuliu', '佳怡物流', 1, 1, 1, '', '', '', 0, 1, 0); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (274, 'jieborne', '捷邦物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (275, 'jxfex', '集先锋快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (276, 'luben', '陆本速递 LUBEN EXPRESS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (277, 'meiguokuaidi', '美国快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (278, 'tcat', '黑猫宅急便', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (279, 'trakpak', 'TRAKPAK', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (280, 'tykd', '天翼快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (281, 'wedepot', 'wedepot物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (282, 'zhaijibian', '宅急便', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (283, 'abf', 'ABF', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (284, 'anposten', '爱尔兰(An Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (285, 'baitengwuliu', '百腾物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (286, 'biaojikuaidi', '彪记快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (287, 'boyol', '贝业物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (288, 'bulgarian', '保加利亚(Bulgarian Posts)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (289, 'chronopostport', 'Chronopost Portugal', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (290, 'cnexps', 'CNE', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (291, 'dhlbenelux', 'DHL Benelux', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (292, 'dhlecommerce', 'dhl小包', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (293, 'exsuda', 'E速达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (294, 'feikangda', '飞康达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (295, 'jiachenexpress', '佳辰国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (296, 'jiacheng', '佳成快递 ', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (297, 'jingshun', '景顺物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (298, 'lasership', 'LaserShip', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (299, 'mingliangwuliu', '明亮物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (300, 'shunjiefengda', '顺捷丰达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (301, 'skynetmalaysia', 'SkyNet Malaysia', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (302, 'sundarexpress', '顺达快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (303, 'swisspost', '瑞士(Swiss Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (304, 'trackparcel', 'track-parcel', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (305, 'uscbexpress', '易境达国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (306, 'xynyc', '新元国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (307, 'yaofeikuaidi', '耀飞同城快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (308, '1ziton', '一智通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (309, 'adp', 'ADP国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (310, 'alog', '心怡物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (311, 'asendiausa', 'Asendia USA', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (312, 'ausexpress', '澳世速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (313, 'bdatong', '八达通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (314, 'bosind', '堡昕德速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (315, 'buytong', '百通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (316, 'changyuwuliu', '长宇物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (317, 'chuanxiwuliu', '传喜物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (318, 'chunghwa56', '中骅物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (319, 'cllexpress', '澳通华人物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (320, 'cnspeedster', '速舟物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (321, 'comexpress', '邦通国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (322, 'cosco', '中远e环球', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (323, 'didasuyun', '递达速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (324, 'emswuliu', 'EMS物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (325, 'feibaokuaidi', '飞豹快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (326, 'gda', '安的快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (327, 'gdkjk56', '快捷快物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (328, 'gotoubi', 'UBI Australia', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (329, 'guoeryue', '天天快物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (330, 'hermes', 'Hermes', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (331, 'hotwms', '皇家云仓', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (332, 'ht22', '海淘物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (333, 'huaqikuaiyun', '华企快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (334, 'ibuy8', '爱拜物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (335, 'japanpost', '日本郵便', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (336, 'jcsuda', '嘉诚速达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (337, 'kcs', 'KCS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (338, 'longcps', '加拿大龙行速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (339, 'lsexpress', '6LS EXPRESS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (340, 'moldova', '摩尔多瓦(Posta Moldovei)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (341, 'newsway', '家家通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (342, 'pengyuanexpress', '鹏远国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (343, 'postdanmarken', '丹麦(Post Denmark)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (344, 'postnl', '荷兰邮政(PostNL international regist', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (345, 'postnlpacle', '荷兰包裹(PostNL International Parcel', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (346, 'postserv', '台湾(中华邮政)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (347, 'purolator', 'Purolator', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (348, 'qbexpress', '秦邦快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (349, 'quanritongkuaidi', '全日通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (350, 'saiaodi', '赛澳递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (351, 'sanshengco', '三盛快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (352, 'shangcheng', '尚橙物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (353, 'shipgce', '飞洋快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (354, 'shunfenghk', '顺丰-繁体', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (355, 'singpost', '新加坡小包(Singapore Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (356, 'slovenia', '斯洛文尼亚(Slovenia Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (357, 'spring56', '春风物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (358, 'stoexpress', '美国申通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (359, 'sxhongmajia', '红马甲物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (360, 'szshihuatong56', '世华通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (361, 'tollpriority', 'Toll Priority(Toll Online)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (362, 'wto56kj', '臣邦同城', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (363, 'xiangteng', '翔腾物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (364, 'xunsuexpress', '迅速快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (365, 'yongchangwuliu', '永昌物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (366, 'yuanzhijiecheng', '元智捷诚', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (367, 'yuefengwuliu', '越丰物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (368, 'zhonghuanus', '中环转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (369, 'zhongjiwuliu', '中技物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (370, 'zlxdjwl', '中粮鲜到家物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (371, 'a2u', 'A2U速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (372, 'abcglobal', '全球快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (373, 'adaexpress', '明大快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (374, 'adiexpress', '安达易国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (375, 'adlerlogi', '德国雄鹰速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (376, 'advancing', '安达信', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (377, 'afghan', '阿富汗(Afghan Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (378, 'afl', 'AFL', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (379, 'agopost', '全程快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (380, 'ahdf', '德方物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (381, 'ahkbps', '卡邦配送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (382, 'airgtc', '航空快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (383, 'airpak', 'airpak expresss', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (384, 'ajexpress', '捷记方舟', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (385, 'albania', '阿尔巴尼亚(Posta shqipatre)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (386, 'aliexpress', '无忧物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (387, 'amazoncnorder', '亚马逊中国订单', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (388, 'amcnorder', 'amazon-国内订单', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (389, 'amusorder', 'amazon-国际订单', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (390, 'anjiatongcheng', '安家同城快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (391, 'anjie88', '安捷物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (392, 'anjiekuaidi', '青岛安捷快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (393, 'anlexpress', '新干线快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (394, 'aolau', 'AOL澳通速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (395, 'aosu', '澳速物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (396, 'apgecommerce', 'apgecommerce', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (397, 'aplus100', '美国汉邦快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (398, 'aplusex', 'Aplus物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (399, 'ariesfar', '艾瑞斯远', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (400, 'aruba', '阿鲁巴[荷兰](Post Aruba)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (401, 'auex', '澳货通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (402, 'ausbondexpress', '澳邦国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (403, 'austria', '奥地利(Austrian Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (404, 'auvanda', '中联速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (405, 'auvexpress', 'AUV国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (406, 'axexpress', '澳新物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (407, 'azerbaijan', '阿塞拜疆EMS(EMS AzerExpressPost)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (408, 'bahrain', '巴林(Bahrain Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (409, 'baishiyp', '百世云配', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (410, 'bangbangpost', '帮帮发', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (411, 'bangladesh', '孟加拉国(EMS)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (412, 'bangsongwuliu', '邦送物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (413, 'baotongkd', '宝通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (414, 'baoxianda', '报通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (415, 'barbados', '巴巴多斯(Barbados Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (416, 'bazirim', '皮牙子快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (417, 'bcwelt', 'BCWELT', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (418, 'beckygo', '佰麒快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (419, 'bee001', '蜜蜂速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (420, 'belgiumpost', '比利时(Belgium Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (421, 'belize', '伯利兹(Belize Postal)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (422, 'belpost', '白俄罗斯(Belpochta)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (423, 'benniao', '笨鸟国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (424, 'benteng', '奔腾物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (425, 'bester', '飛斯特', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (426, 'bjqywl', '青云物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (427, 'bjxsrd', '鑫锐达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (428, 'bljt56', '佰乐捷通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (429, 'bluedart', 'BlueDart', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (430, 'bmlchina', '标杆物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (431, 'bohei', '波黑(JP BH Posta)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (432, 'bolivia', '玻利维亚', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (433, 'borderguru', 'BorderGuru', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (434, 'botspost', '博茨瓦纳', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (435, 'bphchina', '速方(Sufast)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (436, 'bpostinter', '比利时国际(Bpost international)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (437, 'bqcwl', '百千诚物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (438, 'brazilposten', '巴西(Brazil Post/Correios)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (439, 'brunei', '文莱(Brunei Postal)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (440, 'byht', '展勤快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (441, 'caledonia', '新喀里多尼亚[法国](New Caledonia)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (442, 'cambodia', '柬埔寨(Cambodia Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (443, 'camekong', '到了港', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (444, 'cameroon', '喀麦隆(CAMPOST)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (445, 'campbellsexpress', 'Campbell’s Express', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (446, 'canhold', '能装能送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (447, 'canpostfr', '加拿大邮政', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (448, 'cargolux', '卢森堡航空', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (449, 'cbo56', '钏博物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (450, 'ccd', '河南次晨达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (451, 'cces', 'CCES/国通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (452, 'cdek', 'CDEK', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (453, 'cdjx56', '捷祥物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (454, 'cdxinchen56', '鑫宸物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (455, 'ceskaposta', '捷克(?eská po?ta)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (456, 'cevalogistics', 'CEVA Logistic', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (457, 'cex', '城铁速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (458, 'cfss', '银雁专送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (459, 'changwooair', '昌宇国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (460, 'chengda', '成达国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (461, 'chengji', '城际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (462, 'chengpei', '河北橙配', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (463, 'chile', '智利(Correos Chile)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (464, 'chinasqk', 'SQK国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (465, 'chinastarlogistics', '华欣物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (466, 'chinatzx', '同舟行物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (467, 'chllog', '嘉荣物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (468, 'chronopostfra', '法国大包、EMS-法文(Chronopost France)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (469, 'chronopostfren', '法国大包、EMS-英文(Chronopost France)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (470, 'cht361', '诚和通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (471, 'chunfai', '中国香港骏辉物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (472, 'city56', '城市映急', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (473, 'citylink', 'City-Link', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (474, 'citysprint', 'citysprint', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (475, 'cjkoreaexpress', '大韩通运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (476, 'ckeex', '城晓国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (477, 'cloudexpress', 'CE易欧通国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (478, 'clsp', 'CL日中速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (479, 'cnair', 'CNAIR', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (480, 'cncexp', 'C&C国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (481, 'cneulogistics', '中欧物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (482, 'cnup', 'CNUP 中联邮', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (483, 'cnws', '中国翼', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (484, 'colombia', '哥伦比亚(4-72 La Red Postal de Colom', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (485, 'correios', '莫桑比克(Correios de Moçambique)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (486, 'correo', '乌拉圭(Correo Uruguayo)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (487, 'correoargentino', '阿根廷(Correo Argentina)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (488, 'correos', '哥斯达黎加(Correos de Costa Rica)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (489, 'cpsair', '华中快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (490, 'cqxingcheng', '重庆星程快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (491, 'crossbox', '环旅快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (492, 'csxss', '新时速物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (493, 'ctoexp', '泰国中通CTO', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (494, 'cypruspost', '塞浦路斯(Cyprus Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (495, 'czwlyn', '云南诚中物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (496, 'dadaoex', '大道物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (497, 'dande56', '丹递56', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (498, 'dasu', '达速物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (499, 'dcs', 'DCS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (500, 'dechuangwuliu', '深圳德创物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (501, 'decnlh', '德中快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (502, 'deltec', 'Deltec Courier', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (503, 'desworks', '澳行快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (504, 'dfkuaidi', '东风快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (505, 'dfpost', '达方物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (506, 'dhlhk', 'DHL HK', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (507, 'dhlnetherlands', 'DHL-荷兰(DHL Netherlands)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (508, 'dhlpoland', 'DHL-波兰(DHL Poland)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (509, 'di5pll', '递五方云仓', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (510, 'diantongkuaidi', '店通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (511, 'dianyi', '云南滇驿物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (512, 'dindon', '叮咚澳洲转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (513, 'dingdong', '叮咚快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (514, 'directlink', 'Direct Link', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (515, 'disifangau', '递四方澳洲', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (516, 'disifangus', '递四方美国', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (517, 'djy56', '天翔东捷运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (518, 'donghanwl', '东瀚物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (519, 'donghong', '东红物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (520, 'dongjun', '成都东骏物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (521, 'dpdgermany', 'DPD Germany', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (522, 'dpdpoland', 'DPD Poland', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (523, 'dpduk', 'DPD UK', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (524, 'dtdcindia', 'DTDC India', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (525, 'duodao56', 'duodao56', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (526, 'ealceair', '东方航空物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (527, 'easyexpress', 'EASY EXPRESS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (528, 'ecallturn', 'E跨通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (529, 'ecfirstclass', 'EC-Firstclass', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (530, 'ecmsglobal', 'ECMS Express', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (531, 'ecotransite', '东西E全运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (532, 'ecuador', '厄瓜多尔(Correos del Ecuador)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (533, 'edaeuexpress', '易达快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (534, 'edragon', '龙象国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (535, 'edtexpress', 'e直运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (536, 'efspost', 'EFSPOST', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (537, 'egypt', '埃及(Egypt Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (538, 'eiffel', '艾菲尔国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (539, 'el56', '易联通达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (540, 'elta', '希腊包裹(ELTA Hellenic Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (541, 'eltahell', '希腊EMS(ELTA Courier)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (542, 'emirates', '阿联酋(Emirates Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (543, 'emms', '澳州顺风快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (544, 'emonitoring', '波兰小包(Poczta Polska)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (545, 'emssouthafrica', '南非EMS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (546, 'emsukraine', '乌克兰EMS(EMS Ukraine)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (547, 'emsukrainecn', '乌克兰EMS-中文(EMS Ukraine)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (548, 'england', '英国(大包,EMS)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (549, 'epspost', '联众国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (550, 'esinotrans', '中外运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (551, 'estafeta', 'Estafeta', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (552, 'estes', 'Estes', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (553, 'eta100', '易达国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (554, 'ethiopia', '埃塞俄比亚(Ethiopian postal)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (555, 'eucnrail', '中欧国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (556, 'eucpost', '德国 EUC POST', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (557, 'euexpress', 'EU-EXPRESS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (558, 'euguoji', '易邮国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (559, 'europe8', '败欧洲', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (560, 'europeanecom', 'europeanecom', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (561, 'eusacn', '优莎速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (562, 'excocotree', '可可树美中速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (563, 'expressplus', '澳洲新干线快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (564, 'ezhuanyuan', '易转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (565, 'fandaguoji', '颿达国际快递-英文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (566, 'fanyukuaidi', '凡宇快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (567, 'fardarww', '颿达国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (568, 'fastontime', '加拿大联通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (569, 'fastway', 'Fastway Ireland', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (570, 'fastzt', '正途供应链', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (571, 'fbkd', '飞邦快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (572, 'fedexuk', 'FedEx-英国件(FedEx UK)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (573, 'fedexukcn', 'FedEx-英国件', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (574, 'fedroad', 'FedRoad 联邦转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (575, 'feihukuaidi', '飞狐快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (576, 'feikuaida', '飞快达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (577, 'fenghuangkuaidi', '凤凰快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (578, 'fengyee', '丰羿', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (579, 'fiji', '斐济(Fiji Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (580, 'finland', '芬兰(Itella Posti Oy)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (581, 'flowerkd', '花瓣转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (582, 'flysman', '飞力士物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (583, 'fourpxus', '四方格', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (584, 'fox', 'FOX国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (585, 'freakyquick', 'FQ狂派速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (586, 'fsexp', '全速快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (587, 'ftlexpress', '法翔速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (588, 'fyex', '飞云快递系统', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (589, 'gaotieex', '高铁快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (590, 'gaticn', 'Gati-中文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (591, 'gatien', 'Gati-英文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (592, 'gatikwe', 'Gati-KWE', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (593, 'gdct56', '广东诚通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (594, 'gdqwwl', '全网物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (595, 'gdrz58', '容智快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (596, 'gdxp', '新鹏快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (597, 'ge2d', 'GE2D跨境物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (598, 'georgianpost', '格鲁吉亚(Georgian Pos)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (599, 'ghl', '环创物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (600, 'ghtexpress', 'GHT物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (601, 'gibraltar', '直布罗陀[英国]( Royal Gibraltar Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (602, 'gjwl', '冠捷物流 ', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (603, 'globaltracktrace', 'globaltracktrace', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (604, 'gls', 'GLS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (605, 'gml', '英脉物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (606, 'goldjet', '高捷快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (607, 'gongsuda', '共速达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (608, 'gooday365', '日日顺智慧物联', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (609, 'greenland', '格陵兰[丹麦](TELE Greenland A/S)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (610, 'grivertek', '潍鸿', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (611, 'gscq365', '哥士传奇速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (612, 'gswtkd', '万通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (613, 'gtgogo', 'GT国际快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (614, 'gtongsudi', '广通速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (615, 'gttexpress', 'GTT EXPRESS快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (616, 'guangdongtonglu', '广东通路', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (617, 'guanting', '冠庭国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (618, 'guosong', '国送快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (619, 'gvpexpress', '宏观国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (620, 'gxwl', '光线速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (621, 'gzxingcheng', '贵州星程快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (622, 'haihongmmb', '海红for买卖宝', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (623, 'haihongwangsong', '海红网送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (624, 'haimengsudi', '海盟速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (625, 'haiwaihuanqiu', '海外环球', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (626, 'haixingqiao', '海星桥快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (627, 'haizhongzhuanyun', '海中转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (628, 'handboy', '汉邦国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (629, 'hanfengjl', '翰丰快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (630, 'hangrui', '上海航瑞货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (631, 'hangyu', '航宇快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (632, 'haoyoukuai', '好又快物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (633, 'happylink', '开心快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (634, 'haypost', '亚美尼亚(Haypost-Armenian Postal)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (635, 'hdcexpress', '汇达物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (636, 'hengrui56', '恒瑞物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (637, 'hexinexpress', '合心速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (638, 'hgy56', '环国运物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (639, 'hhair56', '华瀚快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (640, 'highsince', 'Highsince', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (641, 'hitaoe', 'Hi淘易快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (642, 'hjs', '猴急送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (643, 'hkposten', '中国香港(HongKong Post)英文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (644, 'hlkytj', '互联快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (645, 'hlpgyl', '共联配', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (646, 'hltop', '海联快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (647, 'hmus', '华美快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (648, 'hnfy', '飞鹰物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (649, 'hnqst', '河南全速通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (650, 'hnssd56', '顺时达物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (651, 'hnzqwl', '中强物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (652, 'homecourier', '如家国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (653, 'homexpress', '居家通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (654, 'hongbeixin', '红背心', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (655, 'hongjie', '宏捷国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (656, 'hongpinwuliu', '宏品物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (657, 'hongywl', '红远物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (658, 'hqtd', '环球通达 ', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (659, 'hrbzykd', '卓烨快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (660, 'hre', '高铁速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (661, 'hrvatska', '克罗地亚(Hrvatska Posta)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (662, 'hsgtsd', '海硕高铁速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (663, 'htongexpress', '华通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (664, 'htwd', '华通务达物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (665, 'huada', '华达快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (666, 'huandonglg', '环东物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (667, 'huanqiuabc', '中国香港环球快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (668, 'huiqiangkuaidi', '汇强快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (669, 'humpline', '驼峰国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (670, 'hungary', '匈牙利(Magyar Posta)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (671, 'huoban', '兰州伙伴物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (672, 'hutongwuliu', '户通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (673, 'hyeship', '鸿远物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (674, 'hyk', '上海昊宏国际货物', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (675, 'hyytes', '恒宇运通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (676, 'hzpl', '华航快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (677, 'iceland', '冰岛(Iceland Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (678, 'idada', '大达物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (679, 'iexpress', 'iExpress', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (680, 'ilogen', 'logen路坚', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (681, 'ilyang', 'ILYANG', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (682, 'imlb2c', '艾姆勒', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (683, 'india', '印度(India Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (684, 'indonesia', '印度尼西亚EMS(Pos Indonesia-EMS)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (685, 'inposdom', '多米尼加(INPOSDOM – Instituto Postal', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (686, 'interlink', 'Interlink Express', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (687, 'iparcel', 'UPS i-parcel', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (688, 'iran', '伊朗(Iran Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (689, 'israelpost', '以色列(Israel Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (690, 'italysad', 'Italy SDA', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (691, 'iyoungspeed', '驿扬国际速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (692, 'jamaicapost', '牙买加(Jamaica Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (693, 'jcex', 'jcex', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (694, 'jdexpressusa', '骏达快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (695, 'jdiex', 'JDIEX', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (696, 'jdpplus', '急递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (697, 'jerseypost', '泽西岛', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (698, 'jetexpressgroup', '澳速通国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (699, 'jiajiatong56', '佳家通货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (700, 'jiajiawl', '加佳物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (701, 'jiazhoumao', '加州猫速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (702, 'jieanda', '捷安达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (703, 'jiguang', '极光转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (704, 'jinchengwuliu', '锦程物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (705, 'jindawuliu', '金大物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (706, 'jintongkd', '劲通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (707, 'jinyuekuaidi', '晋越快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (708, 'jisu', '冀速物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (709, 'jiugong', '九宫物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (710, 'jiuyicn', '久易快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (711, 'jixianda', '急先达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (712, 'jixiangyouau', '吉祥邮(澳洲)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (713, 'jjx888', '佳捷翔物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (714, 'jordan', '约旦(Jordan Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (715, 'jsexpress', '骏绅物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (716, 'juding', '聚鼎物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (717, 'junfengguoji', '骏丰国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (718, 'juwu', '聚物物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (719, 'juzhongda', '聚中大', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (720, 'kaolaexpress', '考拉国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (721, 'kazpost', '哈萨克斯坦(Kazpost)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (722, 'kejie', '科捷物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (723, 'kenya', '肯尼亚(POSTA KENYA)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (724, 'kerrytj', '嘉里大荣物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (725, 'keypon', '启邦国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (726, 'kfwnet', '快服务', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (727, 'khzto', '柬埔寨中通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (728, 'kingfreight', '货运皇', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (729, 'kjde', '跨境直邮通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (730, 'koalaexp', '考拉速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (731, 'koali', '番薯国际货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (732, 'koreapost', '韩国(Korea Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (733, 'koreapostcn', '韩国邮政', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (734, 'koreapostkr', '韩国邮政韩文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (735, 'krtao', '淘韩国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (736, 'ksudi', '快速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (737, 'kuai8', '快8速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (738, 'kuaidawuliu', '快达物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (739, 'kuaitao', '快淘快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (740, 'kuaiyouda', '四川快优达速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (741, 'kxda', '凯信达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (742, 'kyrgyzpost', '吉尔吉斯斯坦(Kyrgyz Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (743, 'kyue', '跨跃国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (744, 'lanbiaokuaidi', '蓝镖快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (745, 'landmarkglobal', 'Landmark Global', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (746, 'lanhukuaidi', '蓝弧快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (747, 'lao', '老挝(Lao Express) ', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (748, 'laposte', '塞内加尔', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (749, 'lasy56', '林安物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (750, 'latvia', '拉脱维亚(Latvijas Pasts)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (751, 'lbbk', '立白宝凯物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (752, 'ldxpres', '林道国际快递-英文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (753, 'ledaowuliu', '楽道物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (754, 'ledii', '乐递供应链', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (755, 'leopard', '云豹国际货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (756, 'lesotho', '莱索托(Lesotho Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (757, 'letseml', '美联快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (758, 'lgs', 'lazada', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (759, 'lianbangkuaidien', '联邦快递-英文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (760, 'lianyun', '联运快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (761, 'libanpost', '黎巴嫩(Liban Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (762, 'linex', 'Linex', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (763, 'lishi', '丽狮物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (764, 'lithuania', '立陶宛(Lietuvos pa?tas)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (765, 'littlebearbear', '小熊物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (766, 'lmfex', '良藤国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (767, 'logistics', '華信物流WTO', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (768, 'longlangkuaidi', '隆浪快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (769, 'longvast', '长风物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (770, 'lqht', '恒通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (771, 'ltexp', '乐天速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (772, 'ltparcel', '联通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (773, 'luckyfastex', '吉捷国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (774, 'lundao', '论道国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (775, 'lutong', '鲁通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (776, 'luxembourg', '卢森堡(Luxembourg Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (777, 'lwe', 'LWE', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (778, 'macao', '中国澳门(Macau Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (779, 'macedonia', '马其顿(Macedonian Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (780, 'mailikuaidi', '麦力快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (781, 'mailongdy', '迈隆递运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (782, 'malaysiaems', '马来西亚大包、EMS(Malaysia Post(parcel,', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (783, 'malaysiapost', '马来西亚小包(Malaysia Post(Registered)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (784, 'maldives', '马尔代夫(Maldives Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (785, 'malta', '马耳他(Malta Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (786, 'mangguo', '芒果速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (787, 'mapleexpress', '今枫国际快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (788, 'mauritius', '毛里求斯(Mauritius Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (789, 'maxeedexpress', '澳洲迈速快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (790, 'mchy', '木春货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (791, 'meibang', '美邦国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (792, 'meidaexpress', '美达快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (793, 'meitai', '美泰物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (794, 'meixi', '美西快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (795, 'mexico', '墨西哥(Correos de Mexico)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (796, 'mexicodenda', 'Mexico Senda Express', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (797, 'milkyway', '银河物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (798, 'minbangsudi', '民邦速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (799, 'mjexp', '美龙快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (800, 'mmlogi', '猛犸速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (801, 'mongolpost', '蒙古国(Mongol Post) ', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (802, 'montenegro', '黑山(Posta Crne Gore)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (803, 'morocco', '摩洛哥 ( Morocco Post )', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (804, 'mrw', 'MRW', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (805, 'multipack', 'Mexico Multipack', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (806, 'mxe56', '中俄速通(淼信)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (807, 'nalexpress', '新亚物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (808, 'namibia', '纳米比亚(NamPost)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (809, 'nedahm', '红马速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (810, 'nederlandpost', '荷兰速递(Nederland Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (811, 'nell', '尼尔快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (812, 'nepalpost', '尼泊尔(Nepal Postal Services)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (813, 'newgistics', 'Newgistics', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (814, 'nigerianpost', '尼日利亚(Nigerian Postal)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (815, 'niuzaiexpress', '牛仔速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (816, 'njhaobo', '浩博物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (817, 'nle', 'NLE', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (818, 'nlebv', '亚欧专线', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (819, 'nmhuahe', '华赫物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (820, 'nntengda', '腾达速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (821, 'novaposhta', 'Nova Poshta', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (822, 'nuoer', '诺尔国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (823, 'nuoyaao', '偌亚奥国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (824, 'nzzto', '新西兰中通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (825, 'ocaargen', 'OCA Argentina', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (826, 'oman', '阿曼(Oman Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (827, 'omniva', '爱沙尼亚(Eesti Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (828, 'ontrac', 'OnTrac', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (829, 'onway', '昂威物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (830, 'opek', 'OPEK', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (831, 'overseaex', '波音速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (832, 'pakistan', '巴基斯坦(Pakistan Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (833, 'paraguay', '巴拉圭(Correo Paraguayo)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (834, 'parcelchina', '诚一物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (835, 'parcelforcecn', '英国邮政大包EMS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (836, 'pcaexpress', 'PCA Express', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (837, 'pdstow', '全球速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (838, 'peex', '派尔快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (839, 'peisihuoyunkuaidi', '配思货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (840, 'peixingwuliu', '陪行物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (841, 'pengcheng', '鹏程快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (842, 'peru', '秘鲁(SERPOST)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (843, 'pinsuxinda', '品速心达快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (844, 'pinxinkuaidi', '品信快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (845, 'pioneer', '先锋国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (846, 'pmt0704be', '龙行天下', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (847, 'pochta', '俄罗斯邮政(Russian Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (848, 'polarisexpress', '北极星快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (849, 'portugalctt', '葡萄牙(Portugal CTT)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (850, 'portugalseur', 'Portugal Seur', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (851, 'posta', '坦桑尼亚(Tanzania Posts Corporation)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (852, 'postelbe', 'PostElbe', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (853, 'postenab', 'PostNord(Posten AB)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (854, 'postennorge', '挪威(Posten Norge)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (855, 'postpng', '巴布亚新几内亚(PNG Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (856, 'ptt', '土耳其', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (857, 'pzhjst', '急顺通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (858, 'qdants', 'ANTS EXPRESS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (859, 'qesd', '7E速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (860, 'qhxykd', '雪域快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (861, 'qhxyyg', '雪域易购', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (862, 'qianli', '千里速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (863, 'qichen', '启辰国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (864, 'qpost', '卡塔尔(Qatar Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (865, 'qskdyxgs', '千顺快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (866, 'quanchuan56', '全川物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (867, 'quanjitong', '全际通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (868, 'quantium', 'Quantium', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (869, 'quantwl', '全通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (870, 'quanxintong', '全信通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (871, 'qzx56', '全之鑫物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (872, 'redexpress', 'Red Express', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (873, 'republic', '叙利亚(Syrian Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (874, 'rhtexpress', '睿和泰速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (875, 'riyuwuliu', '日昱物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (876, 'rokin', '荣庆物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (877, 'romanian', '罗马尼亚(Posta Romanian)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (878, 'rpx', 'rpx', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (879, 'rrskx', '日日顺快线', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (880, 'rrthk', '日日通国际', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (881, 'rwanda', '卢旺达(Rwanda i-posita)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (882, 's2c', 'S2C', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (883, 'safexpress', 'Safexpress', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (884, 'saiaodimmb', '赛澳递for买卖宝', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (885, 'samoa', '萨摩亚(Samoa Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (886, 'santaisudi', '三态速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (887, 'saudipost', '沙特阿拉伯(Saudi Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (888, 'sccod', '丰程物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (889, 'scic', '中加国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (890, 'scsujiada', '速佳达快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (891, 'scxingcheng', '四川星程快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (892, 'sczpds', '速呈', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (893, 'sd138', '泰国138国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (894, 'sdsy888', '首达速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (895, 'selektvracht', 'Selektvracht', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (896, 'serbia', '塞尔维亚(PE Post of Serbia)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (897, 'seur', 'International Seur', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (898, 'sfau', '澳丰速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (899, 'sfift', '十方通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (900, 'sfjhd', '圣飞捷快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (901, 'sfpost', '曹操到', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (902, 'shanda56', '衫达快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (903, 'shanghaikuaitong', '上海快通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (904, 'shanghaiwujiangmmb', '上海无疆for买卖宝', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (905, 'shangtuguoji', '尚途国际货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (906, 'shaoke', '捎客物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (907, 'shd56', '商海德物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (908, 'shenganwuliu', '圣安物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (909, 'shengtongscm', '盛通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (910, 'shenjun', '神骏物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (911, 'shenma', '神马快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (912, 'shiningexpress', '阳光快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (913, 'shipbyace', '王牌快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (914, 'shipsoho', '苏豪快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (915, 'shiyunkuaidi', '世运快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (916, 'shlexp', 'SHL畅灵国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (917, 'shpostwish', 'wish邮', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (918, 'shunbang', '顺邦国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (919, 'shunfengtongcheng', '顺丰同城', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (920, 'shunjieda', '顺捷达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (921, 'shunshid', '顺士达速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (922, 'signedexpress', '签收快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (923, 'sihaiet', '四海快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (924, 'sihiexpress', '四海捷运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (925, 'sinoairinex', '中外运空运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (926, 'sinoex', '中外运速递-中文', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (927, 'siodemka', 'Siodemka', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (928, 'sixroad', '易普递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (929, 'skynet', 'skynet', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (930, 'skynetworldwide', 'skynetworldwide', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (931, 'skypost', '荷兰Sky Post', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (932, 'slovak', '斯洛伐克(Slovenská Posta)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (933, 'slpost', '斯里兰卡(Sri Lanka Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (934, 'sofast56', '嗖一下同城快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (935, 'southafrican', '南非(South African Post Office)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (936, 'speeda', '行必达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (937, 'speedoex', '申必达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (938, 'speedpost', '新加坡EMS、大包(Singapore Speedpost)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (939, 'staky', '首通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (940, 'starex', '星速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (941, 'staryvr', '星运快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (942, 'stkd', '顺通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (943, 'subaoex', '速豹', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (944, 'sucheng', '速呈宅配', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (945, 'sucmj', '特急便物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (946, 'sudapost', '苏丹(Sudapost)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (947, 'sufengkuaidi', '速风快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (948, 'suijiawuliu', '穗佳物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (949, 'sujievip', '郑州速捷', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (950, 'sunspeedy', '新速航', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (951, 'superoz', '速配欧翼', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (952, 'supinexpress', '速品快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (953, 'swisspostcn', '瑞士邮政', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (954, 'szdpex', '深圳DPEX', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (955, 'szuem', '联运通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (956, 'taijin', '泰进物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (957, 'taimek', '天美快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (958, 'tanzania', '坦桑尼亚(Tanzania Posts)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (959, 'tcixps', 'TCI XPS', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (960, 'tcxbthai', 'TCXB国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (961, 'tdcargo', 'TD Cargo', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (962, 'thailand', '泰国(Thailand Thai Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (963, 'thaizto', '泰国中通ZTO', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (964, 'thunderexpress', '加拿大雷霆快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (965, 'tianxiang', '天翔快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (966, 'tianzong', '天纵物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (967, 'timedg', '万家通快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (968, 'tlky', '天联快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (969, 'tmg', '株式会社T.M.G', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (970, 'tmwexpress', '明达国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (971, 'tntitaly', 'TNT Italy', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (972, 'tntpostcn', 'TNT Post', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (973, 'tntuk', 'TNT UK', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (974, 'tny', 'TNY物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (975, 'tongdaxing', '通达兴物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (976, 'tonghetianxia', '通和天下', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (977, 'topshey', '顶世国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (978, 'ttkeurope', '天天欧洲物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (979, 'tunisia', '突尼斯EMS(Rapid-Poste)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (980, 'turtle', '海龟国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (981, 'uex', 'UEX国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (982, 'uexiex', '欧洲UEX', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (983, 'uganda', '乌干达(Posta Uganda)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (984, 'ugoexpress', '邮鸽速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (985, 'uhi', '优海国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (986, 'ukraine', '乌克兰小包、大包(UkrPoshta)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (987, 'ukrpost', '乌克兰小包、大包(UkrPost)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (988, 'ukrpostcn', '乌克兰邮政包裹', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (989, 'uluckex', '优联吉运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (990, 'upsfreight', 'UPS Freight', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (991, 'upsmailinno', 'UPS Mail Innovations', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (992, 'uschuaxia', '华夏国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (993, 'uspscn', 'USPSCN', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (994, 'utaoscm', 'UTAO优到', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (995, 'uzbekistan', '乌兹别克斯坦(Post of Uzbekistan)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (996, 'vangenexpress', '万庚国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (997, 'vanuatu', '瓦努阿图(Vanuatu Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (998, 'vctrans', '越中国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (999, 'vietnam', '越南小包(Vietnam Posts)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1000, 'vipexpress', '鹰运国际速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1001, 'vnpost', '越南EMS(VNPost Express)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1002, 'vps', '维普恩物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1003, 'wanboex', '万博快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1004, 'wandougongzhu', '豌豆物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1005, 'wanjiatong', '宁夏万家通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1006, 'wdm', '万达美', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1007, 'wenjiesudi', '文捷航空', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1008, 'westwing', '西翼物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1009, 'wexpress', '威速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1010, 'whgjkd', '香港伟豪国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1011, 'winit', '万邑通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1012, 'wlfast', '凡仕特物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1013, 'wowvip', '沃埃家', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1014, 'wtdchina', '威时沛运货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1015, 'wtdex', 'WTD海外通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1016, 'wuliuky', '五六快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1017, 'wuyuansudi', '伍圆速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1018, 'wygj168', '万运国际快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1019, 'wykjt', '51跨境通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1020, 'wzhaunyun', '微转运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1021, 'xdshipping', '国晶物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1022, 'xflt56', '蓝天物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1023, 'xianchengliansudi', '西安城联速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1024, 'xiangdawuliu', '湘达物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1025, 'xianglongyuntong', '祥龙运通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1026, 'xiaocex', '小C海淘', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1027, 'xilaikd', '西安喜来快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1028, 'xingyuankuaidi', '新元快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1029, 'xinning', '新宁物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1030, 'xipost', '西邮寄', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1031, 'xiyoug', '西游寄', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1032, 'xsrd', '鑫世锐达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1033, 'xtb', '鑫通宝物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1034, 'xyd666', '鑫远东速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1035, 'yamaxunwuliu', '亚马逊中国', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1036, 'yatfai', '一辉物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1037, 'ycgglobal', 'YCG物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1038, 'ycgky', '远成快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1039, 'ydglobe', '云达通', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1040, 'ydhex', 'YDH', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1041, 'yemen', '也门(Yemen Post)', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1042, 'yhtlogistics', '宇航通物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1043, 'yibangwuliu', '一邦速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1044, 'yidihui', '驿递汇速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1045, 'yiex', '宜送物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1046, 'yifankd', '艺凡快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1047, 'yihangmall', '易航物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1048, 'yilingsuyun', '亿领速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1049, 'yingchao', '英超物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1050, 'yinjiesudi', '银捷速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1051, 'yiouzhou', '易欧洲国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1052, 'yiqiguojiwuliu', '一柒国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1053, 'yiqisong', '一起送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1054, 'yishunhang', '亿顺航', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1055, 'yisong', '宜送', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1056, 'yitongda', '易通达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1057, 'yiyou', '易邮速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1058, 'yjhgo', '武汉优进汇', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1059, 'ykouan', '洋口岸', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1060, 'ynztsy', '纵通速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1061, 'yodel', 'YODEL', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1062, 'yongbangwuliu', '永邦国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1063, 'youjia', '友家速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1064, 'youlai', '邮来速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1065, 'yourscm', '雅澳物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1066, 'ypsd', '壹品速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1067, 'ytky168', '运通快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1068, 'yuandun', '远盾物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1069, 'yuanhhk', '远航国际快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1070, 'yue777', '玥玛速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1071, 'yuezhongsh', '粤中国际货运代理(上海)有限公司', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1072, 'yufeng', '御风速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1073, 'yujiawl', '宇佳物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1074, 'yundaexus', '美国云达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1075, 'yunexpress', '德国云快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1076, 'yuntong', '运通速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1077, 'yuntongkuaidi', '运通中港', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1078, 'ywexpress', '远为快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1079, 'yyexp', '西安运逸快递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1080, 'yyqc56', '一运全成物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1081, 'yzswuliu', '亚洲顺物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1082, 'zdepost', '直德邮', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1083, 'zenzen', '三三国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1084, 'zf365', '珠峰速运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1085, 'zhdwl', '众辉达物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1086, 'zhitengwuliu', '志腾物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1087, 'zhongtianwanyun', '中天万运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1088, 'zhongwaiyun', '中外运速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1089, 'zhongxinda', '忠信达', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1090, 'zhpex', '众派速递', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1091, 'zhuoshikuaiyun', '卓实快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1092, 'zjcy56', '创运物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1093, 'zjgj56', '振捷国际货运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1094, 'zsda56', '转瞬达集运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1095, 'zsky123', '准实快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1096, 'zsmhwl', '明辉物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1097, 'zteexpress', 'ZTE中兴物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1098, 'ztjieda', '泰捷达国际物流', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1099, 'zy100', '中远快运', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1100, 'zyzoom', '增速跨境 ', 0, 0, 0, '', '', '', 0, 1, 1); INSERT INTO `eb_express` (`id`, `code`, `name`, `partner_id`, `partner_key`, `net`, `account`, `password`, `net_name`, `sort`, `is_show`, `status`) VALUES (1101, 'fengwang', '丰网速运', 1, 1, 0, '', '', '', 0, 1, 0); COMMIT; -- ---------------------------- -- Table structure for eb_marketing_activity -- ---------------------------- DROP TABLE IF EXISTS `eb_marketing_activity`; CREATE TABLE `eb_marketing_activity` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '活动ID', `name` varchar(50) NOT NULL DEFAULT '0' COMMENT '活动名称', `is_open` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否开启:0-未开启,1-已开启', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '活动展示类型:1-轮播列表,2-大小格,3-大图模式', `sort` int(5) NOT NULL DEFAULT '999' COMMENT '排序', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0未删除1已删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `banner` varchar(2000) NOT NULL DEFAULT '' COMMENT '活动banner', `instruction` varchar(255) NOT NULL DEFAULT '' COMMENT '活动简介', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='营销活动表'; -- ---------------------------- -- Records of eb_marketing_activity -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_merchant -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant`; CREATE TABLE `eb_merchant` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '商户ID', `name` varchar(50) NOT NULL COMMENT '商户名称', `category_id` int(11) NOT NULL COMMENT '商户分类ID', `type_id` int(11) NOT NULL COMMENT '商户类型ID', `real_name` varchar(50) NOT NULL COMMENT '商户姓名', `email` varchar(255) NOT NULL DEFAULT '' COMMENT '商户邮箱', `phone` varchar(255) NOT NULL DEFAULT '' COMMENT '商户手机号', `handling_fee` int(3) NOT NULL COMMENT '手续费(%)', `keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '商户关键字', `province` varchar(64) NOT NULL DEFAULT '' COMMENT '省', `city` varchar(64) NOT NULL DEFAULT '' COMMENT '市', `district` varchar(64) NOT NULL DEFAULT '' COMMENT '区', `address_detail` varchar(255) NOT NULL DEFAULT '' COMMENT '商户详细地址', `latitude` varchar(25) NOT NULL DEFAULT '' COMMENT '纬度', `longitude` varchar(25) NOT NULL DEFAULT '' COMMENT '经度', `is_self` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否自营:0-自营,1-非自营', `is_recommend` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否推荐:0-不推荐,1-推荐', `is_switch` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '商户开关:0-关闭,1-开启', `product_switch` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '商品审核开关:0-关闭,1-开启', `is_take_their` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '自提开关:0-关闭,1-开启', `remark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注', `qualification_picture` varchar(2000) NOT NULL DEFAULT '' COMMENT '资质图片', `back_image` varchar(255) NOT NULL DEFAULT '' COMMENT '商户背景图', `avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '商户头像', `rectangle_logo` varchar(255) NOT NULL DEFAULT '' COMMENT '商户logo(横)', `cover_image` varchar(255) NOT NULL DEFAULT '' COMMENT '商户封面图', `street_back_image` varchar(255) NOT NULL DEFAULT '' COMMENT '商户街背景图', `intro` varchar(255) NOT NULL DEFAULT '' COMMENT '商户简介', `copy_product_num` int(11) NOT NULL DEFAULT '0' COMMENT '复制商品数量', `balance` decimal(12,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商户余额', `star_level` int(2) NOT NULL DEFAULT '4' COMMENT '商户星级1-5', `pc_banner` varchar(2000) NOT NULL DEFAULT '' COMMENT 'pcBanner', `pc_back_image` varchar(500) NOT NULL DEFAULT '' COMMENT 'pc背景图', `sort` int(4) unsigned NOT NULL DEFAULT '0' COMMENT '排序', `create_type` varchar(255) NOT NULL COMMENT '商户创建类型:admin-管理员创建,apply-商户入驻申请', `create_id` int(11) NOT NULL DEFAULT '0' COMMENT '创建商户管理员ID', `admin_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联管理账号ID', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户表'; -- ---------------------------- -- Records of eb_merchant -- ---------------------------- BEGIN; INSERT INTO `eb_merchant` (`id`, `name`, `category_id`, `type_id`, `real_name`, `email`, `phone`, `handling_fee`, `keywords`, `province`, `city`, `district`, `address_detail`, `latitude`, `longitude`, `is_self`, `is_recommend`, `is_switch`, `product_switch`, `is_take_their`, `remark`, `qualification_picture`, `back_image`, `avatar`, `rectangle_logo`, `cover_image`, `street_back_image`, `intro`, `copy_product_num`, `balance`, `star_level`, `pc_banner`, `pc_back_image`, `sort`, `create_type`, `create_id`, `admin_id`, `is_del`, `create_time`, `update_time`) VALUES (1, '托罗斯基', 4, 2, '托罗斯基', '', '18392723441', 0, '托罗斯基', '', '', '', '陕西省咸阳市秦都区渭阳西路21号秦都区红螺湾假日酒店(福园广场店)', '34.32908886000296', '108.69837410179142', 1, 0, 1, 0, 1, '托罗斯基 的店铺', '[\"crmebimage/public/product/2022/11/15/af569067eb53470b9479ee0e2ea03ff2zexj9790ku.png\"]', 'crmebimage/public/content/2022/11/15/f26a5415d5424932b44a89dde0d23b6b5pe2s9crc5.png', 'crmebimage/public/content/2022/11/15/12f50c26632743f8b8abbb8481449549glczlgau7z.png', 'crmebimage/public/content/2022/11/23/a373c41282e3407e96c0741bd0dd2cdcd6hay4f5p3.png', 'crmebimage/public/content/2022/11/15/f1e03c31adf441e9b5c7659d7131e635nii45o2lxt.png', 'crmebimage/public/content/2022/11/15/1656475353b648e887bdb97343cea1a5mj5rp1oxgb.png', '为尊贵的你 提供尊贵的服务', 11, 5380.01, 4, '', '', 1, 'admin', 1, 3, 0, '2022-11-15 10:23:05', '2023-02-16 19:41:00'); INSERT INTO `eb_merchant` (`id`, `name`, `category_id`, `type_id`, `real_name`, `email`, `phone`, `handling_fee`, `keywords`, `province`, `city`, `district`, `address_detail`, `latitude`, `longitude`, `is_self`, `is_recommend`, `is_switch`, `product_switch`, `is_take_their`, `remark`, `qualification_picture`, `back_image`, `avatar`, `rectangle_logo`, `cover_image`, `street_back_image`, `intro`, `copy_product_num`, `balance`, `star_level`, `pc_banner`, `pc_back_image`, `sort`, `create_type`, `create_id`, `admin_id`, `is_del`, `create_time`, `update_time`) VALUES (2, '大粽子商铺', 4, 2, '大粽子商铺', '', '18292417675', 0, '大粽子商铺', '', '', '', '江西省新余市渝水区抱石大道179号新余市工人文化宫(抱石大道)', '27.799592', '114.945647', 0, 1, 1, 1, 1, '大粽子商铺', '[\"crmebimage/public/product/2022/11/15/af569067eb53470b9479ee0e2ea03ff2zexj9790ku.png\"]', 'crmebimage/public/content/2022/11/15/f25a2cce43ba41fe94c08fb9f94d5244d950f2v11d.png', 'crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png', 'crmebimage/public/content/2022/11/23/7fef70524c0f4533aecb961cbade0aa6cmlyzk3wew.png', 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', 'crmebimage/public/content/2022/11/15/8a78f560585342ebaad8888ae005b0baf9j3ngghec.png', '大粽子专卖', 80, 111.13, 4, '', '', 1, 'admin', 1, 4, 0, '2022-11-15 10:26:18', '2023-02-16 09:42:00'); INSERT INTO `eb_merchant` (`id`, `name`, `category_id`, `type_id`, `real_name`, `email`, `phone`, `handling_fee`, `keywords`, `province`, `city`, `district`, `address_detail`, `latitude`, `longitude`, `is_self`, `is_recommend`, `is_switch`, `product_switch`, `is_take_their`, `remark`, `qualification_picture`, `back_image`, `avatar`, `rectangle_logo`, `cover_image`, `street_back_image`, `intro`, `copy_product_num`, `balance`, `star_level`, `pc_banner`, `pc_back_image`, `sort`, `create_type`, `create_id`, `admin_id`, `is_del`, `create_time`, `update_time`) VALUES (3, 'likesshop店', 4, 2, 'likesshop店', '', '15829783472', 0, '陕北特产', '', '', '', '陕西省咸阳市渭城区人民东路122号古渡公园', '34.339006', '108.742911', 1, 1, 1, 1, 1, '陕北特产', '[\"crmebimage/public/store/2022/11/15/136b58f9ccb6447580be3d59ec163924ltmxabcj05.jpg\"]', 'crmebimage/public/content/2022/11/15/e4a6d129b7c94c84b1d177843ac22927tgnx4pgwbs.png', 'crmebimage/public/content/2022/11/17/638ec859385f4353970b09dbc570a70543g5f00l8z.png', 'crmebimage/public/content/2022/11/23/74065955347742dcb4f88fbb91ff3962kwcxiqyqhy.png', 'crmebimage/public/content/2022/11/15/b436e2e4dfde4aa2badf8729a30d7471673ujbo71g.png', 'crmebimage/public/content/2022/11/15/cf01b5c2e6de40089754a42621723a3azda6x25mup.png', '2020年,很多用户提出需要Java语言开发的商城系统,我们深刻悉察用户需求,研发出CRMEB Java版商城系统;如今,随着使用场景的丰富,用户对Java版商城系统的功能需求逐渐增多,经过公司充分考量,决定推出CRMEB Java【多商户】商城系统,以满足用户的多样需求', 0, 20.00, 4, '', '', 1, 'admin', 1, 5, 0, '2022-11-15 10:35:59', '2022-11-30 11:24:00'); COMMIT; -- ---------------------------- -- Table structure for eb_merchant_apply -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_apply`; CREATE TABLE `eb_merchant_apply` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '申请ID', `uid` int(11) NOT NULL COMMENT '申请用户ID', `name` varchar(50) NOT NULL COMMENT '商户名称', `category_id` int(11) NOT NULL COMMENT '商户分类ID', `type_id` int(11) NOT NULL COMMENT '商户类型ID', `account` varchar(255) NOT NULL DEFAULT '' COMMENT '商户账号', `password` varchar(32) NOT NULL DEFAULT '' COMMENT '登录密码', `real_name` varchar(50) NOT NULL COMMENT '商户姓名', `email` varchar(255) NOT NULL DEFAULT '' COMMENT '商户邮箱', `phone` varchar(255) NOT NULL DEFAULT '' COMMENT '商户手机号', `handling_fee` int(3) NOT NULL COMMENT '手续费(%)', `keywords` varchar(255) NOT NULL DEFAULT '' COMMENT '商户关键字', `address` varchar(255) NOT NULL DEFAULT '' COMMENT '商户地址', `is_self` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否自营:0-自营,1-非自营', `is_recommend` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否推荐:0-不推荐,1-推荐', `audit_status` int(2) unsigned NOT NULL DEFAULT '1' COMMENT '审核状态:1-待审核,2-审核通过,3-审核拒绝', `denial_reason` varchar(255) NOT NULL DEFAULT '' COMMENT '拒绝原因', `auditor_id` int(11) NOT NULL DEFAULT '0' COMMENT '审核员ID', `remark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注', `qualification_picture` varchar(2000) NOT NULL DEFAULT '' COMMENT '资质图片', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户申请表'; -- ---------------------------- -- Records of eb_merchant_apply -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_merchant_bill -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_bill`; CREATE TABLE `eb_merchant_bill` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '帐单id', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户id', `type` varchar(20) NOT NULL DEFAULT '' COMMENT '类型:pay_order-订单支付,refund_order-订单退款,settlement-结算', `link_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '关联id', `order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '关联单号', `uid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户uid,结算类型为0', `pm` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '0 = 支出 1 = 获得', `amount` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额', `mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE, KEY `pm` (`pm`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户帐单表'; -- ---------------------------- -- Records of eb_merchant_bill -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_merchant_category -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_category`; CREATE TABLE `eb_merchant_category` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '分类ID', `name` varchar(50) NOT NULL COMMENT '分类名称', `handling_fee` int(3) NOT NULL COMMENT '手续费(%)', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户分类表'; -- ---------------------------- -- Records of eb_merchant_category -- ---------------------------- BEGIN; INSERT INTO `eb_merchant_category` (`id`, `name`, `handling_fee`, `is_del`, `create_time`, `update_time`) VALUES (1, '食品零售类', 7, 0, '2022-07-29 10:25:19', '2022-07-29 10:25:19'); INSERT INTO `eb_merchant_category` (`id`, `name`, `handling_fee`, `is_del`, `create_time`, `update_time`) VALUES (2, '服装类', 1, 0, '2022-09-13 11:35:31', '2022-09-13 11:35:31'); INSERT INTO `eb_merchant_category` (`id`, `name`, `handling_fee`, `is_del`, `create_time`, `update_time`) VALUES (3, '服务类', 1, 0, '2022-09-13 11:46:57', '2022-09-13 11:46:57'); INSERT INTO `eb_merchant_category` (`id`, `name`, `handling_fee`, `is_del`, `create_time`, `update_time`) VALUES (4, '自营类', 0, 0, '2022-09-13 11:47:11', '2022-09-13 11:47:11'); COMMIT; -- ---------------------------- -- Table structure for eb_merchant_closing_record -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_closing_record`; CREATE TABLE `eb_merchant_closing_record` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户id', `closing_no` varchar(32) NOT NULL COMMENT '结算单号', `amount` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额', `closing_type` varchar(20) NOT NULL DEFAULT 'bank' COMMENT '结算类型:bank-银行卡', `closing_name` varchar(50) NOT NULL DEFAULT '' COMMENT '结算姓名', `closing_bank` varchar(50) NOT NULL DEFAULT '' COMMENT '结算银行', `closing_bank_card` varchar(30) NOT NULL DEFAULT '' COMMENT '结算银行卡号', `alipay_account` varchar(64) NOT NULL DEFAULT '' COMMENT '支付宝账号', `wechat_no` varchar(15) NOT NULL DEFAULT '' COMMENT '微信号', `payment_code` varchar(512) NOT NULL DEFAULT '' COMMENT '收款二维码', `account_status` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '到账状态:0-未到账,1-已到账', `closing_proof` varchar(1000) NOT NULL DEFAULT '' COMMENT '结算凭证', `closing_time` timestamp NULL DEFAULT NULL COMMENT '结算时间', `audit_status` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '审核状态:0-待审核,1-通过审核,2-审核失败', `refusal_reason` varchar(50) NOT NULL DEFAULT '' COMMENT '拒绝原因', `audit_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '审核员id', `audit_time` timestamp NULL DEFAULT NULL COMMENT '审核时间', `mark` varchar(255) NOT NULL DEFAULT '' COMMENT '商户备注', `platform_mark` varchar(255) NOT NULL DEFAULT '' COMMENT '平台备注', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商家结算记录表'; -- ---------------------------- -- Records of eb_merchant_closing_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_merchant_daily_statement -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_daily_statement`; CREATE TABLE `eb_merchant_daily_statement` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '帐单id', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户id', `order_pay_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '订单支付总金额', `order_num` int(10) NOT NULL DEFAULT '0' COMMENT '订单支付笔数', `order_income_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '订单收入金额', `handling_fee` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台手续费', `first_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '一级佣金金额', `second_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '二级佣金金额', `payout_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '支出总金额', `payout_num` int(10) NOT NULL DEFAULT '0' COMMENT '支出笔数', `refund_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台退款金额', `refund_num` int(10) NOT NULL DEFAULT '0' COMMENT '退款笔数', `income_expenditure` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '商户日收支', `data_date` varchar(12) NOT NULL COMMENT '日期:年-月-日', PRIMARY KEY (`id`) USING BTREE, KEY `data_date` (`data_date`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=96 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户日帐单表'; -- ---------------------------- -- Records of eb_merchant_daily_statement -- ---------------------------- BEGIN; INSERT INTO `eb_merchant_daily_statement` (`id`, `mer_id`, `order_pay_amount`, `order_num`, `order_income_amount`, `handling_fee`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_num`, `income_expenditure`, `data_date`) VALUES (1, 1, 0.00, 0, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03-02'); INSERT INTO `eb_merchant_daily_statement` (`id`, `mer_id`, `order_pay_amount`, `order_num`, `order_income_amount`, `handling_fee`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_num`, `income_expenditure`, `data_date`) VALUES (2, 2, 0.00, 0, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03-02'); INSERT INTO `eb_merchant_daily_statement` (`id`, `mer_id`, `order_pay_amount`, `order_num`, `order_income_amount`, `handling_fee`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_num`, `income_expenditure`, `data_date`) VALUES (3, 3, 0.00, 0, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03-02'); COMMIT; -- ---------------------------- -- Table structure for eb_merchant_day_record -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_day_record`; CREATE TABLE `eb_merchant_day_record` ( `id` int(11) NOT NULL AUTO_INCREMENT, `date` varchar(20) DEFAULT NULL COMMENT '日期,yyyy-MM-dd', `mer_id` int(11) DEFAULT NULL COMMENT '商户id', `visitors` int(11) DEFAULT NULL COMMENT '访客量', PRIMARY KEY (`id`) USING BTREE, KEY `date` (`date`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户日记录表'; -- ---------------------------- -- Records of eb_merchant_day_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_merchant_info -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_info`; CREATE TABLE `eb_merchant_info` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '商户信息ID', `mer_id` int(11) NOT NULL COMMENT '商户ID', `settlement_type` varchar(20) NOT NULL DEFAULT 'bank' COMMENT '结算类型:bank-银行卡,wechat-微信,alipay-支付宝', `bank_user_name` varchar(50) NOT NULL DEFAULT '' COMMENT '持卡人姓名', `bank_name` varchar(50) NOT NULL DEFAULT '' COMMENT '银行名称', `bank_card` varchar(30) NOT NULL DEFAULT '' COMMENT '银行卡号', `bank_address` varchar(256) NOT NULL DEFAULT '' COMMENT '开户地址', `wechat_code` varchar(15) NOT NULL DEFAULT '' COMMENT '微信号', `wechat_qrcode_url` varchar(512) NOT NULL DEFAULT '' COMMENT '微信收款二维码', `alipay_code` varchar(64) NOT NULL DEFAULT '' COMMENT '支付宝账号', `alipay_qrcode_url` varchar(512) DEFAULT '' COMMENT '支付宝收款二维码', `alert_stock` int(5) NOT NULL DEFAULT '0' COMMENT '警戒库存', `service_type` varchar(10) NOT NULL DEFAULT '' COMMENT '客服类型:H5-H5链接、phone-电话', `service_link` varchar(255) NOT NULL DEFAULT '' COMMENT '客服H5链接', `service_phone` varchar(100) NOT NULL DEFAULT '' COMMENT '客服电话', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `real_name` varchar(20) NOT NULL DEFAULT '' COMMENT '真实姓名', PRIMARY KEY (`id`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户信息表'; -- ---------------------------- -- Records of eb_merchant_info -- ---------------------------- BEGIN; INSERT INTO `eb_merchant_info` (`id`, `mer_id`, `settlement_type`, `bank_user_name`, `bank_name`, `bank_card`, `bank_address`, `wechat_code`, `wechat_qrcode_url`, `alipay_code`, `alipay_qrcode_url`, `alert_stock`, `service_type`, `service_link`, `service_phone`, `create_time`, `update_time`, `real_name`) VALUES (1, 1, 'bank', '董阳', '中国建设银行', '6217004111111134086', '中国建设银行长安区', '', '', '', '', 1, 'phone', '', '18392723440', '2022-11-15 10:23:05', '2022-11-15 10:38:41', ''); INSERT INTO `eb_merchant_info` (`id`, `mer_id`, `settlement_type`, `bank_user_name`, `bank_name`, `bank_card`, `bank_address`, `wechat_code`, `wechat_qrcode_url`, `alipay_code`, `alipay_qrcode_url`, `alert_stock`, `service_type`, `service_link`, `service_phone`, `create_time`, `update_time`, `real_name`) VALUES (2, 2, 'wechat', '', '', '', '', 'xbdazz', 'crmebimage/public/product/2023/02/11/8c965494539e4b16b1045071f4762e3fa7qy7b1ce1.png', '111111', 'crmebimage/public/content/2022/11/15/4c4c7d2cee6d4d5e8317d9a45f9744c0699doksxyn.png', 2, 'phone', '', '18292417675', '2022-11-15 10:26:18', '2023-02-11 11:28:25', '大粽子'); INSERT INTO `eb_merchant_info` (`id`, `mer_id`, `settlement_type`, `bank_user_name`, `bank_name`, `bank_card`, `bank_address`, `wechat_code`, `wechat_qrcode_url`, `alipay_code`, `alipay_qrcode_url`, `alert_stock`, `service_type`, `service_link`, `service_phone`, `create_time`, `update_time`, `real_name`) VALUES (3, 3, 'bank', '白卫东', '中国农业银行', '6228481111117328518', '太华路支行', '', '', '', '', 1, 'phone', '', '15829783472', '2022-11-15 10:35:59', '2022-11-15 11:36:31', ''); COMMIT; -- ---------------------------- -- Table structure for eb_merchant_month_statement -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_month_statement`; CREATE TABLE `eb_merchant_month_statement` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '帐单id', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户id', `order_pay_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '订单支付总金额', `order_num` int(10) NOT NULL DEFAULT '0' COMMENT '订单支付笔数', `order_income_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '订单收入金额', `handling_fee` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台手续费', `first_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '一级佣金金额', `second_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '二级佣金金额', `payout_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '支出总金额', `payout_num` int(10) NOT NULL DEFAULT '0' COMMENT '支出笔数', `refund_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台退款金额', `refund_num` int(10) NOT NULL DEFAULT '0' COMMENT '退款笔数', `income_expenditure` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '商户月收支', `data_date` varchar(12) NOT NULL COMMENT '日期:年-月', PRIMARY KEY (`id`) USING BTREE, KEY `data_date` (`data_date`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户月帐单表'; -- ---------------------------- -- Records of eb_merchant_month_statement -- ---------------------------- BEGIN; INSERT INTO `eb_merchant_month_statement` (`id`, `mer_id`, `order_pay_amount`, `order_num`, `order_income_amount`, `handling_fee`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_num`, `income_expenditure`, `data_date`) VALUES (1, 1, 0.00, 0, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03'); INSERT INTO `eb_merchant_month_statement` (`id`, `mer_id`, `order_pay_amount`, `order_num`, `order_income_amount`, `handling_fee`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_num`, `income_expenditure`, `data_date`) VALUES (2, 2, 0.00, 0, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03'); INSERT INTO `eb_merchant_month_statement` (`id`, `mer_id`, `order_pay_amount`, `order_num`, `order_income_amount`, `handling_fee`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_num`, `income_expenditure`, `data_date`) VALUES (3, 3, 0.00, 0, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03'); COMMIT; -- ---------------------------- -- Table structure for eb_merchant_order -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_order`; CREATE TABLE `eb_merchant_order` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单ID', `order_no` varchar(32) DEFAULT NULL COMMENT '订单号', `mer_id` int(11) unsigned NOT NULL COMMENT '商户ID', `uid` int(11) unsigned NOT NULL COMMENT '用户id', `real_name` varchar(32) NOT NULL DEFAULT '' COMMENT '收货人姓名', `user_phone` varchar(18) NOT NULL DEFAULT '' COMMENT '收货人电话', `user_address` varchar(100) NOT NULL DEFAULT '' COMMENT '收货详细地址', `total_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '订单商品总数', `pro_total_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商品总价', `total_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '邮费', `total_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单总价', `pay_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '实际支付金额', `pay_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '支付邮费', `use_integral` int(11) NOT NULL DEFAULT '0' COMMENT '使用积分', `integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '积分抵扣金额', `coupon_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '优惠券id', `coupon_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '优惠券金额', `pay_type` varchar(20) NOT NULL DEFAULT '' COMMENT '支付方式:weixin,alipay,yue', `pay_channel` varchar(20) NOT NULL DEFAULT '' COMMENT '支付渠道:public-公众号,mini-小程序,h5-网页支付,yue-余额,wechatIos-微信Ios,wechatAndroid-微信Android,alipay-支付宝,alipayApp-支付宝App', `gain_integral` int(11) NOT NULL DEFAULT '0' COMMENT '赠送积分', `user_remark` varchar(255) NOT NULL DEFAULT '' COMMENT '用户备注', `merchant_remark` varchar(255) NOT NULL DEFAULT '' COMMENT '商户备注', `shipping_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '配送方式 1=快递 ,2=门店自提', `first_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '一级返佣金额', `second_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '二级返佣金额', `commission_charge` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台手续费', `verify_code` varchar(12) NOT NULL DEFAULT '' COMMENT '核销码', `delivery_type` varchar(20) NOT NULL DEFAULT 'express' COMMENT '发货类型:express-快递,fictitious:虚拟发货', `is_split_delivery` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否拆分发货', `seckill_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '秒杀商品ID 0-非砍价商品', `bargain_user_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '用户砍价活动id 0-没有', `bargain_id` int(11) unsigned DEFAULT '0' COMMENT '砍价id 0-没有砍价', `pink_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '拼团id 0-没有拼团', `combination_id` int(11) unsigned DEFAULT '0' COMMENT '拼团商品id 0-一般商品', `clerk_id` int(11) NOT NULL DEFAULT '0' COMMENT '核销员id', `type` int(2) NOT NULL DEFAULT '0' COMMENT '订单类型:0-普通订单,1-视频号订单', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户订单表'; -- ---------------------------- -- Records of eb_merchant_order -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_merchant_product_category -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_product_category`; CREATE TABLE `eb_merchant_product_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户Id', `pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级ID', `name` varchar(100) DEFAULT NULL COMMENT '名称', `icon` varchar(255) DEFAULT NULL COMMENT 'icon', `sort` int(5) NOT NULL DEFAULT '999' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '显示状态', `is_del` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户商品分类表'; -- ---------------------------- -- Records of eb_merchant_product_category -- ---------------------------- BEGIN; INSERT INTO `eb_merchant_product_category` (`id`, `mer_id`, `pid`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (1, 2, 0, 'yifans', NULL, 1, 1, 0, '2023-02-14 11:38:02', '2023-02-14 11:38:02'); INSERT INTO `eb_merchant_product_category` (`id`, `mer_id`, `pid`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (4, 2, 1, '分类1', 'crmebimage/public/content/2022/11/23/5f9b44bde92c4de88c67ee7f4b3b5382xych7msjr1.png', 1, 1, 0, '2023-02-16 10:53:34', '2023-02-18 14:10:44'); INSERT INTO `eb_merchant_product_category` (`id`, `mer_id`, `pid`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (5, 2, 1, '分类34', 'crmebimage/public/content/2022/11/23/7fef70524c0f4533aecb961cbade0aa6cmlyzk3wew.png', 1, 1, 0, '2023-02-16 10:54:00', '2023-02-18 14:10:44'); INSERT INTO `eb_merchant_product_category` (`id`, `mer_id`, `pid`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (6, 2, 1, '分类测试1', NULL, 2, 1, 0, '2023-02-16 10:54:31', '2023-02-18 14:10:44'); INSERT INTO `eb_merchant_product_category` (`id`, `mer_id`, `pid`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (8, 2, 1, '时尚外衣', 'crmebimage/public/content/2022/11/15/daf827090e3c4c4cbcd3b30415868cfe2eedwgtc58.jpg', 1, 1, 0, '2023-02-16 16:27:52', '2023-02-18 14:10:44'); COMMIT; -- ---------------------------- -- Table structure for eb_merchant_product_guarantee_group -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_product_guarantee_group`; CREATE TABLE `eb_merchant_product_guarantee_group` ( `group_id` int(11) NOT NULL COMMENT '组合id', `gid` int(11) NOT NULL COMMENT '保障服务id', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '显示状态', PRIMARY KEY (`group_id`,`gid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户商品保障服务组合关联表'; -- ---------------------------- -- Records of eb_merchant_product_guarantee_group -- ---------------------------- BEGIN; INSERT INTO `eb_merchant_product_guarantee_group` (`group_id`, `gid`, `is_show`) VALUES (23, 3, 1); INSERT INTO `eb_merchant_product_guarantee_group` (`group_id`, `gid`, `is_show`) VALUES (23, 4, 1); COMMIT; -- ---------------------------- -- Table structure for eb_merchant_type -- ---------------------------- DROP TABLE IF EXISTS `eb_merchant_type`; CREATE TABLE `eb_merchant_type` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '分类ID', `name` varchar(50) NOT NULL COMMENT '类型名称', `info` varchar(500) NOT NULL COMMENT '类型要求说明', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商户类型表'; -- ---------------------------- -- Records of eb_merchant_type -- ---------------------------- BEGIN; INSERT INTO `eb_merchant_type` (`id`, `name`, `info`, `is_del`, `create_time`, `update_time`) VALUES (1, '厂家直营店', '厂家营业执照与联系人工作证、身份证', 0, '2022-07-29 12:23:10', '2022-07-29 12:23:10'); INSERT INTO `eb_merchant_type` (`id`, `name`, `info`, `is_del`, `create_time`, `update_time`) VALUES (2, '专卖店', '要求授权证书与经营资质', 0, '2022-09-13 11:37:58', '2022-09-13 11:37:58'); INSERT INTO `eb_merchant_type` (`id`, `name`, `info`, `is_del`, `create_time`, `update_time`) VALUES (3, '官方旗舰店', '官方有效营业执照与联系人工作证、身份证', 0, '2022-09-13 11:46:26', '2023-02-18 17:24:04'); INSERT INTO `eb_merchant_type` (`id`, `name`, `info`, `is_del`, `create_time`, `update_time`) VALUES (4, '连锁店', '有效营业执照、授权证书、营业资质', 0, '2022-10-27 10:55:58', '2023-02-18 17:24:06'); INSERT INTO `eb_merchant_type` (`id`, `name`, `info`, `is_del`, `create_time`, `update_time`) VALUES (5, '旗舰店', '有效营业执照、授权证书、营业资质、厂家营业执照与联系人工作证、身份证', 0, '2022-11-02 11:41:34', '2023-02-18 17:24:07'); INSERT INTO `eb_merchant_type` (`id`, `name`, `info`, `is_del`, `create_time`, `update_time`) VALUES (6, '星级店', ' \n有效营业执照、授权证书、营业资质、厂家营业执照与联系人工作证、身份证', 0, '2022-11-02 14:13:07', '2023-02-18 17:24:11'); INSERT INTO `eb_merchant_type` (`id`, `name`, `info`, `is_del`, `create_time`, `update_time`) VALUES (7, '加盟店', '有效营业执照,授权证书,营业资质.', 0, '2023-02-07 17:06:05', '2023-02-18 17:24:14'); COMMIT; -- ---------------------------- -- Table structure for eb_order -- ---------------------------- DROP TABLE IF EXISTS `eb_order`; CREATE TABLE `eb_order` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单ID', `order_no` varchar(32) NOT NULL COMMENT '订单号', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID,商户订单等级有值', `uid` int(11) unsigned NOT NULL COMMENT '用户id', `total_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '订单商品总数', `pro_total_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商品总价', `total_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '邮费', `total_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单总价', `coupon_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '优惠券金额', `use_integral` int(11) NOT NULL DEFAULT '0' COMMENT '使用积分', `integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '积分抵扣金额', `pay_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '实际支付金额', `pay_postage` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '支付邮费', `paid` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '支付状态', `pay_time` timestamp NULL DEFAULT NULL COMMENT '支付时间', `pay_type` varchar(32) NOT NULL DEFAULT '' COMMENT '支付方式:weixin,alipay,yue', `pay_channel` varchar(20) NOT NULL DEFAULT '' COMMENT '支付渠道:public-公众号,mini-小程序,h5-网页支付,yue-余额,wechatIos-微信Ios,wechatAndroid-微信Android,alipay-支付宝,alipayApp-支付宝App', `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '订单状态(0:待支付,1:待发货,2:部分发货, 3:待核销,4:待收货,5:已收货,6:已完成,9:已取消)', `refund_status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '退款状态:0 未退款 1 申请中 2 部分退款 3 已退款', `cancel_status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '取消状态:0-未取消,1-系统取消,2-用户取消', `is_user_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '用户是否删除', `is_merchant_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商户是否删除', `gain_integral` int(11) NOT NULL DEFAULT '0' COMMENT '赠送积分', `out_trade_no` varchar(32) NOT NULL DEFAULT '' COMMENT '商户系统内部的订单号,32个字符内、可包含字母, 其他说明见商户订单号', `redirect` varchar(500) NOT NULL DEFAULT '' COMMENT '支付重定向地址', `type` int(2) NOT NULL DEFAULT '0' COMMENT '订单类型:0-普通订单,1-视频号订单', `level` int(2) NOT NULL DEFAULT '0' COMMENT '订单等级:0-平台订单,1-商户订单', `plat_order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '平台订单号', `is_del` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `receiving_time` timestamp NULL DEFAULT NULL COMMENT '收货时间', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单表'; -- ---------------------------- -- Records of eb_order -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_order_detail -- ---------------------------- DROP TABLE IF EXISTS `eb_order_detail`; CREATE TABLE `eb_order_detail` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `order_no` varchar(32) DEFAULT NULL COMMENT '订单号', `mer_id` int(11) unsigned NOT NULL COMMENT '商户ID', `uid` int(11) unsigned NOT NULL COMMENT '用户id', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID', `product_name` varchar(128) NOT NULL COMMENT '商品名称', `image` varchar(256) NOT NULL COMMENT '商品图片', `attr_value_id` int(11) NOT NULL COMMENT '商品规格值 ID', `sku` varchar(128) NOT NULL COMMENT '商品sku', `price` decimal(8,2) unsigned NOT NULL COMMENT '商品单价', `vip_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '会员价格', `pay_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '实际支付金额', `pay_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '购买数量', `weight` decimal(8,2) unsigned NOT NULL COMMENT '重量', `volume` decimal(8,2) unsigned NOT NULL COMMENT '体积', `is_reply` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否评价,0-未评价,1-已评价', `is_receipt` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否收货,0-未收货,1-已收货', `sub_brokerage_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '分佣类型:0-不参与分佣,1-单独分佣,2-默认分佣', `brokerage` int(3) NOT NULL DEFAULT '0' COMMENT '一级返佣比例', `brokerage_two` int(3) NOT NULL DEFAULT '0' COMMENT '二级返佣比例', `freight_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '运费金额', `coupon_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '优惠券金额', `use_integral` int(11) NOT NULL DEFAULT '0' COMMENT '使用积分', `integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '积分抵扣金额', `gain_integral` int(11) NOT NULL DEFAULT '0' COMMENT '赠送积分', `product_type` int(2) NOT NULL DEFAULT '0' COMMENT '商品类型:0-普通,1-秒杀,2-砍价,3-拼团,4-视频号', `first_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '一级返佣金额', `second_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '二级返佣金额', `delivery_num` int(11) NOT NULL DEFAULT '0' COMMENT '发货数量', `apply_refund_num` int(11) NOT NULL DEFAULT '0' COMMENT '申请退款数量', `refund_num` int(11) NOT NULL DEFAULT '0' COMMENT '退款数量', `refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额', `refund_use_integral` int(11) NOT NULL DEFAULT '0' COMMENT '退使用积分', `refund_integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款积分抵扣金额', `refund_gain_integral` int(11) NOT NULL DEFAULT '0' COMMENT '退赠送积分', `refund_first_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退一级返佣金额', `refund_second_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退二级返佣金额', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE, KEY `uid` (`uid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单详情表'; -- ---------------------------- -- Records of eb_order_detail -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_order_invoice -- ---------------------------- DROP TABLE IF EXISTS `eb_order_invoice`; CREATE TABLE `eb_order_invoice` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `order_no` varchar(32) DEFAULT NULL COMMENT '订单号', `mer_id` int(11) unsigned NOT NULL COMMENT '商户ID', `uid` int(11) unsigned NOT NULL COMMENT '用户id', `tracking_number` varchar(64) NOT NULL DEFAULT '' COMMENT '运单号', `express_name` varchar(64) NOT NULL DEFAULT '' COMMENT '快递名称', `express_code` varchar(50) NOT NULL DEFAULT '' COMMENT '快递公司简称', `total_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '发货商品总数', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单发货单表'; -- ---------------------------- -- Records of eb_order_invoice -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_order_invoice_detail -- ---------------------------- DROP TABLE IF EXISTS `eb_order_invoice_detail`; CREATE TABLE `eb_order_invoice_detail` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', `invoice_id` int(11) unsigned NOT NULL COMMENT '发货单ID', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID', `product_name` varchar(128) NOT NULL COMMENT '商品名称', `image` varchar(256) NOT NULL COMMENT '商品图片', `attr_value_id` int(11) NOT NULL COMMENT '商品规格值 ID', `sku` varchar(128) NOT NULL COMMENT '商品sku', `num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '发货数量', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `invoice_id` (`invoice_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单发货单详情表'; -- ---------------------------- -- Records of eb_order_invoice_detail -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_order_profit_sharing -- ---------------------------- DROP TABLE IF EXISTS `eb_order_profit_sharing`; CREATE TABLE `eb_order_profit_sharing` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '分账id', `order_no` varchar(32) NOT NULL COMMENT '订单号(商户)', `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID', `order_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单付款金额', `integral_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '消耗积分数量', `integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单积分抵扣金额', `profit_sharing_plat_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '平台分账金额', `profit_sharing_mer_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商户分账金额', `first_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '一级返佣金额', `second_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '二级返佣金额', `profit_sharing_refund` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额', `refund_use_integral` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '退还使用积分', `refund_integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款积分抵扣金额', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单分账表'; -- ---------------------------- -- Records of eb_order_profit_sharing -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_order_status -- ---------------------------- DROP TABLE IF EXISTS `eb_order_status`; CREATE TABLE `eb_order_status` ( `order_no` varchar(32) NOT NULL COMMENT '订单号', `change_type` varchar(32) NOT NULL COMMENT '操作类型:create-创建订单,pay-支付,express-快递,fictitious-虚拟发货,receipt-收货,evaluation-评价订单,fulfilled-完成,edit-编辑,cancel-取消,remove-删除订单', `change_message` varchar(256) NOT NULL COMMENT '操作备注', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '操作时间', KEY `order_no` (`order_no`) USING BTREE, KEY `change_type` (`change_type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='订单操作记录表'; -- ---------------------------- -- Records of eb_order_status -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_brand -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_brand`; CREATE TABLE `eb_pay_component_brand` ( `brand_id` int(11) unsigned NOT NULL COMMENT '品牌ID', `brand_wording` varchar(255) NOT NULL DEFAULT '' COMMENT '品牌名称', KEY `brand_id` (`brand_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件品牌表'; -- ---------------------------- -- Records of eb_pay_component_brand -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_cat -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_cat`; CREATE TABLE `eb_pay_component_cat` ( `third_cat_id` int(11) unsigned NOT NULL COMMENT '类目ID', `third_cat_name` varchar(255) NOT NULL DEFAULT '' COMMENT '类目名称', `qualification` varchar(500) NOT NULL DEFAULT '' COMMENT '类目资质', `qualification_type` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '类目资质类型,0:不需要,1:必填,2:选填', `product_qualification` varchar(500) NOT NULL DEFAULT '' COMMENT '商品资质', `product_qualification_type` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '商品资质类型,0:不需要,1:必填,2:选填', `second_cat_id` int(11) unsigned NOT NULL COMMENT '二级类目ID', `second_cat_name` varchar(255) DEFAULT '' COMMENT '二级类目名称', `first_cat_id` int(11) unsigned NOT NULL COMMENT '一级类目ID', `first_cat_name` varchar(255) DEFAULT '' COMMENT '一级类目名称', `audit_id` varchar(255) DEFAULT NULL COMMENT '申请id 有数据证明申请过', `status` int(2) unsigned NOT NULL DEFAULT '0' COMMENT 'status 0初始化 1微信侧审核中 2微信侧审核失败 3微信侧审核成功', `audit_time` timestamp NULL DEFAULT NULL COMMENT '提审时间', `reject_reason` varchar(255) DEFAULT NULL COMMENT '微信侧审核拒绝原因', `audit_qualification_req` varchar(500) DEFAULT '' COMMENT '类目审核时提交的资质证明', KEY `third_cat_id` (`third_cat_id`) USING BTREE, KEY `second_cat_id` (`second_cat_id`) USING BTREE, KEY `first_cat_id` (`first_cat_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件类目表'; -- ---------------------------- -- Records of eb_pay_component_cat -- ---------------------------- BEGIN; INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1003, '假牙清洁', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1004, '其它口腔护理产品', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1005, '口腔喷剂', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1006, '口腔护理套装', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1007, '漱口水', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1008, '牙刷', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1009, '牙粉', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1010, '牙线/牙签', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1011, '牙缝刷', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1012, '牙膏', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1013, '牙贴', '', 0, '', 0, 1002, '口腔护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1015, '其它女性护理产品', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1014, '女性护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1016, '卫生巾', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1014, '女性护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1017, '卫生护垫', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1014, '女性护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1018, '卫生棉条', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1014, '女性护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1019, '女性护理套装', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1014, '女性护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1020, '私密护理', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1014, '女性护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1021, '裤型卫生巾', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1014, '女性护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1023, '其它洗护发产品', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1022, '洗发护发', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1024, '发膜', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1022, '洗发护发', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1025, '护发精华', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1022, '洗发护发', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1026, '护发素', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1022, '洗发护发', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1027, '洗发水', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1022, '洗发护发', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1028, '洗护套装', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1022, '洗发护发', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1029, '营养水', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1022, '洗发护发', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1031, '其它假发', '', 0, '', 0, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1032, '其它美发/造型产品', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1033, '刘海假发', '', 0, '', 0, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1034, '发套假发', '', 0, '', 0, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1035, '发胶', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1036, '发蜡/泥', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1037, '啫喱膏/水', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1038, '弹力素', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1039, '摩丝', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1040, '染发产品', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1041, '烫发产品', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1042, '美发工具', '', 0, '', 0, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1043, '蓬蓬粉', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1044, '造型喷雾/乳', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1045, '马尾假发', '', 0, '', 0, 1030, '美发假发/造型', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1047, '其它身体护理', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1048, '手膜', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1049, '护手霜', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1050, '护理工具', '', 0, '', 0, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1051, '护足霜', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1052, '沐浴露', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1053, '洗手液', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1054, '浴盐', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1055, '身体乳/油', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1056, '男士私处洗液', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1057, '精油', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1058, '纤体塑形', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1059, '胸部护理', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1060, '脱毛工具', '', 0, '', 0, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1061, '花露水', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1062, '走珠/止汗露', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1063, '足浴粉/足浴盐', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '', 0, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1064, '足膜', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1065, '足贴', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1066, '身体护理套装', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1067, '颈部护理', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1068, '香皂', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '(选填)若为国产特殊用途化妆品,需提供国产特殊用途化妆品卫生许可批件; 若为进口化妆品,需提供进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 2, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1071, '其他养殖器具', '', 0, '', 0, 1070, '养殖器具', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1072, '养蜂器具', '', 0, '', 0, 1070, '养殖器具', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1073, '兽医器具', '', 0, '', 0, 1070, '养殖器具', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1074, '水产器具', '', 0, '', 0, 1070, '养殖器具', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1075, '牛羊器具', '', 0, '', 0, 1070, '养殖器具', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1076, '猪用器具', '', 0, '', 0, 1070, '养殖器具', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1077, '禽类器具', '', 0, '', 0, 1070, '养殖器具', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1079, '中兽药', '1、需提供《兽药经营许可证》或《兽药生产许可证》; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、国产:外包装照片,显示兽药的通用名称、成分、生产企业、产品批准文号产品批号、生产日期、有效期;2、 进口:外包装照片,显示兽药的通用名称、成分、生产企业、进口兽药注册证号,产品批号、生产日期、有效期证', 1, 1078, '兽药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1080, '疫苗', '1、需提供《兽药经营许可证》或《兽药生产许可证》; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、国产:外包装照片,显示兽药的通用名称、成分、生产企业、产品批准文号产品批号、生产日期、有效期;2、 进口:外包装照片,显示兽药的通用名称、成分、生产企业、进口兽药注册证号,产品批号、生产日期、有效期证', 1, 1078, '兽药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1081, '西兽药', '1、需提供《兽药经营许可证》或《兽药生产许可证》; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、国产:外包装照片,显示兽药的通用名称、成分、生产企业、产品批准文号产品批号、生产日期、有效期;2、 进口:外包装照片,显示兽药的通用名称、成分、生产企业、进口兽药注册证号,产品批号、生产日期、有效期证', 1, 1078, '兽药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1083, '农用篷布', '', 0, '', 0, 1082, '农膜遮网/大棚', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1084, '农用薄膜', '', 0, '', 0, 1082, '农膜遮网/大棚', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1085, '温室大棚支架', '', 0, '', 0, 1082, '农膜遮网/大棚', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1086, '铁丝网', '', 0, '', 0, 1082, '农膜遮网/大棚', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1087, '防虫网/遮阳网', '', 0, '', 0, 1082, '农膜遮网/大棚', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1089, '农药助剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1090, '杀线虫剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1091, '杀菌剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1092, '杀虫剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1093, '杀螨剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1094, '杀螺剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1095, '植物生长调节剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1096, '除草剂', '', 0, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1088, '农药', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1098, '农业机械/工具', '', 0, '', 0, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1099, '农机整机', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1100, '农机配件', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1101, '割草机', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1102, '喷雾器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1103, '园林机械', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1104, '小型农机具', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1105, '微耕机', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1097, '园林/农耕', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1107, '园艺工具', '', 0, '', 0, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1108, '园艺肥料', '', 0, '', 0, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1109, '园艺药剂', '', 0, '《农药登记证》', 1, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1110, '园艺辅材', '', 0, '', 0, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1111, '基质/营养土', '', 0, '', 0, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1112, '灌溉设备', '', 0, '', 0, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1113, '篱笆栅栏/爬藤架', '', 0, '', 0, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1114, '花盆花器', '', 0, '', 0, 1106, '园艺用品', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1116, '瓜果类', '1、国产商品:四选一①《农作物种子生产经营许可证》②《林木种子生产经营许可证》④《种子的备案登记》和授权人的《种子生产经营许可证》(若备案登记中不包含种子的目录,还须提供授权人授权的《种子的目录》) 2、进口商品需提供:①《种子经营许可证》;②进口商的进出口贸易资格证;③《出入境检验检疫证明》或《出入境检验检疫卫生证书》;④供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1115, '种子', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1117, '种球', '1、国产商品:四选一①《农作物种子生产经营许可证》②《林木种子生产经营许可证》④《种子的备案登记》和授权人的《种子生产经营许可证》(若备案登记中不包含种子的目录,还须提供授权人授权的《种子的目录》) 2、进口商品需提供:①《种子经营许可证》;②进口商的进出口贸易资格证;③《出入境检验检疫证明》或《出入境检验检疫卫生证书》;④供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1115, '种子', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1118, '粮油作物种子', '1、国产商品:四选一①《农作物种子生产经营许可证》②《林木种子生产经营许可证》④《种子的备案登记》和授权人的《种子生产经营许可证》(若备案登记中不包含种子的目录,还须提供授权人授权的《种子的目录》) 2、进口商品需提供:①《种子经营许可证》;②进口商的进出口贸易资格证;③《出入境检验检疫证明》或《出入境检验检疫卫生证书》;④供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1115, '种子', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1119, '花草林木类', '1、国产商品:四选一①《农作物种子生产经营许可证》②《林木种子生产经营许可证》④《种子的备案登记》和授权人的《种子生产经营许可证》(若备案登记中不包含种子的目录,还须提供授权人授权的《种子的目录》) 2、进口商品需提供:①《种子经营许可证》;②进口商的进出口贸易资格证;③《出入境检验检疫证明》或《出入境检验检疫卫生证书》;④供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1115, '种子', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1120, '蔬菜/菌类', '1、国产商品:四选一①《农作物种子生产经营许可证》②《林木种子生产经营许可证》④《种子的备案登记》和授权人的《种子生产经营许可证》(若备案登记中不包含种子的目录,还须提供授权人授权的《种子的目录》) 2、进口商品需提供:①《种子经营许可证》;②进口商的进出口贸易资格证;③《出入境检验检疫证明》或《出入境检验检疫卫生证书》;④供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1115, '种子', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1122, '土壤调理剂', '1、国产商品需提供:①《全国工业生产许可证》(生产许可证正本和副本,需含有复合肥、磷肥项;高浓度复合肥、尿素、二铵、钾肥等单质肥料、有机肥、水溶肥不需要提供);②供货协议或采购合同等材料。 2、进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称);③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证或报关单的收货人,则无需提供供货协议或采购合同等材料)', 1, '肥料产品正式/临时登记证(国家规定免予登记的除外)', 2, 1121, '肥料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1123, '复合肥', '1、国产商品需提供:①《全国工业生产许可证》(生产许可证正本和副本,需含有复合肥、磷肥项;高浓度复合肥、尿素、二铵、钾肥等单质肥料、有机肥、水溶肥不需要提供);②供货协议或采购合同等材料。 2、进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称);③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证或报关单的收货人,则无需提供供货协议或采购合同等材料)', 1, '肥料产品正式/临时登记证(国家规定免予登记的除外)', 2, 1121, '肥料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1124, '微生物肥料', '1、国产商品需提供:①《全国工业生产许可证》(生产许可证正本和副本,需含有复合肥、磷肥项;高浓度复合肥、尿素、二铵、钾肥等单质肥料、有机肥、水溶肥不需要提供);②供货协议或采购合同等材料。 2、进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称);③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证或报关单的收货人,则无需提供供货协议或采购合同等材料)', 1, '肥料产品正式/临时登记证(国家规定免予登记的除外)', 2, 1121, '肥料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1125, '有机肥', '1、国产商品需提供:①《全国工业生产许可证》(生产许可证正本和副本,需含有复合肥、磷肥项;高浓度复合肥、尿素、二铵、钾肥等单质肥料、有机肥、水溶肥不需要提供);②供货协议或采购合同等材料。 2、进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称);③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证或报关单的收货人,则无需提供供货协议或采购合同等材料)', 1, '肥料产品正式/临时登记证(国家规定免予登记的除外)', 2, 1121, '肥料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1126, '氮/磷/钾肥', '1、国产商品需提供:①《全国工业生产许可证》(生产许可证正本和副本,需含有复合肥、磷肥项;高浓度复合肥、尿素、二铵、钾肥等单质肥料、有机肥、水溶肥不需要提供);②供货协议或采购合同等材料。 2、进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称);③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证或报关单的收货人,则无需提供供货协议或采购合同等材料)', 1, '肥料产品正式/临时登记证(国家规定免予登记的除外)', 2, 1121, '肥料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1127, '水溶/叶面肥', '1、国产商品需提供:①《全国工业生产许可证》(生产许可证正本和副本,需含有复合肥、磷肥项;高浓度复合肥、尿素、二铵、钾肥等单质肥料、有机肥、水溶肥不需要提供);②供货协议或采购合同等材料。 2、进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称);③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证或报关单的收货人,则无需提供供货协议或采购合同等材料)', 1, '肥料产品正式/临时登记证(国家规定免予登记的除外)', 2, 1121, '肥料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1128, '钙镁/硅肥', '1、国产商品需提供:①《全国工业生产许可证》(生产许可证正本和副本,需含有复合肥、磷肥项;高浓度复合肥、尿素、二铵、钾肥等单质肥料、有机肥、水溶肥不需要提供);②供货协议或采购合同等材料。 2、进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称);③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证或报关单的收货人,则无需提供供货协议或采购合同等材料)', 1, '肥料产品正式/临时登记证(国家规定免予登记的除外)', 2, 1121, '肥料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1130, '多肉植物', '', 0, '', 0, 1129, '花卉绿植', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1131, '大型绿植', '', 0, '', 0, 1129, '花卉绿植', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1132, '微景观', '', 0, '', 0, 1129, '花卉绿植', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1133, '绿植盆栽', '', 0, '', 0, 1129, '花卉绿植', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1134, '花卉', '', 0, '', 0, 1129, '花卉绿植', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1135, '苗木', '', 0, '', 0, 1129, '花卉绿植', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1137, '全价料', '1、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1136, '饲料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1138, '浓缩料', '1、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1136, '饲料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1139, '预混料', '1、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1136, '饲料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1140, '饲料原料', '1、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1136, '饲料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1141, '饲料添加剂', '1、国产商品需提供:①《饲料生产许可证》或《饲料添加剂生产许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料; (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1136, '饲料', 1069, '农资园艺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1144, '刀具套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1143, '刀剪菜板', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1145, '剪刀', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1143, '刀剪菜板', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1146, '多功能刀', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1143, '刀剪菜板', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1147, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1143, '刀剪菜板', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1148, '瓜果刀/刨', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1143, '刀剪菜板', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1149, '砧板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1143, '刀剪菜板', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1150, '菜刀', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1143, '刀剪菜板', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1152, '保鲜盒', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1153, '厨房DIY/小工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1154, '厨房储物器皿', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1155, '厨房秤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1156, '厨房置物架', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1157, '烘焙/烧烤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1158, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1159, '调料器皿', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1160, '饭盒/提锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1151, '厨房配件', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1162, '咖啡具套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1161, '咖啡具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1163, '咖啡具配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1161, '咖啡具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1164, '咖啡壶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1161, '咖啡具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1165, '咖啡杯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1161, '咖啡具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1166, '咖啡滤纸', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1161, '咖啡具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1167, '打奶器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1161, '咖啡具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1168, '磨豆机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1161, '咖啡具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1170, '保温壶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1171, '保温杯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1172, '塑料杯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1173, '杯具套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1174, '水具/酒具配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1175, '焖烧杯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1176, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1177, '玻璃杯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1178, '运动水壶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1179, '酒杯/酒具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1180, '陶瓷/马克杯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1169, '水具酒具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1182, '奶锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1183, '平底锅/煎锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1184, '水壶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1185, '汤锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1186, '火锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1187, '炒锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1188, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1189, '砂锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1190, '蒸锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1191, '锅具套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1192, '高压锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '压力锅需上传《全国工业产品生产许可证》', 1, 1181, '烹饪锅具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1194, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1193, '酒店用品', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1195, '自助餐炉', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1193, '酒店用品', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1196, '酒店水具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1193, '酒店用品', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1197, '酒店餐具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1193, '酒店用品', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1199, '一次性用品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1200, '刀/叉/勺', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1201, '果盘/果篮', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1202, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1203, '盘/碟', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1204, '碗', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1205, '筷子', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1206, '茶具/咖啡具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1207, '餐具套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 1198, '餐具', 1142, '厨具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1210, '处方狗粮', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料; 3、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名④供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1209, '宠物主粮', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1211, '处方猫粮', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料; 3、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名④供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1209, '宠物主粮', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1212, '狗主食罐', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料; 3、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名④供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1209, '宠物主粮', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1213, '狗干粮', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料; 3、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名④供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1209, '宠物主粮', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1214, '猫主食罐', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料; 3、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名④供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1209, '宠物主粮', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1215, '猫干粮', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、国产商品需提供:①《饲料生产许可证》;②供货协议或采购合同等材料; 3、进口商品需提供:①《进口饲料登记证》;②《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名④供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1209, '宠物主粮', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1217, '狗零食', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1216, '宠物零食', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1218, '猫零食', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1216, '宠物零食', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1220, '护毛素', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1219, '洗护美容', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1221, '浴液', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1219, '洗护美容', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1222, '美容用具', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1219, '洗护美容', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1223, '美容电器', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1219, '洗护美容', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1225, '外出用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1224, '猫狗出行', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1226, '宠物配饰', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1224, '猫狗出行', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1227, '宠物鞋服', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1224, '猫狗出行', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1228, '牵引绳/胸背带', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1224, '猫狗出行', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1229, '航空箱/便携包', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1224, '猫狗出行', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1230, '训练器/止吠器', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1224, '猫狗出行', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1232, '其它日用', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1233, '尿垫', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1234, '清洁除味', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1235, '狗厕所', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1236, '猫狗沙发/柜', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1237, '猫狗窝', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1238, '猫砂', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1239, '猫砂盆', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1240, '笼子/围栏', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1241, '食具水具', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1231, '猫狗日用', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1243, '狗玩具', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1242, '猫狗玩具', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1244, '猫抓板', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1242, '猫狗玩具', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1245, '猫爬架', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1242, '猫狗玩具', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1246, '猫玩具', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1242, '猫狗玩具', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1249, '书架', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1250, '书柜', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1251, '书桌', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1252, '升降桌', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1253, '特殊商品', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1254, '电竞桌', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1255, '电竞椅', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1256, '电脑桌', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1257, '电脑椅', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1258, '连体书桌柜', '', 0, '', 0, 1248, '书房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1260, '储物/收纳用品', '', 0, '', 0, 1259, '储物家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1261, '墙面搁架', '', 0, '', 0, 1259, '储物家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1262, '层架/置物架', '', 0, '', 0, 1259, '储物家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1263, '特殊商品', '', 0, '', 0, 1259, '储物家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1264, '衣帽架', '', 0, '', 0, 1259, '储物家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1265, '鞋架', '', 0, '', 0, 1259, '储物家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1266, '餐边手推架', '', 0, '', 0, 1259, '储物家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1268, '儿童书桌', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1269, '儿童家具配件', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1270, '儿童床', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1271, '儿童床垫', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1272, '儿童桌椅套装', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1273, '儿童椅凳', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1274, '儿童沙发', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1275, '儿童衣柜', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1276, '儿童餐椅', '', 0, '', 0, 1267, '儿童家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1278, '定制衣柜', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1279, '床', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1280, '床垫', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1281, '床头柜', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1282, '斗柜', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1283, '梳妆台/凳', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1284, '榻榻米', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1285, '特殊商品', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1286, '穿衣镜', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1287, '简易衣柜', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1288, '衣柜', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1289, '顶箱柜', '', 0, '', 0, 1277, '卧室家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1291, '会议台/桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1292, '办公前台/收银台', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1293, '办公桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1294, '办公椅', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1295, '办公沙发', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1296, '功夫茶桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1297, '化学品柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1298, '医疗家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1299, '单身公寓家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1300, '双层铁床', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1301, '发廊/美容家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1302, '吸烟亭', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1303, '员工宿舍家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1304, '售报亭', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1305, '唱吧亭', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1306, '多媒体讲台', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1307, '娱乐/酒吧/KTV家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1308, '学生公寓家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1309, '密集架', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1310, '屏风工位', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1311, '展柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1312, '康复家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1313, '手机屏蔽柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1314, '文件柜/办公柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1315, '无障碍设施', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1316, '智能回收机', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1317, '智能图书柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1318, '智能货架', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1319, '智能餐桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1320, '更衣柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1321, '服装店家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1322, '校园教学家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1323, '桑拿/足浴/健身家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1324, '法院家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1325, '消防柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1326, '演讲台', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1327, '火锅桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1328, '特殊商品', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1329, '班台/班桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1330, '租房公寓家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1331, '自行车停放设施', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1332, '茶水柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1333, '货架/展示架', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1334, '超市家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1335, '酒店后厨家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1336, '酒店大堂家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1337, '酒店套房家具', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1338, '酒店桌椅', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1339, '酒店行李柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1340, '阅览桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1341, '防爆器材柜', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1342, '食堂餐桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1343, '餐饮沙发/卡座', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1344, '高隔断/隔墙', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1345, '麻将机', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1346, '龙虾桌', '', 0, '', 0, 1290, '商业办公', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1348, 'ATM防护亭', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1349, '候车亭', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1350, '分类垃圾站', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1351, '场馆定制', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1352, '场馆座椅', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1353, '导视立牌', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1354, '志愿者服务亭', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1355, '朗读亭', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1356, '机场椅', '', 0, '', 0, 1347, '城市家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1358, '书房套房', '', 0, '', 0, 1357, '套房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1359, '儿童套房', '', 0, '', 0, 1357, '套房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1360, '卧室套房', '', 0, '', 0, 1357, '套房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1361, '客厅套房', '', 0, '', 0, 1357, '套房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1362, '餐厅套房', '', 0, '', 0, 1357, '套房家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1364, '书房定制', '', 0, '', 0, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1365, '卧室定制', '', 0, '', 0, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1366, '客餐厅定制', '', 0, '', 0, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1367, '整装定制', '', 0, '', 0, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1368, '衣帽间定制', '', 0, '', 0, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1369, '门店特权定金', '', 0, '', 0, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1370, '阳台空间定制', '', 0, '', 0, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1372, '凳子', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1373, '壁炉', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1374, '屏风', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1375, '懒人沙发', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1376, '沙发', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1377, '沙发床', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1378, '特殊商品', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1379, '玄关隔断', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1380, '电视柜', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1381, '角柜', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1382, '边桌/茶几', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1383, '鞋柜', '', 0, '', 0, 1371, '客厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1385, '红木书柜/架', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1386, '红木书桌', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1387, '红木佛龛', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1388, '红木博古架', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1389, '红木层架', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1390, '红木屏风', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1391, '红木床', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1392, '红木整装定制', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1393, '红木斗柜', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1394, '红木条案', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1395, '红木梳妆台', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1396, '红木椅凳', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1397, '红木沙发', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1398, '红木电视柜', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1399, '红木茶桌', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1400, '红木衣柜', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1401, '红木边桌几类', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1402, '红木酒柜', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1403, '红木鞋柜架', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1404, '红木餐桌', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1405, '红木餐边柜', '', 0, '', 0, 1384, '红木家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1407, '家用梯', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1408, '户外家具', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1409, '折叠床', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1410, '智能晾衣机', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1411, '晾衣架', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1412, '炕几/窗几', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1413, '特殊商品', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1414, '花架/装饰架', '', 0, '', 0, 1406, '阳台/户外', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1416, '椅子', '', 0, '', 0, 1415, '餐厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1417, '特殊商品', '', 0, '', 0, 1415, '餐厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1418, '酒柜', '', 0, '', 0, 1415, '餐厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1419, '餐桌', '', 0, '', 0, 1415, '餐厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1420, '餐边柜', '', 0, '', 0, 1415, '餐厅家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1423, '创意家居', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1424, '墙贴/装饰贴', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1425, '壁饰', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1426, '帘艺隔断', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1427, '手工/十字绣', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1428, '特殊商品', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1429, '相框/照片墙', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1430, '节庆饰品', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1431, '花瓶花艺', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1432, '装饰字画', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1433, '装饰摆件', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1434, '钟饰', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1435, '香薰蜡烛', '', 0, '', 0, 1422, '家装软饰', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1437, '分隔收纳', '', 0, '', 0, 1436, '收纳用品', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1438, '收纳架/篮', '', 0, '', 0, 1436, '收纳用品', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1439, '收纳柜', '', 0, '', 0, 1436, '收纳用品', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1440, '收纳箱', '', 0, '', 0, 1436, '收纳用品', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1441, '收纳袋/包', '', 0, '', 0, 1436, '收纳用品', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1442, '防尘罩', '', 0, '', 0, 1436, '收纳用品', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1444, '上门除醛', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1445, '保暖防护', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1446, '净化除味', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1447, '洗晒/熨烫', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1448, '浴室用品', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1449, '特殊商品', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1450, '缝纫机', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1451, '缝纫/针织材料', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1452, '雨伞雨具', '', 0, '', 0, 1443, '生活日用', 1421, '家居日用', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1455, '其它清洁用品', '', 0, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1456, '地板清洁剂', '', 0, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1457, '家电清洁用品', '', 0, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1458, '油污清洁剂', '', 0, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1459, '洁厕剂', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1460, '洗洁精', '', 0, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1461, '消毒液', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1462, '除湿干燥剂', '', 0, '', 0, 1454, '家庭环境清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1464, '一次性清洁用品', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1465, '其它清洁工具', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1466, '垃圾袋/垃圾桶', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1467, '手套/鞋套/围裙', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1468, '抹布/百洁布', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1469, '拖把/扫把', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1470, '清洁刷具', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1471, '清洁用具配件', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1472, '脸盆/水桶', '', 0, '', 0, 1463, '清洁用具', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1474, '其它纸品/湿巾', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1473, '清洁纸品', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1475, '卷纸', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1473, '清洁纸品', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1476, '厨房纸巾', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1473, '清洁纸品', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1477, '手帕纸', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1473, '清洁纸品', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1478, '抽纸', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1473, '清洁纸品', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1479, '湿厕纸', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1473, '清洁纸品', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1480, '湿巾', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1473, '清洁纸品', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1482, '护理工具', '', 0, '', 0, 1481, '皮具护理', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1483, '皮具护理品', '', 0, '', 0, 1481, '皮具护理', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1485, '其它衣物清洁', '', 0, '', 0, 1484, '衣物清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1486, '护理剂', '', 0, '', 0, 1484, '衣物清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1487, '洗衣凝珠', '', 0, '', 0, 1484, '衣物清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1488, '洗衣液', '', 0, '', 0, 1484, '衣物清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1489, '洗衣皂', '', 0, '', 0, 1484, '衣物清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1490, '洗衣粉', '', 0, '', 0, 1484, '衣物清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1491, '除菌剂', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1484, '衣物清洁', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1493, '灭鼠药', '1、国产商品需提供:申请主体的《农药经营许可证》或《农药生产许可证》。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 1, 1492, '驱蚊驱虫', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1494, '驱蚊/蝇/小强/蚁类药', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '根据相关法律法规及平台运营规则,经营此类商品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号且为WP开头)', 1, 1492, '驱蚊驱虫', 1453, '家庭清洁/纸品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1497, '其它健康电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1496, '个护健康', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1498, '其它个护仪器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1499, '冲牙器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1500, '剃/脱毛器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1501, '电动剃须刀', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1502, '卷/直发器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1503, '按摩器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1496, '个护健康', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1504, '按摩椅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1496, '个护健康', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1505, '洁面仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1506, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1496, '个护健康', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1507, '理发器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1508, '电动牙刷', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1509, '电动牙刷头', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1510, '吹风机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1511, '电子秤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1496, '个护健康', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1512, '眼部按摩仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1513, '美容器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1514, '足浴盆', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1496, '个护健康', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1515, '足疗机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1496, '个护健康', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1517, '太阳能热水器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1518, '嵌入式微蒸烤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1519, '油烟机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1520, '洗碗机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1521, '消毒柜', '1、①《消毒产品生产企业卫生许可证》。②供货协议或采购合同等材料; 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品的,需提供:①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)。②供货协议或采购合同等材料; (注:若申请主体为生产商或是报关单的经营使用单位/收货单位,则无需提供供货协议或采购合同等材料)', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1522, '燃气灶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1523, '燃气热水器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1524, '电热水器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1525, '空气能热水器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1526, '蒸箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1527, '集成灶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1516, '厨卫大电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1529, '其它厨房电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1530, '养生壶/煎药壶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1531, '厨师机/和面机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1532, '厨房电器配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1533, '咖啡机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1534, '多用途锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1535, '微波炉', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1536, '打蛋器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1537, '料理机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1538, '果蔬解毒机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1539, '榨汁机/原汁机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1540, '煮蛋器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1541, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1542, '电压力锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、《国家强制性产品认证证书》(CCC安全认证证书),可前往全国认证认可信息公共服务平台查询。 2、压力锅需上传《全国工业产品生产许可证》', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1543, '电水壶/热水瓶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1544, '电炖锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1545, '电烤箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1546, '电烧烤炉', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1547, '电热饭盒', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1548, '电磁炉', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1549, '电陶炉', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1550, '电饭煲', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1551, '电饼铛', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1552, '破壁机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1553, '空气炸锅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1554, '绞肉机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1555, '豆浆机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1556, '酸奶机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1557, '面包机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1558, '面条机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1528, '厨房小电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1560, '保温售饭台', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1561, '保鲜工作台', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1562, '关东煮机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1563, '其它商用电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1564, '冰淇淋机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1565, '刨冰/沙冰机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1566, '制冰机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1567, '商用冰柜/冰箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1568, '商用净水设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1569, '商用压面机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1570, '商用吸尘器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1571, '商用和面机/打蛋机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1572, '商用咖啡机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1573, '商用开水器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1574, '商用消毒柜', '1、①《消毒产品生产企业卫生许可证》。②供货协议或采购合同等材料; 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品的,需提供:①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)。②供货协议或采购合同等材料; (注:若申请主体为生产商或是报关单的经营使用单位/收货单位,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1575, '商用烤箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1576, '商用电器配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1577, '商用电磁炉', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1578, '商用电饭煲', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1579, '商用电饼铛', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1580, '商用磨浆机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1581, '商用绞肉机/切肉机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1582, '封口/封杯机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1583, '展示柜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1584, '工程电器/解决方案', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1585, '扒炉', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1586, '果糖机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1587, '棉花糖机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1588, '油烟净化器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1589, '煮面桶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1590, '爆米花机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1591, '电动餐车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1592, '电炸炉', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1593, '章鱼丸机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1594, '肠粉机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1595, '自动售货机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1596, '蒸柜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1597, '醒发箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1598, '食品烘干机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1599, '饮料机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1600, '香肠/热狗机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1559, '商用电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1602, '中央空调', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1603, '冰箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1604, '冷柜/冰吧', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1605, '平板电视', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1606, '洗烘套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1607, '洗衣机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1608, '烘干机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1609, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1610, '移动空调', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1611, '空调', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1612, '空调外机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1613, '酒柜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1601, '大家电', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1615, '个护健康配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1616, '冰箱配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1617, '厨房小电配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1618, '洗衣机配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1619, '烟机灶具配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1620, '生活电器配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1621, '电视配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1622, '空调配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1614, '家电配件', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1624, '其它生活电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1625, '冷风扇', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1626, '净水器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《涉及饮用水卫生安全产品卫生许可批件》', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1627, '加湿器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1628, '取暖电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1629, '吸尘器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1630, '干衣机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1631, '扫地机器人', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1632, '挂烫机/熨斗', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1633, '新风系统', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1634, '毛球修剪器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1635, '清洁机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1636, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1637, '电暖桌', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1638, '电话机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《电信设备进网许可证》', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1639, '电风扇', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1640, '空气净化器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1641, '除湿机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1642, '除螨仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1643, '饮水机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《涉及饮用水卫生安全产品卫生许可批件》', 1, 1623, '生活电器', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1645, 'HIFI专区', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1646, 'KTV音响', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1647, '功放', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1648, '回音壁/Soundbar', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1649, '家庭影院', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1650, '播放器/DVD', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1651, '迷你音响', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1652, '麦克风', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1644, '视听影音', 1495, '家用电器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1655, '洁面巾', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1656, '地垫', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1657, '地毯', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1658, '坐垫', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1659, '布料', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1660, '抱枕靠垫', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1661, '挂毯/壁毯', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1662, '桌布/罩件', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1663, '毛巾', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1664, '毛巾礼盒套装', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1665, '沙发垫套', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1666, '浴巾', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1667, '特殊商品', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1668, '窗帘/窗纱', '', 0, '', 0, 1654, '居家布艺', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1670, '三件套', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1671, '乳胶枕', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1672, '乳胶被', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1673, '其它凉席', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1674, '冰丝席', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1675, '四件套', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1676, '多件套', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1677, '床单/床笠', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1678, '床垫/床褥', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1679, '床帘', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1680, '枕巾枕套', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1681, '棉花被', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1682, '毛毯', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1683, '水暖毯', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1684, '牛皮席', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1685, '电热毯', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1686, '竹席', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1687, '粗布凉席', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1688, '纤维枕', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1689, '纤维被', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1690, '羊毛/驼毛被', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1691, '羽绒枕', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1692, '羽绒/羽毛被', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1693, '花草枕', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1694, '草席/藤席', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1695, '蚊帐', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1696, '蚕丝枕', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1697, '蚕丝被', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1698, '被套', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1699, '记忆枕', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1700, '颈椎枕', '', 0, '', 0, 1669, '床上用品', 1653, '家纺', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1703, '仪器仪表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1704, '劳防用品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1705, '家用五金', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1706, '工具组套', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1707, '工具配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1708, '手动工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1709, '搬运/起重设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1710, '机械锁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1711, '机电五金', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1712, '气动工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1713, '测量工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1714, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1715, '电动工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 2, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1716, '电子锁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1717, '道路护栏板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1702, '五金工具', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1719, '净水软水', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1720, '卫浴套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1721, '厨卫拉篮', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1722, '厨卫挂件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1723, '厨卫配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1724, '吊顶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1725, '地漏', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1726, '垃圾处理器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1727, '干手器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1728, '排气扇/换气设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1729, '智能坐便器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1730, '智能马桶盖', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1731, '橱柜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1732, '水槽', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1733, '沐浴桶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1734, '浴室柜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1735, '浴缸', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1736, '浴霸', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1737, '淋浴房', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1738, '淋浴花洒', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1739, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1740, '陶瓷件组套', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1741, '马桶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1742, '龙头', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1718, '厨房卫浴', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1744, '化工产品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1745, '型材', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1746, '基建辅料', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1747, '木材/板材', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1748, '沙/石/水泥', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '(选填)生产经营水泥需上传《全国工业产品生产许可证》', 2, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1749, '油漆/涂料', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1750, '涂刷化工类辅料', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1751, '管材管件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1743, '基建材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1753, '安全爬梯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1752, '基建辅助设施', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1754, '施工喷淋系统', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1752, '基建辅助设施', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1755, '施工围挡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1752, '基建辅助设施', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1756, '活动板房', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1752, '基建辅助设施', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1758, '地板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1757, '墙地面材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1759, '壁纸', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1757, '墙地面材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1760, '木材/板材', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1757, '墙地面材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1761, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1757, '墙地面材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1762, '瓷砖', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1757, '墙地面材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1763, '背景墙', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1757, '墙地面材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1765, 'LED灯源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1766, '其它光源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1767, '其它照明', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1768, '卤钨灯源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1769, '台灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1770, '吊扇灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1771, '吊灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1772, '吸顶灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1773, '壁灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1774, '室外/庭院灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1775, '手电筒/应急灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1776, '杀菌灯', '需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料; (注:若申请主体为生产商,则无需提供供货协议或采购合同等材料)', 1, '', 0, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1777, '氛围照明', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1778, '灯具配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1779, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1780, '筒灯/射灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1781, '荧光灯源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1782, '落地灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1783, '镜前灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1784, '麻将灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1764, '灯饰照明', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1786, '光伏设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1787, '开关插座', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1788, '智能家居', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1789, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1790, '电料配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1791, '电气控制', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1792, '电线/电缆', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1793, '配电箱/断路器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1794, '门铃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1785, '电工电料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1796, '吊顶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1797, '壁炉/壁挂炉/地暖', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1798, '散热器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1799, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1800, '移门壁柜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1801, '窗', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1802, '门', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1803, '阳光房', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1795, '装饰材料', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1806, '个人卫生', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1807, '听力防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1808, '呼吸防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1809, '坠落防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1810, '头部防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1811, '手部防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1812, '焊接防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1813, '眼脸部防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1814, '足部防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1815, '身体防护', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1816, '静电无尘', '', 0, '', 0, 1805, '个人防护', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1818, '互感器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1819, '供电保护系统装置', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1820, '保护器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1821, '变压器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1822, '控制器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1823, '控制柜箱', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1824, '断路器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1825, '电力仪表', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1826, '电容器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1827, '电抗器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1828, '电缆桥架', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1829, '连接器', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1830, '防爆电气', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1817, '中低压配电', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1832, '暖通', '', 0, '', 0, 1831, '公共设施', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1833, '流体相关', '', 0, '', 0, 1831, '公共设施', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1834, '照明', '', 0, '', 0, 1831, '公共设施', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1836, '滑轨及其附件', '', 0, '', 0, 1835, '动力传动', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1837, '皮带', '', 0, '', 0, 1835, '动力传动', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1838, '自动化零部件', '', 0, '', 0, 1835, '动力传动', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1839, '轴承及其工具', '', 0, '', 0, 1835, '动力传动', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1841, '化纤原料', '', 0, '', 0, 1840, '原材料', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1842, '印染化工原料', '', 0, '', 0, 1840, '原材料', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1843, '无机化工原料', '', 0, '', 0, 1840, '原材料', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1844, '有机化工原料', '', 0, '', 0, 1840, '原材料', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1845, '石油化工原料', '', 0, '', 0, 1840, '原材料', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1847, '安全器具', '', 0, '', 0, 1846, '安防用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1848, '安全警示标识', '', 0, '', 0, 1846, '安防用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1849, '应急处理', '', 0, '', 0, 1846, '安防用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1850, '消防器材', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1846, '安防用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1851, '监控设备', '', 0, '', 0, 1846, '安防用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1853, 'PLC', '', 0, '', 0, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1854, '人机界面', '', 0, '', 0, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1855, '发电设备/电机', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1856, '变频器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1857, '启动器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1858, '工业通讯', '', 0, '', 0, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1859, '工控传感器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1860, '工控编码器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1861, '按钮/指示灯', '', 0, '', 0, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1862, '接触器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1863, '继电器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1852, '工控自动化', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1865, '存储设备', '', 0, '', 0, 1864, '搬运存储', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1866, '搬运设备', '', 0, '', 0, 1864, '搬运存储', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1868, '射频模块', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1867, '无线模块与适配器', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1869, '接口模块', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1867, '无线模块与适配器', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1870, '模块附件', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1867, '无线模块与适配器', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1871, '识别模块', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1867, '无线模块与适配器', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1872, '通信与网络模块', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1867, '无线模块与适配器', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1874, 'Packing包装', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1875, 'PCB电路板', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1876, '声学器件', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1877, '外壳组件', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1878, '屏幕', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1879, '开发工具', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1880, '开发板', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1881, '摄像头', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1882, '电子开关', '', 0, '', 0, 1873, '机电器件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1884, '包装工具', '', 0, '', 0, 1883, '标签包装', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1885, '包装耗材', '', 0, '', 0, 1883, '标签包装', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1886, '标签打印耗材', '', 0, '', 0, 1883, '标签包装', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1887, '标签打印设备', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1883, '标签包装', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1889, 'AC/DC转换器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1888, '模块电源', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1890, 'AC输入模块', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1888, '模块电源', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1891, 'DC/DC转换器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1888, '模块电源', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1892, '功率调节器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1888, '模块电源', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1893, '功率逆变器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1888, '模块电源', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1894, '电子电池', '', 0, '', 0, 1888, '模块电源', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1895, '超级电容器', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1888, '模块电源', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1897, '气动元件', '', 0, '', 0, 1896, '气动液压', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1898, '液压元件', '', 0, '', 0, 1896, '气动液压', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1900, '吸附用品', '', 0, '', 0, 1899, '清洁用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1901, '地垫及矿棉板', '', 0, '', 0, 1899, '清洁用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1902, '垃圾处理设施', '', 0, '', 0, 1899, '清洁用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1903, '工业擦拭', '', 0, '', 0, 1899, '清洁用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1904, '洗手间用品', '', 0, '', 0, 1899, '清洁用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1905, '清洁工具', '', 0, '', 0, 1899, '清洁用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1906, '清洁设备', '', 0, '', 0, 1899, '清洁用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1908, '焊接耗材', '', 0, '', 0, 1907, '焊接用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1909, '焊接设备', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 1907, '焊接用品', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1911, '其他电料辅件', '', 0, '', 0, 1910, '电料辅件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1912, '安全工器具', '', 0, '', 0, 1910, '电料辅件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1913, '电力金具', '', 0, '', 0, 1910, '电料辅件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1915, '电力电缆', '', 0, '', 0, 1914, '电线电缆', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1916, '电气装备电缆', '', 0, '', 0, 1914, '电线电缆', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1917, '绕组线类', '', 0, '', 0, 1914, '电线电缆', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1918, '裸线类', '', 0, '', 0, 1914, '电线电缆', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1919, '通信/光缆', '', 0, '', 0, 1914, '电线电缆', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1921, '密封件', '', 0, '', 0, 1920, '紧固密封件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1922, '小五金及其他', '', 0, '', 0, 1920, '紧固密封件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1923, '紧固件', '', 0, '', 0, 1920, '紧固密封件', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1925, '其它起重工具', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1926, '千斤顶', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1927, '搬运车', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1928, '牵引器', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1929, '脚手架', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1930, '起重吊钳', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1931, '起重滑车', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1932, '起重葫芦', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1933, '钢丝绳', '', 0, '', 0, 1924, '起重设备', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1935, '刃具', '', 0, '', 0, 1934, '金属加工', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1936, '小型机械', '', 0, '', 0, 1934, '金属加工', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1937, '机床', '', 0, '', 0, 1934, '金属加工', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1938, '磨具磨料', '', 0, '', 0, 1934, '金属加工', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1939, '金属加工配件', '', 0, '', 0, 1934, '金属加工', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1940, '钻/铣床', '', 0, '', 0, 1934, '金属加工', 1804, '工业品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1943, '公网对讲机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 1942, '对讲机', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1944, '对讲机配件', '', 0, '《无线电发射设备核准认证》', 1, 1942, '对讲机', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1945, '数字对讲机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 1942, '对讲机', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1946, '模拟对讲机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 1942, '对讲机', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1948, '手机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《电信设备进网许可证》、《无线电发射设备核准认证》', 1, 1947, '手机', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1950, '充电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1951, '创意配件', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1952, '手机信号增强器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1953, '手机壳/保护套', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1954, '手机存储卡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1955, '手机支架', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1956, '手机电池', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1957, '手机耳机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1958, '手机贴膜', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1959, '手机饰品', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1960, '拍照配件', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1961, '数据线', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1962, '无线充电', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1963, '移动电源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1964, '苹果周边', '', 0, '', 0, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1965, '蓝牙耳机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 1949, '手机配件', 1941, '手机通讯', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1967, '上网卡', '运营商主体:需提供《基础电信业务经营许可证》 非运营商主体:①提供与市级以上运营商(移动/电信/联通)的代理合同或合作协议等正规渠道证明②电信、联通:省级及以上运营商授权认证的《网络销售与实名制授权书》移动:市级及以上运营商授权认证的《网络销售与实名制授权书》③运营商统一配发的授权防伪二维码标识(中国移动除外)', 1, '', 0, 1966, '通信服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1968, '办号卡', '运营商主体:需提供《基础电信业务经营许可证》 非运营商主体:①提供与市级以上运营商(移动/电信/联通)的代理合同或合作协议等正规渠道证明②电信、联通:省级及以上运营商授权认证的《网络销售与实名制授权书》移动:市级及以上运营商授权认证的《网络销售与实名制授权书》③运营商统一配发的授权防伪二维码标识(中国移动除外)', 1, '', 0, 1966, '通信服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1974, 'MP3/MP4', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1975, '专业音频', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1976, '便携/无线音箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1977, '收音机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1978, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 2, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1979, '耳机/耳麦', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1980, '苹果配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1981, '音箱/音响', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1982, '麦克风', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1973, '影音娱乐', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1984, '冲印服务', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1985, '单反相机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1986, '影棚器材', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1987, '微单相机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1988, '户外器材', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1989, '拍立得', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1990, '摄像机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1991, '数码相机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1992, '数码相框', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1993, '运动相机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1994, '镜头', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1983, '摄影摄像', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1996, '其他数码产品维修', '', 0, '', 0, 1995, '数码维修', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1997, '无人机维修', '', 0, '', 0, 1995, '数码维修', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (1998, '相机维修', '', 0, '', 0, 1995, '数码维修', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (2000, '三脚架/云台', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6001, '存储卡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6002, '数码支架', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6003, '机身附件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6004, '滤镜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6005, '电池/充电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6006, '相机包', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6007, '相机清洁/贴膜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6008, '读卡器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6009, '镜头附件', '需提供:验光人员职业资格证书以及验光设备焦度计、验光仪的年度检定证书。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6010, '闪光灯/手柄', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 1999, '数码配件', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6012, 'VR眼镜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《无线电发射设备核准认证》', 1, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6013, '体感车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6014, '健康监测', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6015, '其他配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6016, '无人机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6017, '智能家居', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6018, '智能手环', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6019, '智能手表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、若产品可插卡通讯需要提供①《电信设备进网许可证》,可前往全国认证认可信息公共服务平台查询;②《国家强制性产品认证证书》(CCC安全认证证书),可前往全国认证认可信息公共服务平台查询;③《无线电发射设备核准认证》,可前往全国认证认可信息公共服务平台查询。 2、若产品不可插卡通讯需要提供《无线电发射设备核准认证》,可前往全国认证认可信息公共服务平台查询。', 1, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6020, '智能机器人', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《无线电发射设备核准认证》', 1, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6021, '智能配饰', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6022, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6023, '运动跟踪器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《无线电发射设备核准认证》', 1, 6011, '智能设备', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6025, '复读机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6026, '学生平板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)或《强制性认证产品符合自我声明》、《无线电发射设备核准认证》、若产品可插卡通讯还需《电信设备进网许可证》', 1, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6027, '录音笔', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6028, '点读机/笔', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6029, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6030, '电子词典', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6031, '电纸书', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6032, '翻译机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6024, '电子教育', 1972, '数码', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6035, '休闲棉袜', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6036, '保暖内衣', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6037, '内衣配件', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6038, '吊带/背心', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6039, '商务男袜', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6040, '塑身美体', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6041, '大码内衣', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6042, '女式内裤', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6043, '少女文胸', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6044, '情侣睡衣', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6045, '打底衫', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6046, '打底裤袜', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6047, '抹胸', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6048, '文胸', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6049, '文胸套装', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6050, '泳衣', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6051, '特殊商品', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6052, '男式内裤', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6053, '睡衣/家居服', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6054, '秋衣秋裤', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6055, '美腿袜', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6056, '连裤袜/丝袜', '', 0, '', 0, 6034, '内衣', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6058, 'T恤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6059, '中老年女装', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6060, '仿皮皮衣', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6061, '休闲裤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6062, '加绒裤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6063, '半身裙', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6064, '卫衣', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6065, '吊带/背心', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6066, '大码女装', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6067, '女装套装', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6068, '婚纱', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6069, '小西装', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6070, '打底衫', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6071, '打底裤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6072, '旗袍/汉服', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6073, '棉服', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6074, '正装裤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6075, '毛呢大衣', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6076, '毛衣', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6077, '牛仔裤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6078, '特殊商品', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6079, '皮草', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6080, '真皮皮衣', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6081, '短外套', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6082, '短裤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6083, '礼服', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6084, '羊绒衫', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6085, '羽绒服', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6086, '衬衫', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6087, '设计师/潮牌', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6088, '连衣裙', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6089, '针织衫', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6090, '雪纺衫', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6091, '风衣', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6092, '马甲', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6094, '假领', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6095, '光学镜架/镜片', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6096, '口罩(非医用)', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6097, '围巾/手套/帽子套装', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6098, '太阳镜', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6099, '女士丝巾/围巾/披肩', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6100, '棒球帽', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6101, '毛线/布面料', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6102, '毛线帽', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6103, '毛线手套', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6104, '游泳镜', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6105, '特殊商品', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6106, '男士丝巾/围巾', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6107, '真皮手套', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6108, '礼帽', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6109, '老花镜', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6110, '耳罩/耳包', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6111, '袖扣', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6112, '装饰眼镜', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6113, '贝雷帽', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6114, '遮阳伞/雨伞', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6115, '遮阳帽', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6116, '钥匙扣', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6117, '防晒手套', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6118, '防辐射眼镜', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6119, '非皮质腰带', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6120, '领带/领结/领带夹', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6121, '鸭舌帽', '', 0, '', 0, 6093, '服饰配件', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6123, 'POLO衫', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6124, 'T恤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6125, '中老年男装', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6126, '仿皮皮衣', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6127, '休闲裤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6128, '加绒裤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6129, '卫衣', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6130, '卫裤/运动裤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6131, '唐装/中式服装', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6132, '大码男装', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6133, '夹克', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6134, '工装', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6135, '棉服', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6136, '毛呢大衣', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6137, '牛仔裤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6138, '特殊商品', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6139, '男装套装', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6140, '皮衣/皮草', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6141, '短裤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6142, '羊毛衫', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6143, '羊绒衫', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6144, '羽绒服', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6145, '衬衫', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6146, '西服', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6147, '西服套装', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6148, '西裤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6149, '设计师/潮牌', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6150, '针织衫', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6151, '风衣', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6152, '马甲/背心', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6155, '儿童餐具', '', 0, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6156, '吸奶器', '', 0, '', 0, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6157, '围兜/防溅衣', '', 0, '', 0, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6158, '奶瓶奶嘴', '', 0, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6159, '暖奶消毒', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6160, '水壶/水杯', '', 0, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6161, '牙胶安抚', '', 0, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6162, '辅食料理机', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6163, '食物存储', '', 0, '(选填)根据相关法律法规及平台运营规则,国产的塑料、密胺或纸质产品需上传《全国工业产品生产许可证》', 2, 6154, '喂养用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6165, '产后塑身', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6166, '出行用品', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6167, '哺乳用品', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6168, '孕产妇家居服/哺乳装', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6169, '孕产妇洗护', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6170, '孕产妇鞋帽袜', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6171, '孕妇装', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6172, '孕期营养', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6173, '待产护理', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6174, '文胸/内裤', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6175, '防辐射服', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6177, '吸汗巾/垫背巾', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6178, '婴儿鞋帽袜', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6179, '婴童凉席/蚊帐', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6180, '婴童布尿裤/尿布', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6181, '婴童床单/床褥', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6182, '婴童床品套件', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6183, '婴童床围', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6184, '婴童枕芯/枕套', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6185, '婴童毛巾/口水巾', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6186, '婴童浴巾/浴衣', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6187, '婴童睡袋/抱被', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6188, '婴童被子/被套', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6189, '婴童隔尿垫/巾', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6190, '安全防护', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6191, '爬行垫', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6193, '增高垫', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6192, '安全座椅', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6194, '安全座椅', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6192, '安全座椅', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6195, '提篮式', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6192, '安全座椅', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6197, '婴儿尿裤', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6196, '尿裤湿巾', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6198, '婴儿湿巾', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6196, '尿裤湿巾', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6199, '婴儿纸尿片', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6196, '尿裤湿巾', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6200, '成人尿裤', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6196, '尿裤湿巾', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6201, '拉拉裤', '1、国产商品需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为生产商或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6196, '尿裤湿巾', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6203, '奶瓶清洗', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6204, '婴儿口腔清洁', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6205, '婴儿理发器', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6206, '宝宝护肤', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6207, '座便器', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6208, '日常护理', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6209, '棉柔巾', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6210, '洗发沐浴', '', 0, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6211, '洗澡用具', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6212, '洗衣液/皂', '', 0, '', 0, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6213, '驱蚊防晒', '', 0, '驱蚊产品需提供《农药登记证》(如无法提供证件,可提供产品外包装照片,需显示登记证号)', 2, 6202, '洗护用品', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6215, 'T恤', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6216, '亲子装', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6217, '儿童配饰', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6218, '内衣裤', '', 0, '', 0, 494030, '童装内衣裤', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6219, '卫衣', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6220, '外套/大衣', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6221, '套装', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6222, '婴儿礼盒', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6223, '家居服', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6224, '运动衣/裤/套装', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6225, '旗袍唐装/民族服装', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6226, '校服/校服定制', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6227, '棉服', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6228, '毛衣/针织衫', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6229, '特殊商品', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6230, '礼服/演出服', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6231, '羽绒服', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6232, '肚兜', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6233, '衬衫', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6234, '袜子', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6235, '半身裙', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6236, '裤子', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6237, '连体衣/爬服', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6238, '马甲', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6240, '三轮车', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6241, '儿童摇椅', '', 0, '', 0, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6242, '儿童滑步车', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6243, '婴儿床', '', 0, '', 0, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6244, '婴儿床垫', '', 0, '', 0, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6245, '婴儿推车', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6246, '婴幼儿餐椅', '', 0, '', 0, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6247, '学步车', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6248, '扭扭车', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6249, '滑板车', '', 0, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6250, '电动车', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6251, '自行车', '', 0, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6239, '童车童床', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6253, '凉鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6254, '学步鞋/步前鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6255, '布鞋/编织鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6256, '帆布鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6257, '拖鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6258, '棉鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6259, '皮鞋', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6260, '运动鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6261, '雨鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6262, '靴子', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6265, 'GPS定位器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 2, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6266, '中控锁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6267, '保温箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6268, '储物箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6269, '充气泵', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6270, '其它摩托车装备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6271, '其它摩托车配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6272, '地锁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6273, '安全锤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6274, '应急救援', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6275, '拖车绳', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6276, '搭火线', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6277, '摩托车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6278, '摩托车后视镜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6279, '摩托车喇叭', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6280, '摩托车头盔', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6281, '摩托车尾箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6282, '摩托车手套', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6283, '摩托车护具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6284, '摩托车灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6285, '摩托车蓝牙装备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《无线电发射设备核准认证》', 1, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6286, '摩托车锁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6287, '摩托车雨衣', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6288, '摩托车音响', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6289, '摩托车风镜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6290, '摩托车骑行服', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6291, '摩托车骑行裤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6292, '摩托车骑行鞋', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6293, '方向盘锁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6294, '灭火器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6295, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6296, '胎压监测', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6297, '胎压计', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6298, '自驾野营', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6299, '车载床', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6300, '轮胎锁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6301, '防滑链', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6302, '防盗设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6303, '骑士包', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6264, '安全自驾', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6305, '临时停车牌', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6306, '仪表台防晒垫', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6307, '保险杠', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6308, '其它功能小件', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6309, '内饰贴', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6310, '司机护目镜', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6311, '后备箱垫', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6312, '后视镜/圆镜', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6313, '头枕腰靠', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6314, '密封条', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6315, '导航/中控膜', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6316, '尾喉', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6317, '座垫', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6318, '座套', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6319, '扶手箱', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6320, '扶手箱套', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6321, '挂件', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6322, '挡泥板', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6323, '排挡/手刹套', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6324, '摆件', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6325, '方向盘助力球', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6326, '方向盘套', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6327, '无线充支架', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6328, '汽车炭包', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6329, '汽车窗帘', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6330, '汽车装饰灯', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6331, '汽车钥匙扣/包', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6332, '汽车防滑垫', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6333, '汽车除雪铲', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6334, '特殊商品', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6335, '电子香薰', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6336, '脚垫', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6337, '行李架/箱', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6338, '踏板', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6339, '车内除味剂', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6340, '车牌架/牌照托', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6341, '车用收纳袋/盒', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6342, '车用衣服架', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6343, '车衣', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6344, '车贴', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 2, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6345, '车身装饰件', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 2, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6346, '车身装饰条', '', 0, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 2, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6347, '车载挂钩', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6348, '车载支架', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6349, '车载桌板', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6350, '车载烟灰缸', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6351, '车载纸巾盒', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6352, '车门拉手装饰', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6353, '遮阳挡/雪挡', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6354, '门碗贴', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6355, '防撞胶条', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6356, '防滑贴', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6357, '防踢垫', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6358, '隔音隔热棉', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6359, '雨眉', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6360, '香水', '', 0, '', 0, 6304, '汽车装饰', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6362, 'LED车灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6363, '三滤套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6364, '其它汽修工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6365, '其它辅助油', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6366, '减震器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6367, '刹车卡钳', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6368, '刹车油', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6369, '刹车油管', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6370, '刹车泵', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6371, '刹车片', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6372, '刹车盘/鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6373, '刹车蹄', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6374, '千斤顶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6375, '卤素灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6376, '变速箱油/滤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6377, '后视镜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6378, '大灯总成', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6379, '工具箱/工具车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6380, '底盘装甲/护板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6381, '摩托车机油', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6382, '改装配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6383, '机油滤清器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6384, '柴机油', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6385, '检修灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6386, '正时皮带', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6387, '氙气灯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6388, '氧传感器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6389, '水泵', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6390, '汽机油', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6391, '汽车喇叭', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6392, '汽车玻璃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6393, '汽车维修设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6394, '汽车诊断设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6395, '添加剂', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6396, '火花塞', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6397, '点火线圈', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6398, '燃油滤清器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6399, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6400, '离合器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6401, '空气滤清器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6402, '空调滤清器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6403, '维修配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6404, '胶带/双面胶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6405, '蓄电池', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6406, '贴膜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6407, '起动机/发电机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6408, '车灯辅件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6409, '轮毂', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6410, '轮胎', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6411, '钣金/喷漆工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6412, '钣金/喷漆用品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6413, '防冻液', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6414, '雨刷', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6415, '高压线', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6361, '维修保养', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6417, '其它洗车工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6418, '喷漆', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6419, '底盘装甲', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6420, '打蜡机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6421, '汽车贴膜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6422, '洗车刷', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6423, '洗车手套', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6424, '洗车机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6425, '洗车毛巾', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6426, '洗车水枪/枪头', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6427, '洗车水桶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6428, '洗车水管/接头', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6429, '洗车泥', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6430, '洗车海绵', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6431, '洗车配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6432, '清洁剂', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6433, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6434, '玻璃水', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6435, '补漆笔', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6436, '车用掸子', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6437, '车用砂纸', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6438, '车蜡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6439, '轮毂喷膜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6440, '镀晶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6441, '镀膜', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6442, '防雾剂/驱水剂', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6443, '隐形车衣', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6416, '美容清洗', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6445, '360全景影像', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6446, 'HUD抬头显示', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6447, '倒车雷达', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6448, '后视镜导航', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6449, '安全预警仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6450, '导航仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6451, '执法记录仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6452, '无钥匙进入', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6453, '汽车充电装备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6454, '汽车音响', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6455, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6456, '电动尾门', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6457, '电动车窗升降器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6458, '电源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6459, '行车记录仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6460, '车机导航', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6461, '车载充电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6462, '车载冰箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6463, '车载净化器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6464, '车载吸尘器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6466, '车载生活电器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6467, '车载电台', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6468, '车载电器配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6469, '车载蓝牙', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《无线电发射设备核准认证》', 1, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6470, '逆变器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6471, '驾驶辅助', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6444, '车载电器', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6474, '太阳能玩具', '', 0, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6473, 'STEAM教玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6475, '水动力玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6473, 'STEAM教玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6476, '热胀冷缩/感温玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6473, 'STEAM教玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6477, '电路开关玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6473, 'STEAM教玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6478, '空气动力玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6473, 'STEAM教玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6479, '编程玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6473, 'STEAM教玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6480, '风动船/风动转向玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6473, 'STEAM教玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6482, '乐器箱包', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6481, '乐器配件', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6483, '其它乐器配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6481, '乐器配件', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6484, '变调夹', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6481, '乐器配件', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6485, '拾音器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6481, '乐器配件', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6486, '琴弦', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6481, '乐器配件', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6487, '调音器/节拍器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6481, '乐器配件', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6488, '谱架/谱台', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6481, '乐器配件', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6490, '戏水玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6489, '健身玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6491, '户外玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6489, '健身玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6492, '炫舞毯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6489, '健身玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6493, '爬行垫/毯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6489, '健身玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6495, '工艺礼品乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6494, '其它乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6496, '电脑音乐', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6494, '其它乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6498, '减压玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6497, '创意减压', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6499, '创意玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6497, '创意减压', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6501, '卡通娃娃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6500, '娃娃玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6502, '换装娃娃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6500, '娃娃玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6503, '智能娃娃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6500, '娃娃玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6505, '仿真模型', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6504, '模型玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6506, '拼插模型', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6504, '模型玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6507, '收藏爱好', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6504, '模型玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6509, '毛绒/布艺', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6508, '毛绒布艺', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6510, '靠垫/抱枕', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6508, '毛绒布艺', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6512, '其它民族吹奏乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6513, '唢呐', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6514, '埙', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6515, '巴乌', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6516, '笙', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6517, '笛子', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6518, '箫', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6519, '葫芦丝', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6520, '陶笛', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6511, '民族吹奏乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6522, '三弦', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6523, '其它民族弹拨乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6524, '古琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6525, '古筝', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6526, '扬琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6527, '月琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6528, '柳琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6529, '琵琶', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6530, '秦琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6531, '阮', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6521, '民族弹拨乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6533, '其它民族打击乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6532, '民族打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6534, '堂鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6532, '民族打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6535, '快板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6532, '民族打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6536, '排鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6532, '民族打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6537, '腰鼓/秧歌鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6532, '民族打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6538, '锣', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6532, '民族打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6539, '镲', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6532, '民族打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6541, '中胡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6540, '民族拉弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6542, '二胡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6540, '民族拉弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6543, '京胡/京二胡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6540, '民族拉弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6544, '其它民族拉弦乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6540, '民族拉弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6545, '板胡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6540, '民族拉弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6546, '马头琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6540, '民族拉弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6547, '高胡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6540, '民族拉弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6549, '人偶/BJD/兵人', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6550, '卡通周边', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6551, '悠悠球/溜溜球', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6552, '扭蛋', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6553, '潮流盲盒', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6554, '电影周边', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6555, '网游周边', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6556, '陀螺', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6557, '高达/变形模型', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6548, '潮玩/动漫', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6559, '健身架', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6558, '益智玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6560, '拖拉玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6558, '益智玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6561, '摇铃/床铃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6558, '益智玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6562, '早教启智', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6558, '益智玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6563, '魔方', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6558, '益智玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6565, '拼图', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 6564, '积木拼插', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6566, '磁力片/棒', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6564, '积木拼插', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6567, '积木', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6564, '积木拼插', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6568, '立体拼插', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6564, '积木拼插', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6570, '情景玩具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6569, '绘画/DIY', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6571, '手工彩泥', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6569, '绘画/DIY', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6572, '绘画工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6569, '绘画/DIY', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6574, '中提琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6575, '低音/倍大提琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6576, '其它西洋弦乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6577, '吉他', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6578, '大提琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6579, '小提琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6580, '尤克里里', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6581, '贝斯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6573, '西洋弦乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6583, '其它西洋打击乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6582, '西洋打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6584, '军鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6582, '西洋打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6585, '卡洪鼓/箱鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6582, '西洋打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6586, '架子鼓/爵士鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6582, '西洋打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6587, '电子鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6582, '西洋打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6588, '静音鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6582, '西洋打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6589, '非洲鼓', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6582, '西洋打击乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6591, '其它西洋管乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6592, '单簧管/双簧管', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6593, '口琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6594, '圆号', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6595, '大号', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6596, '小号', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6597, '巴松/大管', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6598, '电吹管', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6599, '短笛', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6600, '竖笛', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6601, '萨克斯', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6602, '长号', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6603, '长笛', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6590, '西洋管乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6605, '0-6个月', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6604, '适用年龄', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6606, '1-3岁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6604, '适用年龄', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6607, '14岁以上', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6604, '适用年龄', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6608, '3-6岁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6604, '适用年龄', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6609, '6-12个月', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6604, '适用年龄', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6610, '6-14岁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6604, '适用年龄', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6612, '机器人', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6611, '遥控/电动', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6613, '轨道/助力', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6611, '遥控/电动', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6614, '遥控船', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6611, '遥控/电动', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6615, '遥控车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6611, '遥控/电动', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6616, '遥控飞机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6611, '遥控/电动', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6618, '其它键盘乐器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6617, '键盘乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6619, '口风琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6617, '键盘乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6620, '手卷钢琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6617, '键盘乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6621, '手风琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6617, '键盘乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6622, '电子琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6617, '键盘乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6623, '电钢琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6617, '键盘乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6624, '钢琴', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6617, '键盘乐器', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6627, '低温奶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6626, '乳品冷饮', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6628, '冰淇淋', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6626, '乳品冷饮', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6629, '冷藏饮料', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6626, '乳品冷饮', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6630, '奶酪黄油', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6626, '乳品冷饮', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6632, '奇异果/猕猴桃', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6633, '山竹', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6634, '更多水果', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6635, '木瓜', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6636, '枣', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6637, '柚子', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6638, '柠檬', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6639, '桃/李/杏', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6640, '桔/橘', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6641, '梨', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6642, '椰青', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6643, '榴莲', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6644, '橙子', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6645, '水果礼盒/券', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6646, '火龙果', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6647, '牛油果', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6648, '瓜', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6649, '百香果', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6650, '石榴', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6651, '芒果', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6652, '苹果', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6653, '草莓', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6654, '荔枝', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6655, '菠萝/凤梨', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6656, '葡萄/提子', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6657, '蓝莓', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6658, '车厘子/樱桃', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6659, '香蕉', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6660, '龙眼', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6631, '水果', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6662, '其他水产', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6663, '海产干货', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6664, '海产礼盒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6665, '海参', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6666, '海鲜制品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6667, '海鲜卡券', '需提供:1、申请主体的发卡方单用途预付卡备案的证明文件; 2、发卡企业向备案机关提交的包含该入驻商家(售卡单位)的售卡企业清单及承诺函(入驻商家为发卡方无需提供此项); 3、经营水产品的养殖证明/进货渠道证明(如:授权);4、经营阳澄湖大闸蟹卡券的特殊要求:《农产品地理标志登记证书》登记申请人协会对商家主体的授权(只限一级)', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6668, '藻类', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6669, '虾类', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6670, '蟹类', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' 1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》 6、活蟹产品(包括大闸蟹、青蟹等),(1)若为养殖方,需提供养殖证明(三选一):①养殖证②养殖承包合同(发包人应当为农村集体经济组织)③村委及以上政府单位证明;(2)若为经销商:需提供养殖证明,还需提供店铺主体与养殖方之间的供货合同;(3)若声称为阳澄湖大闸蟹,还需提供《农产品地理标志登记证书》登记申请人协会对品牌商(或店铺主体)的授权(只限一级)。', 1, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6671, '贝类', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6672, '软足类', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6673, '鱼类', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6661, '海鲜水产', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6675, '其它肉类', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6674, '猪牛羊肉', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6676, '内脏类', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6674, '猪牛羊肉', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6677, '牛肉', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6674, '猪牛羊肉', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6678, '猪肉', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 2、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 3、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 4、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6674, '猪牛羊肉', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6679, '羊肉', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6674, '猪牛羊肉', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6681, '其他禽类', '1、国产商品需提供:①《动物防疫条件合格证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为养殖供货方或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6680, '禽肉蛋品', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6682, '蛋类', '1、国产商品需提供:①《动物防疫条件合格证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为养殖供货方或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6680, '禽肉蛋品', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6683, '鸡肉', '1、国产商品需提供:①《动物防疫条件合格证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为养殖供货方或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6680, '禽肉蛋品', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6684, '鸭肉', '1、国产商品需提供:①《动物防疫条件合格证》;②供货协议或采购合同等材料。 2、进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为养殖供货方或是办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6680, '禽肉蛋品', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6686, '半加工蔬菜', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6685, '蔬菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6687, '叶菜类', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6685, '蔬菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6688, '根茎类', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6685, '蔬菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6689, '茄果瓜类', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6685, '蔬菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6690, '葱姜蒜椒', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6685, '蔬菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6691, '鲜菌菇', '如主体为进口商,售卖商品需提供:①近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6685, '蔬菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6693, '方便菜', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6692, '速食熟食', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6694, '火锅丸料', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6692, '速食熟食', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6695, '肉制品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6692, '速食熟食', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6697, '低温月饼', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6698, '低温粽子', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6699, '其他西点', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6700, '披萨', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6701, '新鲜蛋糕', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6702, '水饺/馄饨', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6703, '汤圆/元宵', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6704, '蛋挞', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6705, '面点', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 6696, '面点烘焙', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6708, '刻录碟片', '', 0, '', 0, 6707, '办公耗材', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6709, '墨盒', '', 0, '', 0, 6707, '办公耗材', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6710, '墨粉', '', 0, '', 0, 6707, '办公耗材', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6711, '硒鼓', '', 0, '', 0, 6707, '办公耗材', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6712, '纸类', '', 0, '', 0, 6707, '办公耗材', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6713, '色带', '', 0, '', 0, 6707, '办公耗材', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6715, '会议音频视频', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6716, '传真设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)或《强制性认证产品符合自我声明》、《电信设备进网许可证》', 1, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6717, '保险柜/箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6718, '塑封机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6719, '墨粉', '', 0, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6720, '复合机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6721, '安防监控', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6722, '打印机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)或《强制性认证产品符合自我声明》、具有传真功能还需上传《电信设备进网许可证》', 1, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6723, '扫描仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6724, '投影机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6725, '投影配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6726, '收银机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6727, '条码扫描', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6728, '白板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6729, '碎纸机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6730, '考勤机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6731, '装订/封装机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6732, '验钞/点钞机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,经营此类商品需提供《全国工业生产许可证》', 1, 6714, '办公设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6734, 'UPS电源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6735, 'U盘', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '若销售音乐U盘等影音载体,需提供相应影音授权书和《出版物经营许可证》,如不能提供,则详情页需明确标注商品不含影音内容', 2, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6736, '手写板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6737, '插座', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6738, '摄像头', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6739, '游戏设备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6740, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6741, '电脑工具', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6742, '电脑清洁', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6743, '硬盘盒', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6744, '移动硬盘', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6745, '线缆', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6746, '网络仪表仪器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6747, '键盘', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6748, '鼠标', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6749, '鼠标垫', '', 0, '', 0, 6733, '外设产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6751, '办公文具', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6752, '学生文具', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6753, '文件管理', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6754, '文房四宝', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6755, '本册/便签', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6756, '激光笔', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6757, '画具画材', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6758, '笔类', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6759, '计算器', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6760, '财会用品', '', 0, '', 0, 6750, '文具', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6762, '手柄/方向盘', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6761, '游戏设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6763, '游戏周边', '', 0, '', 0, 6761, '游戏设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6764, '游戏机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6761, '游戏设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6765, '游戏耳机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6761, '游戏设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6766, '游戏软件', '', 0, '', 0, 6761, '游戏设备', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6768, '一体机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6769, '台式机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6770, '平板电脑', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《无线电发射设备核准认证》、若产品可插卡通讯还需《电信设备进网许可证》', 1, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6771, '平板电脑配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6772, '服务器/工作站', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6773, '游戏本', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '国家强制性产品认证证书》(CCC安全认证证书)或《强制性认证产品符合自我声明》、《无线电发射设备核准认证》', 1, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6774, '笔记本', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '国家强制性产品认证证书》(CCC安全认证证书)或《强制性认证产品符合自我声明》、《无线电发射设备核准认证》', 1, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6775, '笔记本配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6767, '电脑整机', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6777, 'CPU', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6778, 'SSD固态硬盘', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6779, '主板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6780, '主板CPU套装', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6781, '内存', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6782, '刻录机/光驱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6783, '声卡/扩展卡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6784, '散热器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6785, '显卡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6786, '显示器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》或《强制性认证产品符合自我声明》', 1, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6787, '显示器支架', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6788, '机箱', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6789, '电源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6790, '硬盘', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6791, '组装电脑', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6792, '装机配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6776, '电脑组件', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6794, '5G/4G上网', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6795, '交换机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)或《强制性认证产品符合自我声明》、《电信设备进网许可证》', 1, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6796, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《电信设备进网许可证》', 1, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6797, '网卡', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6798, '网络存储', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6799, '网络盒子', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6800, '网络配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6801, '路由器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《电信设备进网许可证》', 1, 6793, '网络产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6833, '书包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6834, '休闲运动包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6835, '拉杆包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6836, '拉杆箱', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6837, '旅行包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6838, '旅行配件', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6839, '特殊商品', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6840, '电脑包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6841, '登山包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6842, '腰包/胸包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6832, '功能箱包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6844, '化妆包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6845, '单肩包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6846, '卡包/零钱包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6847, '双肩包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6848, '手拿包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6849, '手提包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6850, '斜挎包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6851, '特殊商品', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6852, '钥匙包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6853, '钱包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6843, '潮流女包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6855, '女士皮带', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6854, '箱包皮具配件', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6856, '男士皮带', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6854, '箱包皮具配件', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6857, '皮带礼盒', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6854, '箱包皮具配件', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6858, '箱包配件', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6854, '箱包皮具配件', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6860, '单肩/斜挎包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6861, '卡包名片夹', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6862, '双肩包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6863, '商务公文包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6864, '手机包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6865, '特殊商品', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6866, '男士手包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6867, '男士钱包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6868, '证件包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6869, '钥匙包', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 6859, '精品男包', 6831, '箱包皮具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6872, '其它男士面部护肤', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6873, '剃须啫喱/剃须膏/剃须泡', '', 0, '', 0, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6874, '套装/礼盒', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6875, '男士T区护理', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6876, '男士乳液/面霜/乳霜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6877, '男士卸妆', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6878, '男士洁面', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6879, '男士唇部护理', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6880, '男士爽肤水/化妆水', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6881, '男士眼霜/眼部精华', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6882, '男士防晒', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6883, '男士面膜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6884, '男士面部精华', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6886, '修眉刀', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6887, '假睫毛', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6888, '其他美妆工具', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6889, '化妆刷', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6890, '化妆棉/卸妆棉', '需提供:①《消毒产品生产企业卫生许可证》;②供货协议或采购合同等材料; (注:若申请主体为生产商,则无需提供供货协议或采购合同等材料)', 1, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6891, '双眼皮贴/胶', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6892, '睫毛夹', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6893, '粉扑/洗脸扑/洗脸刷', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6894, '美妆工具套装', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6895, '美甲工具', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6897, 'T区护理', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6898, '乳液/面霜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6899, '其它面部护肤', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6900, '卸妆', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6901, '唇膜/唇部精华/唇部磨砂', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6902, '套装/礼盒', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6903, '洁面', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6904, '润唇膏', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6905, '爽肤水/化妆水', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6906, '眼膜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6907, '眼霜/眼部精华', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6908, '防晒', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6909, '面膜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6910, '面部精华/精油', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6912, '其它彩妆', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6913, '口红', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6914, '唇彩唇蜜/唇釉', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6915, '唇笔/唇线笔', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6916, '彩妆套装', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6917, '气垫BB/BB霜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6918, '气垫CC/CC霜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6919, '男士彩妆', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6920, '眉笔/眉粉/染眉膏', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6921, '眼影', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6922, '眼线笔/眼线膏', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6923, '睫毛膏/增长液', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6924, '粉底液/粉底膏/粉底霜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6925, '粉饼', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6926, '美甲产品', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6927, '腮红/胭脂', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6928, '蜜粉/散粉', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6929, '遮瑕膏/遮瑕笔', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6930, '隔离霜/妆前乳', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6931, '香水/香膏', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6934, '乒乓底板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6935, '乒乓球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6936, '乒乓球发球机', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6937, '乒乓球拍', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6938, '乒乓球拍套/包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6939, '乒乓球拍胶皮', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6940, '乒乓球挡板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6941, '乒乓球捡球器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6942, '乒乓球服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6943, '乒乓球桌', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6944, '乒乓球网/架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6945, '乒乓球胶水', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6946, '乒乓球袜', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6947, '乒乓球集球网', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6948, '乒乓球鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6949, '其他乒乓球装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6950, '其他体育用品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6951, '其他台球配件', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6952, '其他排球装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6953, '其他橄榄球装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6954, '其他田径用品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6955, '其他篮球装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6956, '其他网球装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6957, '其他羽球装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6958, '其他足球装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6959, '其他高尔夫装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6960, '台尼/台球布', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6961, '台球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6962, '台球三角架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6963, '台球修杆器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6964, '台球巧克粉', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6965, '台球手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6966, '台球杆', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6967, '台球杆保养工具', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6968, '台球杆盒/杆筒', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6969, '台球架杆器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6970, '台球桌', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6971, '台球皮头/杆头', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6972, '壁球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6973, '壁球拍', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6974, '守门员手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6975, '巧粉夹/巧粉袋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6976, '排球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6977, '排球网/球柱', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6978, '排球鞋服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6979, '接力棒', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6980, '推杆练习器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6981, '更多高尔夫服装', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6982, '更多高尔夫球杆', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6983, '棒球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6984, '棒球手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6985, '棒球棒', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6986, '棒球鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6987, '橄榄球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6988, '橄榄球头盔', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6989, '橄榄球手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6990, '橄榄球鞋服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6991, '特殊商品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6992, '球杆加长器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6993, '球迷用品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6994, '穿线机', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6995, '篮球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6996, '篮球包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6997, '篮球架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6998, '篮球框', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (6999, '篮球袜', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7000, '网球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7001, '网球包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7002, '网球手胶', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7003, '网球拍', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7004, '网球捡球器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7005, '网球服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7006, '网球线', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7007, '网球网', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7008, '网球网架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7009, '网球训练器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7010, '网球避震器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7011, '网球鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7012, '羽毛球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7013, '羽毛球包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7014, '羽毛球手胶', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7015, '羽毛球拍', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7016, '羽毛球服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7017, '羽毛球线', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7018, '羽毛球网', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7019, '羽毛球网架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7020, '羽毛球蒸球机', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7021, '羽毛球袜', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7022, '羽毛球鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7023, '裁判用品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7024, '起跑器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7025, '足球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7026, '足球战术板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7027, '足球护腿板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7028, '足球球门', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7029, '足球网', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7030, '足球袜', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7031, '足球训练背心', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7032, '跨栏架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7033, '跳箱/跳马', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7034, '跳高杆', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7035, '跳高架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7036, '运动地胶', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7037, '铁饼/标枪', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7038, '铅球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7039, '防滑粉', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7040, '高尔夫7号铁', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7041, '高尔夫T恤', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7042, '高尔夫一号木', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7043, '高尔夫卫衣/套头衫', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7044, '高尔夫夹克/风衣', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7045, '高尔夫手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7046, '高尔夫挖起杆', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7047, '高尔夫棉服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7048, '高尔夫模拟器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7049, '高尔夫毛/线衫', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7050, '高尔夫球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7051, '高尔夫球包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7052, '高尔夫球包车', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7053, '高尔夫球帽', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7054, '高尔夫球杆套杆', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7055, '高尔夫球钉', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7056, '高尔夫羽绒服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7057, '高尔夫运动裤', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7058, '高尔夫铁木杆', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 6933, '体育用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7059, '高尔夫鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7061, '仰卧板/收腹机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7062, '倒立机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7063, '健腹轮', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7064, '健身房器械定制', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7065, '健身路径', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7066, '健身车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7067, '其他器械', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7068, '划船机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7069, '动感单车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7070, '单双杠/引体向上', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7071, '哑铃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7072, '壶铃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7073, '律动机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7074, '拉力器/臂力器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7075, '杠铃', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7076, '椭圆机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7077, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7078, '甩脂机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7079, '综合训练器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7080, '跑步机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7081, '跳绳', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7082, '踏步机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7083, '骑马机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7085, '其它冰上运动', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7086, '冰刀套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7087, '冰球刀片', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7088, '冰球头盔', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7089, '冰球手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7090, '冰球杆', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7091, '冰球杆胶布', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7092, '冰球球饼', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7093, '冰球训练服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7094, '冰球鞋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7095, '花样滑冰服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7096, '花样滑冰袜', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7097, '花样滑冰鞋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7098, '速滑冰刀鞋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7099, '速滑刀片', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7100, '速滑头盔', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7101, '速滑手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7102, '速滑服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7103, '速滑磨刀架', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7084, '冰上运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7105, '浮漂', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7106, '渔具包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7107, '特殊商品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7108, '辅助装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7109, '钓竿', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7110, '钓箱钓椅', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7111, '钓鱼服饰', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7112, '钓鱼灯', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7113, '钓鱼配件', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7114, '鱼线', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7115, '鱼线轮', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7116, '鱼饵', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7104, '垂钓用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7118, '军迷用品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7119, '军迷装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7120, '冲浪潜水', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7121, '帐篷/垫子', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7122, '户外仪表', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7123, '户外工具', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7124, '户外照明', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7125, '户外配饰', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7126, '救援装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7127, '旅行装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7128, '望远镜/夜视仪/户外眼镜', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7129, '极限户外', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7130, '烧烤用具', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7131, '特殊商品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7132, '登山攀岩', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7133, '睡袋/吊床', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7134, '背包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7135, '野餐用品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7136, '飞机游艇', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7138, 'T恤', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7139, '休闲衣裤', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7140, '休闲鞋', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7141, '军迷服饰', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7142, '军迷鞋靴', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7143, '冲锋衣裤', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7144, '功能内衣', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7145, '工装鞋', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7146, '徒步鞋', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7147, '户外袜', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7148, '户外风衣', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7149, '抓绒衣裤', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7150, '沙滩/凉拖', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7151, '溯溪鞋', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7152, '特殊商品', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7153, '登山鞋', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7154, '羽绒服/棉服', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7155, '越野跑鞋', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7156, '软壳衣裤', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7157, '速干衣裤', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7158, '雪地靴', '', 0, '', 0, 7137, '户外鞋服', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7160, 'UNO牌', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7161, '中国象棋', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7162, '其他棋牌麻将', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7163, '军棋/陆战棋', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7164, '围棋', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7165, '国际象棋', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7166, '字牌', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7167, '将棋', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7168, '川牌', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7169, '扑克', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7170, '抽奖转盘', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7171, '摇号机', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7172, '牌九', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7173, '狼人杀', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7174, '筹码', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7175, '筹码架/盒', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7176, '骰子/色子', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7177, '麻将', '', 0, '', 0, 7159, '棋牌麻将', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7179, '其他武术装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7180, '剑道', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7181, '太极', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7182, '拳击', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7183, '摔跤', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7184, '柔道', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7185, '空手道', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7186, '跆拳道', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7178, '武术搏击', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7188, '女士泳衣', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7189, '比基尼', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7190, '泳帽', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7191, '泳镜', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7192, '游泳包防水包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7193, '游泳圈', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7194, '游泳配件', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7195, '特殊商品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7196, '男士泳衣', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7187, '游泳用品', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7198, '单板滑雪板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7199, '双板滑雪板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7200, '更多滑雪用具', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7201, '滑雪头盔', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7202, '滑雪服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7203, '滑雪杖', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7204, '滑雪衣裤套装', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7205, '滑雪裤', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7206, '滑雪车', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7207, '滑雪鞋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7208, '雪板固定器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7209, '面罩/头套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7197, '滑雪运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7211, '体操垫', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7212, '体操跳板', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7213, '健美操鞋', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7214, '其他瑜伽用品', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7215, '其他舞蹈服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7216, '其他舞蹈配件', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7217, '其他舞蹈鞋', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7218, '广场舞服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7219, '广场舞鞋', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7220, '拉丁舞服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7221, '拉丁舞鞋', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7222, '普拉提器械', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7223, '现代舞服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7224, '瑜伽包', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7225, '瑜伽半圆球', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7226, '瑜伽发带', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7227, '瑜伽吊床', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7228, '瑜伽圈', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7229, '瑜伽垫', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7230, '瑜伽拉力带', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7231, '瑜伽服上衣', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7232, '瑜伽服内衣', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7233, '瑜伽服外套', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7234, '瑜伽服套装', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7235, '瑜伽服裤', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7236, '瑜伽柱', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7237, '瑜伽球', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7238, '瑜伽短裤', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7239, '瑜伽砖', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7240, '瑜伽绳', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7241, '瑜伽袜', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7242, '瑜伽铺巾', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7243, '瑜伽鞋', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7244, '肚皮舞服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7245, '肚皮舞鞋', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7246, '舞蹈扇', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7247, '舞蹈把杆', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7248, '芭蕾舞服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7249, '芭蕾舞鞋', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7251, '其它轮滑滑板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7252, '单排轮滑鞋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7253, '双排轮滑鞋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7254, '双翘板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7255, '小鱼板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7256, '弹跳鞋', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7257, '漂移板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7258, '轮滑包', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7259, '轮滑护具', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7260, '长板', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7250, '轮滑滑板', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7262, '健身手套', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7263, '其他运动护具', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7264, '助力带', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7265, '护指', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7266, '护腕', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7267, '护臂', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7268, '护齿', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7269, '紧身服/压缩衣', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7270, '运动发带', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7271, '运动护肘', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7272, '运动护肩', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7273, '运动护腰', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7274, '运动护腿', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7275, '运动护膝', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7276, '运动护臀', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7277, '运动护踝', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7278, '运动肌肉贴', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7279, '髌骨带', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7261, '运动护具', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7281, 'T恤', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7282, '健身服', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7283, '卫衣/套头衫', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7284, '夹克/风衣', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7285, '套装', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7286, '棉服', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7287, '毛衫/线衫', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7288, '羽绒服', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7289, '运动内衣', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7290, '运动背心', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7291, '运动裤', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7292, '运动配饰', '', 0, '', 0, 7280, '运动服饰', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7295, '休闲鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7296, '帆布鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7297, '拖鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7298, '板鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7299, '特殊商品', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7300, '篮球鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7301, '训练鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7302, '足球鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7303, '跑步鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7304, '运动包', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7305, '运动鞋', '', 0, '', 0, 7293, '运动鞋包', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7307, '其他民俗用品', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7308, '其他马术装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7309, '响鞭', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7310, '拔河绳', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7311, '毽子', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7312, '空竹', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7313, '舞狮', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7314, '门球', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7315, '马匹装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7316, '马房装备', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7317, '马术头盔', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7318, '马术护腿', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7319, '马术服装', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7320, '马术靴', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7321, '马术鞭', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7322, '马鞍', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7323, '龙舟服', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7306, '马术/民俗运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7325, '公路车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7326, '城市自行车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7327, '山地车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7328, '平衡车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7329, '折叠车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7330, '特殊商品', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7331, '电动滑板车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7332, '电动车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7333, '电动车装备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7334, '电动车零配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7335, '穿戴装备', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7336, '老年代步车', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7337, '自行车配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7338, '骑行服', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7324, '骑行运动', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7341, '啤酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7340, '啤酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7343, '收藏酒/陈年老酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7342, '收藏酒/陈年老酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7345, '伏特加', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7346, '其它洋酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7347, '力娇酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7348, '威士忌', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7349, '朗姆酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7350, '果酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7351, '清酒/烧酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7352, '白兰地/干邑', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7353, '金酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7354, '鸡尾酒/预调酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7355, '龙舌兰', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7344, '洋酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7357, '白酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7356, '白酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7359, '葡萄酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7358, '葡萄酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7361, '养生酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7360, '黄酒/养生酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7362, '黄酒', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '', 0, 7360, '黄酒/养生酒', 7339, '酒类', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7365, '座钟', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7364, '时钟', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7366, '挂钟', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7364, '时钟', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7367, '闹钟', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7364, '时钟', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7369, '儿童手表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)', 1, 7368, '腕表', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7370, '国表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7368, '腕表', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7371, '德表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7368, '腕表', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7372, '日韩表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7368, '腕表', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7373, '智能手表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '《国家强制性产品认证证书》(CCC安全认证证书)、《无线电发射设备核准认证》、若产品可插卡通讯还需《电信设备进网许可证》', 1, 7368, '腕表', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7374, '欧美表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7368, '腕表', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7375, '瑞表', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7368, '腕表', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7377, '钟表配件', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7376, '钟表配件', 7363, '钟表', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7380, '休闲鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7381, '内增高', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7382, '凉鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7383, '单鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7384, '坡跟鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7385, '女靴', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7386, '妈妈鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7387, '布鞋/绣花鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7388, '帆布鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7389, '拖鞋/人字拖', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7390, '松糕鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7392, '特色鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7394, '踝靴', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7395, '防水台', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7396, '雨鞋/雨靴', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7397, '雪地靴', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7398, '鞋配件', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7399, '马丁靴', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7400, '高跟鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7401, '鱼嘴鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7403, '休闲鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7404, '传统布鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7405, '凉鞋/沙滩鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7406, '功能鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7407, '商务休闲鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7408, '增高鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7409, '定制鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7410, '工装鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7411, '帆布鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7412, '拖鞋/人字拖', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7413, '正装鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7415, '男靴', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7417, '雨鞋/雨靴', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7418, '鞋配件', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7421, '休闲零食', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7420, '休闲食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7422, '坚果炒货', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7420, '休闲食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7423, '熟食腊味', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7420, '休闲食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7424, '糖果/巧克力', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7420, '休闲食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7425, '肉干肉脯', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7420, '休闲食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7426, '蜜饯果干', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7420, '休闲食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7427, '饼干蛋糕', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7420, '休闲食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7429, '东北', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7430, '云南', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7431, '其他特产', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7432, '内蒙古', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7433, '北京', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7434, '四川', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7435, '山西', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7436, '新疆', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7437, '湖南', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7438, '福建', '需提供申请主体的《食品生产许可证》或《食品经营许可证》或《预包装食品销售备案凭证》; (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7428, '地方特产', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7440, '南北干货', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7441, '方便食品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7442, '有机食品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7443, '杂粮', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7444, '烘焙原料', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7445, '米', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7446, '调味品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7447, '面', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7448, '食用油', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7439, '粮油调味', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7450, '乌龙茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7451, '其它茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7452, '养生茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7453, '普洱', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7454, '白茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7455, '红茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7456, '绿茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7457, '花果茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7458, '花草茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7459, '茉莉花茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7460, '铁观音', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7461, '黑茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7462, '龙井', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7449, '茗茶', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7464, '休闲零食', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7465, '冲调品', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7466, '咖啡豆/咖啡粉', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7467, '方便食品', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7468, '水', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7469, '油', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7470, '牛奶乳品', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7471, '米面调味', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7472, '糖果/巧克力', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7473, '饮料', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7474, '饼干蛋糕', '需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料;若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '', 0, 7463, '进口食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7476, '卡券', '1、申请主体的《食品经营许可证》或《食品生产许可证》 或《预包装食品销售备案凭证》;2、发卡方单用途预付卡备案的证明文件;3、发卡企业向备案机关提交的包含该入驻商家(售卡单位)的售卡企业清单及承诺函(入驻商家为发卡方无需提供此项)。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7475, '食品礼券', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7477, '月饼', '1、申请主体的《食品经营许可证》或《食品生产许可证》 或《预包装食品销售备案凭证》;2、发卡方单用途预付卡备案的证明文件;3、发卡企业向备案机关提交的包含该入驻商家(售卡单位)的售卡企业清单及承诺函(入驻商家为发卡方无需提供此项)。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7475, '食品礼券', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7478, '粽子', '1、申请主体的《食品经营许可证》或《食品生产许可证》 或《预包装食品销售备案凭证》;2、发卡方单用途预付卡备案的证明文件;3、发卡企业向备案机关提交的包含该入驻商家(售卡单位)的售卡企业清单及承诺函(入驻商家为发卡方无需提供此项)。 (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含食品经营(预包装食品))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7475, '食品礼券', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7480, '冲饮谷物', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7479, '饮料冲调', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7481, '咖啡/奶茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7479, '饮料冲调', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7482, '成人奶粉', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7479, '饮料冲调', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7483, '牛奶乳品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7479, '饮料冲调', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7484, '蜂蜜/柚子茶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7479, '饮料冲调', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7485, '饮料', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7479, '饮料冲调', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (7486, '饮用水', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, ' (选填)1、若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件; 2、标记农产品产地的农产品,需提供《农产品地理标志登记证书》; 3、声称获得无公害农产品认证的农产品,需提供《无公害农产品认证证书》; 4、声称获得绿色食品认证的食品,需提供《绿色食品证书》; 5、声称获得有机食品认证的食品,需提供《有机产品认证证书》', 2, 7479, '饮料冲调', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112880, '世界军事', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376698, '军事/政治', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112881, '经典传记', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 128189, '传记', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112882, '一般工业技术', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117806, '工业技术', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112883, '休闲运动', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376701, '体育/运动', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112884, '连环画', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117802, '动漫/卡通', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112885, '教学/展示用品', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 135837, '文化用品', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112886, '摄影技法', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112879, '摄影', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112888, '文学理论', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 122145, '文学', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112889, '孕产妇饮食/保健', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117811, '孕产/胎教', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (112890, '国际金融', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376697, '金融与投资', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (117812, '历史著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 122147, '历史', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (117813, '科普图鉴', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117808, '科普读物', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (117814, '学习方法/报考指南', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112874, '中小学教辅', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (117815, '休闲游戏', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112877, '娱乐/休闲', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (117816, '家常菜谱', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112875, '烹饪/美食', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (117817, '经典著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376699, '法律', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (117818, '经典著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117804, '励志与成功', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (122151, '其他资格/职称考试', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 128193, '考试', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (122152, '中国近现代小说', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 122144, '小说', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (122153, '英汉/汉英词典', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376702, '字典词典/工具书', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128195, '外语教学/学术著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117807, '外语学习', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128196, '生活休闲', '需提供申请主体的《出版物经营许可证》或《期刊出版许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376703, '杂志/期刊', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128197, '文化研究', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117805, '文化', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128198, '音乐赏析', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 128194, '音乐', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128199, 'IT人文/互联网', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 122150, '计算机/互联网', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128200, '职业培训教材', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117810, '大中专教材教辅', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128201, '技法/教程', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 135838, '书法', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128202, '医学理论与研究', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112873, '医学', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128203, '基础与理论', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117809, '电子与通信', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128204, '城市规划、城市设计', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376700, '建筑', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128205, '哲学经典著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 122148, '哲学/宗教', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (128206, '其他绘画', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112878, '绘画', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (135839, '育儿百科', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112870, '育儿/家教', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (135840, '时尚生活', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112876, '时尚/美妆', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (135841, '经典著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112869, '经济', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (135842, '艺术理论与评论', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376696, '艺术', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (135843, '社会心理学', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 122149, '心理学', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (135844, '经典著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112872, '社会科学', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (376705, '家装饰品', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 376704, '家居', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (376706, '自然科学', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 128192, '科学与自然', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377080, '美发', '1、营业执照(且经营许可范围内包含对应经营类目); 2、公共场所卫生许可证; 3、门店照片(含门店门头、内景照片)。', 1, '', 0, 377079, '丽人', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377081, '美容', '1、营业执照(且经营许可范围内包含对应经营类目); 2、公共场所卫生许可证; 3、门店照片(含门店门头、内景照片)。', 1, '', 0, 377079, '丽人', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377082, '美甲', '1、营业执照(且经营许可范围内包含对应经营类目); 2、公共场所卫生许可证; 3、门店照片(含门店门头、内景照片)。', 1, '', 0, 377079, '丽人', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377091, '家政保洁', '《营业执照》经营范围包含家政服务等相关项目', 1, '1、服务内容标准化,商品必须完整描述服务名称,具体包含的服务内容,商品详情须明确描述有效期,使用注意事项等内容; 2、服务内容若包含高空清洗服务还需提供《高空清洗悬吊作业企业安全生产证书》; 3、提供服务的商家需与小商店主体一致。', 2, 377101, '家政', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377102, '家电维修', '《营业执照》经营范围包含家政服务等相关项目', 1, '1、服务内容标准化,商品必须完整描述服务名称,具体包含的服务内容,商品详情须明确描述有效期,使用注意事项等内容; 2、提供服务的商家需与小商店主体一致。', 2, 377101, '家政', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377104, '安装服务', '需提供:1、住建部颁发的工程设计与施工资质相应等级证书(主要含室内装修、装饰范围);2、各级建设厅颁发的相应的建筑业企业资质证书;3、经营装修施工需拥有3个(含)以上实体门店,上传门店的门头照片; 注:营业执照:加载“统一社会信用代码”的营业执照,经营整体全包、整体半包需公司注册满2年,注册资金200万(含)以上,其他类目需公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 377103, '装修服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377105, '装修监理', '需提供:1、住建部颁发的工程设计与施工资质相应等级证书(主要含室内装修、装饰范围);2、各级建设厅颁发的相应的建筑业企业资质证书;3、工程监理需提供建设部或中国室内装饰协会(含地区性装饰协会)颁发的工程监理资质证书; 注:营业执照:加载“统一社会信用代码”的营业执照且公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 377103, '装修服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377106, '装修设计', '需提供(2选1): 1、各级装饰协会颁发的室内装饰企业资质等级证书等证明文件; 2、提供五套设计案例,每套设计案例需包含以下四项资质:①案例家具平面布置图、地面铺装图、顶面设计图;②至少三张不同空间的效果图;③完工案例实景照片至少五张;④案例基础信息:项目地址、户型、面积、造价、项目介绍(风格、思路、灵感等)(word格式)。 注:营业执照:加载“统一社会信用代码”的营业执照且需公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 377103, '装修服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377107, '养生', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 122146, '健身与保健', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377108, '国学普及读物', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 128191, '国学/古籍', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377109, '经典著作', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 117803, '管理', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377110, '旅游指南', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 112871, '旅游/地图', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (377111, '农业基础科学', '需提供申请主体的《出版物经营许可证》;(注:经营主体若为分公司可提供总公司的《出版物经营许可证》和当地出版管理机关(新闻出版局)的备案回执)', 1, '1、书籍的ISBN版号/CN刊号 2、清晰可辨认的出版社信息 (仅限出版社为大陆出版社的书籍)', 1, 135836, '农业/林业', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378006, '公职考试培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378007, '教师资格培训', '1、线下授课:提供申请主体的人力资源社会保障部门批准的文件或《民办学校办学许可证》 2、线上授课:①需提供申请主体的《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》;②提供申请主体的人力资源社会保障部门批准的文件或《民办学校办学许可证》。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378008, '其他学历/资格考试', '1、线下授课:提供申请主体的人力资源社会保障部门批准的文件或《民办学校办学许可证》 2、线上授课:①需提供申请主体的《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》;②提供申请主体的人力资源社会保障部门批准的文件或《民办学校办学许可证》。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378014, '宠物美容', '营业执照(且经营许可范围内包含对应经营类目如:宠物服务)', 1, '', 0, 378013, '宠物服务', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378016, '宠物寄养', '营业执照(且经营许可范围内包含对应经营类目如:宠物服务)', 1, '', 0, 378013, '宠物服务', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378017, '宠物赛事', '营业执照(且经营许可范围内包含对应经营类目如:宠物服务)', 1, '', 0, 378013, '宠物服务', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378019, '宠物殡葬', '营业执照(且经营许可范围内包含对应经营类目如:宠物服务)', 1, '', 0, 378013, '宠物服务', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378020, '宠物训练', '营业执照(且经营许可范围内包含对应经营类目如:宠物服务)', 1, '', 0, 378013, '宠物服务', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378021, '宠物摄影', '营业执照(且经营许可范围内包含对应经营类目如:宠物服务)', 1, '', 0, 378013, '宠物服务', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378023, '鱼缸/水族箱', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378024, '鱼粮/饲料', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378025, '过滤器/水泵', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378026, '增氧设备', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378027, '温控器材', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378028, '水族药剂', '1、需提供《兽药经营许可证》或《兽药生产许可证》; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378029, '造景装饰', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378030, '清洁检测', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378031, '水草用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378032, '照明设备', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378033, '滤材/配件', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378034, '海水用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378035, '水族服务', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378022, '水族', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378037, '鼠类用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378036, '异宠用品', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378038, '爬宠用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378036, '异宠用品', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378039, '鸟类用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378036, '异宠用品', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378040, '兔子用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378036, '异宠用品', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378041, '其它异宠用品', '1、营业执照(且经营许可范围内包含对应经营类目如:宠物食品及用品零售); 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、【过滤器/水泵】需提供质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378036, '异宠用品', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378043, '健骨补钙', '1、营业执照经营范围:许可项目包含至少一项【兽药经营,饲料/添加剂销售,宠物食品及用品零售,宠物服务(不含动物诊疗)】; 2、兽药经营企业须提供《兽药经营许可证》,饲料/添加剂销售企业需提供生产厂商的《饲料生产许可证》 、《饲料添加剂生产许可证》; 3、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 4、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378042, '宠物保健', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378044, '护肤美毛', '1、营业执照经营范围:许可项目包含至少一项【兽药经营,饲料/添加剂销售,宠物食品及用品零售,宠物服务(不含动物诊疗)】; 2、兽药经营企业须提供《兽药经营许可证》,饲料/添加剂销售企业需提供生产厂商的《饲料生产许可证》 、《饲料添加剂生产许可证》; 3、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 4、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378042, '宠物保健', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378045, '肠胃调理', '1、营业执照经营范围:许可项目包含至少一项【兽药经营,饲料/添加剂销售,宠物食品及用品零售,宠物服务(不含动物诊疗)】; 2、兽药经营企业须提供《兽药经营许可证》,饲料/添加剂销售企业需提供生产厂商的《饲料生产许可证》 、《饲料添加剂生产许可证》; 3、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 4、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378042, '宠物保健', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378046, '奶粉', '1、营业执照经营范围:许可项目包含至少一项【兽药经营,饲料/添加剂销售,宠物食品及用品零售,宠物服务(不含动物诊疗)】; 2、兽药经营企业须提供《兽药经营许可证》,饲料/添加剂销售企业需提供生产厂商的《饲料生产许可证》 、《饲料添加剂生产许可证》; 3、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 4、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378042, '宠物保健', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378047, '宠物驱虫', '1、营业执照经营范围:许可项目包含至少一项【兽药经营,饲料/添加剂销售,宠物食品及用品零售,宠物服务(不含动物诊疗)】; 2、兽药经营企业须提供《兽药经营许可证》,饲料/添加剂销售企业需提供生产厂商的《饲料生产许可证》 、《饲料添加剂生产许可证》; 3、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 4、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378042, '宠物保健', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378048, '口/耳/眼清洁', '1、营业执照经营范围:许可项目包含至少一项【兽药经营,饲料/添加剂销售,宠物食品及用品零售,宠物服务(不含动物诊疗)】; 2、兽药经营企业须提供《兽药经营许可证》,饲料/添加剂销售企业需提供生产厂商的《饲料生产许可证》 、《饲料添加剂生产许可证》; 3、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 4、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378042, '宠物保健', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378050, '强化免疫', '1、营业执照经营范围:许可项目包含至少一项【兽药经营,饲料/添加剂销售,宠物食品及用品零售,宠物服务(不含动物诊疗)】; 2、兽药经营企业须提供《兽药经营许可证》,饲料/添加剂销售企业需提供生产厂商的《饲料生产许可证》 、《饲料添加剂生产许可证》; 3、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称);②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 4、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 378042, '宠物保健', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378052, '延保服务', '', 0, '涉及联保/延保、屏碎保、意外保类目,需提供购买的有效期内的保险协议或保单', 2, 378051, '服务产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378053, '远程服务', '', 0, '', 0, 378051, '服务产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378054, '电脑办公设备保养', '', 0, '', 0, 378051, '服务产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378055, '域名注册', '', 0, '', 0, 378051, '服务产品', 6706, '电脑、办公', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378057, '婴幼儿奶粉', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、婴幼儿配方奶粉需提供《婴幼儿配方乳粉注册证书》2、商品标题需说明奶粉适用范围、婴幼儿奶粉需注明奶粉段位或适用年龄段', 1, 378056, '奶粉', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378058, '孕妈奶粉', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378056, '奶粉', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378060, '米粉/菜粉', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378061, '果泥/果汁', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378062, '益生菌/初乳', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378063, '钙铁锌/维生素', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378064, '清火/开胃', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378065, 'DHA', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378066, '面条/粥', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378067, '宝宝零食', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '经营特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容)②产品实物的标签、说明书', 1, 378059, '营养辅食', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378069, '清洗美容', '', 0, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378070, '功能升级', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378071, '保养维修', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378072, '驾驶培训', '需提供申请主体的《机动车驾驶员培训许可》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378073, '陪练', '', 0, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378074, '钣金喷漆', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378075, '更换轮胎', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378076, '换刹车片', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378077, '换刹车盘', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378078, '空调清洗', '', 0, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378079, '车辆改装', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378080, '保养套餐', '', 0, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378081, '洗车服务', '', 0, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378082, '换空调滤', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378083, '更换变速箱油', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378085, '内外饰改装', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378086, '改装周边', '1、需提供《机动车维修经营备案证明》; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议; 4、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。', 1, '', 0, 378084, '赛事改装', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378087, '电子改装', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378088, '性能改装', '需提供申请主体的《机动车维修经营备案证明》', 1, '', 0, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378090, '增强免疫', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378093, '人参/西洋参', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378094, '燕窝', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378095, '阿胶', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378096, '灵芝/孢子粉', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378105, '石斛', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378111, '赛事报名', '1、营业执照(且经营许可范围内包含对应经营类目); 2、涉及游泳、滑雪等高危险性体育项目需提供《高危性性体育项目经营许可证》。', 1, '', 0, 378110, '体育服务', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378112, '团体培训', '1、营业执照(且经营许可范围内包含对应经营类目); 2、涉及游泳、滑雪等高危险性体育项目需提供《高危性性体育项目经营许可证》。', 1, '', 0, 378110, '体育服务', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378113, '私教培训', '1、营业执照(且经营许可范围内包含对应经营类目); 2、涉及游泳、滑雪等高危险性体育项目需提供《高危性性体育项目经营许可证》。', 1, '', 0, 378110, '体育服务', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378115, '店铺运营', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378114, '软件服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378116, '店铺营销', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378114, '软件服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378117, '客户关系管理', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378114, '软件服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378118, '数据分析', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378114, '软件服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378120, '入驻服务', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378121, '整体托管', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378122, '客服外包', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378123, '协运营服务', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378124, '平面视觉设计', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378125, '推广代运营', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378126, '店铺诊断', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378127, '内容营销', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378128, '产业园运营', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 378119, '运营服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378134, '摄影服务', '营业执照(且经营许可范围内包含对应经营类目)', 1, '', 0, 377094, '摄影/视频服务/文印', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378135, '视频服务', '', 0, '', 0, 377094, '摄影/视频服务/文印', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378138, '黄金吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378139, '黄金手镯', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378140, '黄金戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378141, '黄金耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378142, '黄金转运珠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378143, '黄金项链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378144, '黄金手链/脚链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378146, '银吊坠/项链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378145, '银饰', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378147, '银手链/脚链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378145, '银饰', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378148, '银戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378145, '银饰', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378149, '宝宝银饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378145, '银饰', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378150, '银手镯', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378145, '银饰', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378151, '银耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378145, '银饰', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378152, '特殊商品', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378145, '银饰', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378154, '裸钻', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378153, '钻石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378155, '钻戒', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378153, '钻石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378156, '钻石项链/吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378153, '钻石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378157, '钻石耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378153, '钻石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378158, '钻石手镯/手链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378153, '钻石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378159, '定制定金补差', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378153, '钻石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378160, '特殊商品', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378153, '钻石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378162, '翡翠吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378161, '翡翠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378163, '翡翠手镯', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378161, '翡翠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378164, '翡翠戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378161, '翡翠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378165, '翡翠耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378161, '翡翠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378166, '挂件/摆件/把件', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378161, '翡翠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378167, '特殊商品', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378161, '翡翠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378169, '项链/吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378168, '水晶玛瑙', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378170, '耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378168, '水晶玛瑙', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378171, '手镯/手链/脚链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378168, '水晶玛瑙', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378172, '戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378168, '水晶玛瑙', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378173, '头饰/胸针', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378168, '水晶玛瑙', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378174, '摆件/挂件', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378168, '水晶玛瑙', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378175, '特殊商品', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378168, '水晶玛瑙', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378177, '琥珀/蜜蜡', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378178, '碧玺', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378179, '红宝石/蓝宝石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378180, '坦桑石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378181, '珊瑚', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378182, '祖母绿', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378183, '其他天然宝石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378184, '葡萄石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378185, '定制定金补差', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378176, '彩宝', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378187, '铂金项链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378186, '铂金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378188, '铂金手镯/手链/脚链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378186, '铂金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378189, '铂金戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378186, '铂金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378190, '铂金耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378186, '铂金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378191, '铂金吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378186, '铂金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378193, '珍珠项链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378194, '珍珠吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378195, '珍珠耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378196, '珍珠手链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378197, '珍珠戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378198, '珍珠胸针', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378199, '特殊商品', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378200, '珍珠裸珠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378192, '珍珠', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378202, 'K金吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378201, 'K金饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378203, 'K金项链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378201, 'K金饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378204, 'K金手镯/手链/脚链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378201, 'K金饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378205, 'K金戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378201, 'K金饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378206, 'K金耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378201, 'K金饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378208, '和田玉项链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378207, '和田玉', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378209, '和田玉吊坠', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378207, '和田玉', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378210, '和田玉手镯', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378207, '和田玉', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378211, '和田玉手链', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378207, '和田玉', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378212, '和田玉戒指', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378207, '和田玉', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378213, '和田玉耳饰', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378207, '和田玉', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378214, '特殊商品', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378207, '和田玉', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378216, '青金石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378215, '其它玉石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378217, '绿松石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378215, '其它玉石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378218, '蓝田玉', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378215, '其它玉石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378219, '石英岩', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378215, '其它玉石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378221, '合成钻石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378220, '合成/人造宝石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378222, '莫桑石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378220, '合成/人造宝石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378223, '合成红/蓝宝石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378220, '合成/人造宝石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378224, '更多合成/人造宝石', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378220, '合成/人造宝石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378226, '珠宝维修', '', 0, '', 0, 378225, '珠宝服务', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378227, '珠宝清洗/保养', '', 0, '', 0, 378225, '珠宝服务', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378230, '项链', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378231, '手链/脚链', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378232, '戒指', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378233, '耳饰', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378234, '胸针', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378235, '婚庆饰品', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378236, '饰品配件', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378237, '毛衣链', '', 0, '', 0, 378229, '时尚饰品', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378240, '发箍', '', 0, '', 0, 527037, '其他配饰', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378241, '发带', '', 0, '', 0, 527037, '其他配饰', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378242, '发圈/发绳', '', 0, '', 0, 527037, '其他配饰', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378243, '发簪', '', 0, '', 0, 527037, '其他配饰', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378244, '发饰套装', '', 0, '', 0, 527037, '其他配饰', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378245, '其他发饰', '', 0, '', 0, 527037, '其他配饰', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378246, '发夹', '', 0, '', 0, 527037, '其他配饰', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378249, '小叶紫檀', '', 0, '一年以内质检报告或鉴定证书,必要检测项要求如下:商标/商品图,检测单位,商品成分各含量鉴定结论', 1, 378248, '木手串/把件', 378228, '时尚首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378250, '黄花梨', '', 0, '一年以内质检报告或鉴定证书,必要检测项要求如下:商标/商品图,检测单位,商品成分各含量鉴定结论', 1, 378248, '木手串/把件', 378228, '时尚首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378251, '沉香木', '', 0, '一年以内质检报告或鉴定证书,必要检测项要求如下:商标/商品图,检测单位,商品成分各含量鉴定结论', 1, 378248, '木手串/把件', 378228, '时尚首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378252, '金丝楠', '', 0, '一年以内质检报告或鉴定证书,必要检测项要求如下:商标/商品图,检测单位,商品成分各含量鉴定结论', 1, 378248, '木手串/把件', 378228, '时尚首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378253, '菩提', '', 0, '一年以内质检报告或鉴定证书,必要检测项要求如下:商标/商品图,检测单位,商品成分各含量鉴定结论', 1, 378248, '木手串/把件', 378228, '时尚首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378255, '橄榄核/核桃', '', 0, '一年以内质检报告或鉴定证书,必要检测项要求如下:商标/商品图,检测单位,商品成分各含量鉴定结论', 1, 378248, '木手串/把件', 378228, '时尚首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (378256, '檀香', '', 0, '一年以内质检报告或鉴定证书,必要检测项要求如下:商标/商品图,检测单位,商品成分各含量鉴定结论', 1, 378248, '木手串/把件', 378228, '时尚首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (379009, '会计考试培训', '1、线下授课:提供申请主体的人力资源社会保障部门批准的文件或《民办学校办学许可证》 2、线上授课:①需提供申请主体的《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》;②提供申请主体的人力资源社会保障部门批准的文件或《民办学校办学许可证》。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (382005, '青少年素质培养', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 383005, '青少年素质教育', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (420002, '时政新闻', '需提供申请主体的《报纸出版许可证》', 1, '', 0, 429006, '报纸', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (420003, '整体全包', '需提供:1、住建部颁发的工程设计与施工资质相应等级证书(主要含室内装修、装饰范围);2、各级建设厅颁发的相应的建筑业企业资质证书;3、经营装修施工需拥有3个(含)以上实体门店,上传门店的门头照片; 注:营业执照:加载“统一社会信用代码”的营业执照,经营整体全包、整体半包需公司注册满2年,注册资金200万(含)以上,其他类目需公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 377103, '装修服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (421001, '差价', '', 0, '商品信息中需说明是哪款商品的补差价链接', 2, 430005, '差价', 429008, '其他', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (421002, '酒店套餐', '1、若为单体酒店需提供:①《卫生许可证 》;②《特种行业许可证》;③如涉及自助餐券需提交餐饮服务许可(如已三证合一可提交食品经营许可)。2、若为酒店集团需提供:①集团旗下一家酒店的资质(同单体酒店);②集团与该提供资质的酒店间的管理关系证明并附集团旗下所有酒店名单。3、若为旅行社需提供:(1)总社需提供:①《旅行社经营许可证》;②《旅行社责任险保险单》;(2) 分社需提供:①《分社备案登记证明》;②《旅行社责任险保险单》(保险若为总社统一购买请提供总社的《旅行社责任险保险单》);③总社的《旅行社业务经营许可证》。4、若为非旅行社(酒店代理商)需提供:①酒店合作协议;②合作酒店的资质(同单体酒店)。', 1, '', 0, 435005, '酒店预订', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (422001, '缓解疲劳', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (422002, '其他滋补品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (422003, '其他兴趣生活', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (422004, '安装维修', '需提供:1、住建部颁发的工程设计与施工资质相应等级证书(主要含室内装修、装饰范围);2、各级建设厅颁发的相应的建筑业企业资质证书;3、经营装修施工需拥有3个(含)以上实体门店,上传门店的门头照片; 注:营业执照:加载“统一社会信用代码”的营业执照,经营整体全包、整体半包需公司注册满2年,注册资金200万(含)以上,其他类目需公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 442007, '装修服务', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (422006, '疫苗 ', '1、需提供《兽药经营许可证》或《兽药生产许可证》; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、国产:外包装照片,显示兽药的通用名称、成分、生产企业、产品批准文号产品批号、生产日期、有效期;2、 进口:外包装照片,显示兽药的通用名称、成分、生产企业、进口兽药注册证号,产品批号、生产日期、有效期证', 1, 422005, '宠物医疗', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (422007, '艺术展览', '', 0, '主办方:《营业执照》含相关范围; 代理方:提供主办方的授权文件+主办方的营业执照', 1, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (423002, '清咽利喉', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (423005, '办公技能', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (423006, '出国留学', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (424001, '养肝护肝', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (424002, '改善贫血', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (424003, '三七', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (424004, '茯苓', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (424005, '整体半包', '需提供:1、住建部颁发的工程设计与施工资质相应等级证书(主要含室内装修、装饰范围);2、各级建设厅颁发的相应的建筑业企业资质证书;3、经营装修施工需拥有3个(含)以上实体门店,上传门店的门头照片; 注:营业执照:加载“统一社会信用代码”的营业执照,经营整体全包、整体半包需公司注册满2年,注册资金200万(含)以上,其他类目需公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 377103, '装修服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (427002, '代写服务', '需提供申请主体的《营业执照》(经营范围需包含相关内容)', 1, '', 0, 423004, '商务服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (427003, '考研辅导', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (427004, '装修设计', '需提供(2选1): 1、各级装饰协会颁发的室内装饰企业资质等级证书等证明文件; 2、提供五套设计案例,每套设计案例需包含以下四项资质:①案例家具平面布置图、地面铺装图、顶面设计图;②至少三张不同空间的效果图;③完工案例实景照片至少五张;④案例基础信息:项目地址、户型、面积、造价、项目介绍(风格、思路、灵感等)(word格式)。 注:营业执照:加载“统一社会信用代码”的营业执照且需公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 442007, '装修服务', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (428001, '肠胃养护', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (428002, '调节三高', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (428003, '减肥塑身', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (428004, '明目益智', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (428005, '财经商业', '需提供申请主体的《报纸出版许可证》', 1, '', 0, 429006, '报纸', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (428006, '启蒙早教', '1、《民办学校办学许可证》 2、 2选1:① 营业执照,业务范围(或经营范围)中应包含“儿童教育”“学前教育”等;②《民办非企业单位法人证书》。 3、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 4、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 383005, '青少年素质教育', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (428008, '国际酒店', '1、若为单体酒店需提供:①《卫生许可证 》;②《特种行业许可证》;③如涉及自助餐券需提交餐饮服务许可(如已三证合一可提交食品经营许可)。2、若为酒店集团需提供:①集团旗下一家酒店的资质(同单体酒店);②集团与该提供资质的酒店间的管理关系证明并附集团旗下所有酒店名单。3、若为旅行社需提供:(1)总社需提供:①《旅行社经营许可证》;②《旅行社责任险保险单》;(2) 分社需提供:①《分社备案登记证明》;②《旅行社责任险保险单》(保险若为总社统一购买请提供总社的《旅行社责任险保险单》);③总社的《旅行社业务经营许可证》。4、若为非旅行社(酒店代理商)需提供:①酒店合作协议;②合作酒店的资质(同单体酒店)。', 1, '', 0, 435005, '酒店预订', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (429002, '蜂产品', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (429003, '枸杞', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (429005, '法律咨询', '1、营业执照(且经营许可范围内包含法律咨询等相关项目);2、仅向依法设立的法律服务机构开放,请提供申请主体的《律师事务所执业许可证》或经司法厅批准成立法律服务机构的文件', 1, '', 0, 429004, '法律服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (429007, '其他语言培训', '需提供申请主体的《营业执照》(经营范围需包含相关内容)', 1, '', 0, 383005, '青少年素质教育', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (429009, '兽药', '1、需提供《兽药经营许可证》或《兽药生产许可证》; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称)②《出入境检验检疫证明》或《出入境检验检疫卫生证书》(检疫证明或卫生证书需与报关单的合同协议号一致、且报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、国产:外包装照片,显示兽药的通用名称、成分、生产企业、产品批准文号产品批号、生产日期、有效期;2、 进口:外包装照片,显示兽药的通用名称、成分、生产企业、进口兽药注册证号,产品批号、生产日期、有效期证', 1, 422005, '宠物医疗', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430001, '改善睡眠', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430002, '薤白', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430003, '文化休闲', '需提供申请主体的《报纸出版许可证》', 1, '', 0, 429006, '报纸', 135835, '图书', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430007, '邮费', '', 0, '商品信息中需说明各地区的补运费的明细', 2, 435004, '邮费', 429008, '其他', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430008, '国内酒店', '1、若为单体酒店需提供:①《卫生许可证 》;②《特种行业许可证》;③如涉及自助餐券需提交餐饮服务许可(如已三证合一可提交食品经营许可)。2、若为酒店集团需提供:①集团旗下一家酒店的资质(同单体酒店);②集团与该提供资质的酒店间的管理关系证明并附集团旗下所有酒店名单。3、若为旅行社需提供:(1)总社需提供:①《旅行社经营许可证》;②《旅行社责任险保险单》;(2) 分社需提供:①《分社备案登记证明》;②《旅行社责任险保险单》(保险若为总社统一购买请提供总社的《旅行社责任险保险单》);③总社的《旅行社业务经营许可证》。4、若为非旅行社(酒店代理商)需提供:①酒店合作协议;②合作酒店的资质(同单体酒店)。', 1, '', 0, 435005, '酒店预订', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430009, '电影票', '需提供申请主体的《电影发行经营许可证》或《电影放映许可证》', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430010, '境外游学 ', '需提供申请主体的《旅行社业务经营许可证》,证件的经营范围需包含出境旅游', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (430011, '赠品', '', 0, '', 0, 429010, '赠品', 429008, '其他', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (431001, '骨骼健康', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (431002, '藿香', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (431004, '监理服务', '需提供:1、住建部颁发的工程设计与施工资质相应等级证书(主要含室内装修、装饰范围);2、各级建设厅颁发的相应的建筑业企业资质证书;3、工程监理需提供建设部或中国室内装饰协会(含地区性装饰协会)颁发的工程监理资质证书; 注:营业执照:加载“统一社会信用代码”的营业执照且公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 442007, '装修服务', 1701, '家装建材', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (431006, '其他线下活动 ', '', 0, '主办方:《营业执照》含相关范围; 代理方:提供主办方的授权文件+主办方的营业执照', 1, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (431007, '体育赛事', '', 0, '主办方:《营业执照》含相关范围; 代理方:提供主办方的授权文件+主办方的营业执照', 1, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (431008, '动漫展览', '', 0, '主办方:《营业执照》含相关范围; 代理方:提供主办方的授权文件+主办方的营业执照', 1, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (435001, '律师服务', '1、营业执照(且经营许可范围内包含法律咨询等相关项目);2、仅向依法设立的法律服务机构开放,请提供申请主体的《律师事务所执业许可证》或经司法厅批准成立法律服务机构的文件', 1, '', 0, 429004, '法律服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (435002, '语言培训', '', 0, '', 0, 381004, '大学生培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (435006, '诊治服务 ', '需提供申请主体的《营业执照》(经营范围包括动物诊疗等)和《动物诊疗许可证》', 1, '', 0, 422005, '宠物医疗', 1208, '宠物生活', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (436003, '音乐/舞蹈/戏曲演出 ', '1、演出举办单位需提供:《营业性演出许可证》。2、代理方需提供:持演出举办单位提供的授权文件+举办方的《营业性演出许可证》', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (436004, '航空兑换卡', '需提供申请主体的《营业执照》、《商标注册证》和《公共航空运输企业经营许可证》', 1, '', 0, 436002, '会员卡券', 429008, '其他', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (441001, '协会会费', '', 0, '', 0, 423003, '生活缴费', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (441002, '义卖商品', '需提供[《慈善组织登记证书》](https://developers.weixin.qq.com/doc/ministore/minishopspecification/zizhizhengzhao/zizhi/cishandj/cishandj.html)或[《慈善组织公开募捐资质证书》](https://developers.weixin.qq.com/doc/ministore/minishopspecification/zizhizhengzhao/zizhi/cishanmj/cishanmj.html)或提供由登记地所在地的民政部门认定为慈善组织的文件证明材料', 1, '', 0, 436001, '公益', 442005, '公益服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (441003, '文艺修养', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (441004, '家长教育', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 383005, '青少年素质教育', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (441006, '预付卡', '需提供:1、申请主体的发卡方单用途预付卡备案的证明文件; 2、发卡企业向备案机关提交的包含该入驻商家(售卡单位)的售卡企业清单及承诺函(入驻商家为发卡方无需提供此项)。', 1, '', 0, 436002, '会员卡券', 429008, '其他', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (441008, '优惠券', '', 0, '', 0, 431009, '团购促销', 429008, '其他', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (442002, '美容养颜', '1、需提供《食品经营许可证》(经营项目包含保健食品销售)或《食品生产许可证》(食品类别包含保健食品); (注:自贸区企业若无法提供《食品经营许可证》,需提供营业执照(经营范围需包含保健食品销售)); 2、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 3、经营进口商品需提供:①近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议;②入境货物检验检疫证明:经营进口商品,需提供与报关单合同协议号一致的检验检疫证明。 ', 1, '需提供1、《国产保健食品批准证书》或《进口保健食品批准证书》; 2、产品中文标签、中文说明书; 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单。', 1, 378089, '保健食品', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (442003, '葛根', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (442004, '桑葚', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (442008, '局部装修', '需提供:1、住建部颁发的工程设计与施工资质相应等级证书(主要含室内装修、装饰范围);2、各级建设厅颁发的相应的建筑业企业资质证书;3、经营装修施工需拥有3个(含)以上实体门店,上传门店的门头照片; 注:营业执照:加载“统一社会信用代码”的营业执照,经营整体全包、整体半包需公司注册满2年,注册资金200万(含)以上,其他类目需公司注册满2年,注册资金100万(含)以上。', 1, '', 0, 377103, '装修服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (454001, '境内游学 ', '需提供申请主体的《旅行社业务经营许可证》', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (454002, '餐饮', '需提供申请主体的《食品经营许可证》、《食品流通许可证》、《小餐饮登记》(任一)或其他同等效力证件', 1, '', 0, 527035, '餐饮', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (468002, '预约服务', '1、需提供申请主体的《营业执照》(需包含家具经营范围);2、请上传线下门店照片', 1, '(选填) 请说明预约服务具体规则,并在商品详情中标注(规则需明确到店后,如不产生消费,不增收费用)', 2, 1363, '定制家具', 1247, '家具', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (469001, '预约服务', '1、如主体为房产开发商需提供《营业执照》(经营范围需包含房地产开发); 2、如主体为房产中介机构需提供《营业执照》(经营范围需包含房地产中介/经济服务)', 1, '1.房产开发商需提供所展示楼盘的《商品房预售许可证》或《商品房销售许可证》(主体名应与证件主体一致); 2.房产中介需提供当地政府的备案公示 ;3.商品为预约服务类型,请说明具体规则。', 1, 468001, '房地产', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (477001, '汽车试驾', '1、如主体为汽车厂商需提供《营业执照》和《工信部道路机动车辆生产企业准入许可》; 2、如主体为汽车经销商/4s店需提供《营业执照》和《厂商授权销售文件》与《工信部道路机动车辆生产企业准入许可》; 3、如主体为下属子/分公司需提供《营业执照》、《工信部道路机动车辆生产企业准入许可》与《股权关系证明函》(含双方盖章); 注:需提供线下门店照片', 1, '(选填)请说明试驾具体规则,并在商品详情中标注(规则需明确仅试驾不增收其他费用)', 2, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (480001, '权益券', '1、如主体为房地产开发商:①需提供《营业执照》(经营范围需包含房地产开发);②房地产开发资质等级证书或房地产开发企业暂定资质证书; 2、如主体为非房地产开发商:①需提供与开发商之间的合作协议(如:授权书);②开发商的房地产开发资质等级证书或房地产开发企业暂定资质证书;③开发商的《营业执照》(经营范围需包含房地产开发)', 1, '1、如主体为房地产开发商需要在商品详情处展示楼盘的《商品房预售许可证》或《商品房销售许可证》; 2、如主体非房地产开发商①需要提供与开发商之间的合作协议(如:授权书);②需要在商品详情展处示对应合作楼盘的《商品房预售许可证》或《商品房销售许可证》', 1, 468001, '房地产', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494001, '预约报名', '', 0, '(选填)商品为预约服务类型,请说明试驾具体规则', 2, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494003, '岫岩玉', '需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378215, '其它玉石', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494028, '加油服务', '行业运营商主体: ①需提供申请主体的《成品油零售经营批准证书》;②发卡方单用途预付卡备案的证明文件。 代理经销商主体: ①需提供与油企品牌直接签署的协议;②发卡方单用途预付卡备案的证明文件;', 1, '', 0, 527036, '加油服务', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494033, '暖宝宝', '', 0, '', 0, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494034, '冲浪机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494036, '体测仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494037, '户外电源', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494038, '瑜伽手套', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494039, '月子装', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494040, '风衣', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494041, '休闲裤', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494042, '休闲短裤', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494043, '连衣裙', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494044, '浴袍', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494045, '羊蝎子', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '(选填)若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件', 2, 527038, '半成品菜/方便菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494046, '健身健美', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494047, '韩语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494048, '学历/职业考试线下', '1、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》加营业执照(经营范围中应包含“教育培训”),或《民办非企业单位法人证书》。②《事业单位法人证书》(适用公立学校); 2、 线下授课需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 530065, '本地教育培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (494049, '早教中心', '1、《民办学校办学许可证》 2、 2选1:① 营业执照,业务范围(或经营范围)中应包含“儿童教育”“学前教育”等;②《民办非企业单位法人证书》。 3、若涉及餐饮服务提供的,需提供《食品经营许可证》。 4、早教中心场地证明(场地和校舍产权证明或合法规范的租赁协议书)及门店照。', 1, '', 0, 530065, '本地教育培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496026, '芝麻丸', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '1、若经营单一的且未经炮制、加工的中药材类初级农产品须符合以下要求: ①商品外包装须符合《农产品包装和标识管理办法》的规定,应当在包装物上标注或者附加标识标明品名、产地、生产者或者销售者名称、生产日期;②需在商品详情处自我声明不属于中药饮片,不得替代中药饮片作临床调剂和中成药原料使用 2、产品中文标签、中文说明书 3、委托加工协议:产品标签中存在委托生产关系的,需提供品牌商和生产商的委托加工协议,另附产品清单 4、农产品地理标志登记证书:标记产地的农产品需提供《农产品地理标志登记证书》', 2, 378091, '传统滋补', 7419, '食品饮料', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496027, '餐饮优惠/兑换券', '餐饮店主体: 需提供申请主体的《食品经营许可证》(经营范围需含餐饮制作相关项目)扫描件。 非餐饮店主体: 需提供:①《餐饮平台与门店的管理关系声明》;②《微信小商店餐饮门店运营资质和责任承诺函》(含旗下所以门店名单);③卡券使用门店的《食品经营许可证》(经营范围需含餐饮制作)扫描件', 1, '', 0, 527035, '餐饮', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496029, '男士须后水', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496031, '美妆蛋/化妆海棉', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496032, '足部护理', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '(选填)若为国产特殊用途化妆品,需提供国产特殊用途化妆品卫生许可批件; 若为进口化妆品,需提供进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 2, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496033, '健身吊环', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496034, '体操鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496035, '冲锋裤', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496036, '速干材质衣服', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496037, '板鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496038, '体育运动', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496039, '烹饪', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496040, '摄影摄像', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496041, '司法考试', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496043, '清洁仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (496044, '健美操', '《营业执照》(经营范围包含运动类、健身等相关项目)', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502003, '私人定制游', '1、旅行社总社需提供:①《旅行社业务经营许可证》;②旅行社责任险保险单 。 2、旅行社分社需提供:①旅行社分社备案登记证明; ②旅行社责任险保险单(若为总社统一购买提供总社旅行社责任险保险单);③总社的《旅行社业务经营许可证》; ④旅行社分社和总社补充协议(如:由总社出具的知情同意责任书)。 3、旅行社若经营“境外一日游/多日游”“潜水”、“境外玩乐套餐”、“接送(机场/点对点/拼车)”类目,除提供上述资质外,还须提供至少一份与实际服务提供方的有效合作协议', 1, '', 0, 525002, '旅游度假', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502005, '定金', '1、如主体为汽车厂商需提供《营业执照》和《工信部道路机动车辆生产企业准入许可》; 2、如主体为汽车经销商/4s店需提供《营业执照》和《厂商授权销售文件》与《工信部道路机动车辆生产企业准入许可》; 3、如主体为下属子/分公司需提供《营业执照》、《工信部道路机动车辆生产企业准入许可》与《股权关系证明函》(含双方盖章); 注:需提供线下门店照片', 1, '请商详中说明定金具体规则,并在商品标题中注明(定金)', 2, 378068, '汽车服务', 6263, '汽车', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502006, '专车', '需提供申请主体的《网络预约出租汽车经营许可证》', 1, '', 0, 521002, '打车(网约车)', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502007, '流量充值', '运营商主体:需提供《基础电信业务经营许可证》 非运营商主体:提供运营商(移动、联通、电信)的代理合同或合作协议等正规渠道证明(协议需含代理范围/代理产品)', 1, '', 0, 1966, '通信服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502009, '金条', '1、需提供申请主体《营业执照》(经营范围包括销售黄金制品等) 2、需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '商品介绍应当对可能存在的风险以及风险责任承担有合理提示或者警示,不得对收益或者与其相关的情况作出保证性承诺,不得利用学术机构、行业协会、专业人士、受益者的名义或者形象作推荐、证明', 2, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502034, '羽绒裤', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502035, '羽绒裤', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502040, '素颜霜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502041, '弹力棒/健身棒', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502042, '健身椅', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502044, '菌/菇/酵素', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502045, '植物精华/提取物', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502046, '烹饪烘焙小吃餐饮培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502047, '财务/会计培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502048, '法语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502049, '少儿体育培训', '1、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》加营业执照(经营范围中应包含“教育培训”),或《民办非企业单位法人证书》。②《事业单位法人证书》(适用公立学校); 2、 线下授课需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 530065, '本地教育培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (502050, '蹦床', '1、 《营业执照》。 2、 《娱乐场所经营许可证》。', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (508001, '国内旅游', '1、旅行社总社需提供:①《旅行社业务经营许可证》;②旅行社责任险保险单 。 2、旅行社分社需提供:①旅行社分社备案登记证明; ②旅行社责任险保险单(若为总社统一购买提供总社旅行社责任险保险单);③总社的《旅行社业务经营许可证》; ④旅行社分社和总社补充协议(如:由总社出具的知情同意责任书)。 3、旅行社若经营“境外一日游/多日游”“潜水”、“境外玩乐套餐”、“接送(机场/点对点/拼车)”类目,除提供上述资质外,还须提供至少一份与实际服务提供方的有效合作协议', 1, '', 0, 525002, '旅游度假', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510023, '唐装/中式服装', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510025, '按摩膏/磨砂膏', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510026, '健身锤', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510027, '腕力器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510028, 'ems健身仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510029, '户外沐浴器', '1、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 2、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 2, '', 0, 7117, '户外装备', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510030, '背心/吊带', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510032, '量脚器', '', 0, '', 0, 510031, '童鞋配件', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510033, '动物精华/提取物', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510034, '护肤美妆', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510035, '口译服务', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510036, '葡萄牙语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510038, '导入/导出仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (510039, '羽毛球馆', '《营业执照》(经营范围包含运动类、健身等相关项目)', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517004, '外套', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517005, '宽带新装', '运营商主体:需提供《基础电信业务经营许可证》 非运营商主体:①提供与市级以上移动运营商(电信/联通需提供省级以上)的代理合同或合作协议等正规渠道证明②提供合作协议对应运营商授权认证的《网络销售与实名制授权书》③提供合作协议对应运营商统一配发的授权防伪二维码标识④最近6个月在对应省份的宽带竣工订单数量数据表且加盖运营商部门章,或运营商出具的宽带竣工订单数量证明函', 1, '', 0, 1966, '通信服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517035, '男士精油', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517036, '男士鼻贴', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517039, '呼啦圈', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517040, '计步器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517041, '健身球/保健球', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517042, '扭腰盘', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517043, '钢管舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517044, '皮鞋', '', 0, '列入《人工繁育国家重点保护野生动物名录》的野生动物制品需依法凭专用标识出售和利用', 2, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517045, '海洋生物类', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517046, '脂肪酸/脂类', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517047, '蛋白粉/氨基酸/胶原蛋白', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517048, '收纳技巧', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517049, '自媒体运营', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517050, '方案策划', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517054, '其他金工', '1、需提供申请主体《营业执照》(经营范围包括销售黄金制品等) 2、需提供1款由国/省/市级质监局或同级别检测机构出具的完整的相关质检/检测报告。报告需包含:① CMA或CNAS标识;② 商标/商品图、检测单位、商品成分各含量鉴定结论', 1, '', 0, 378137, '黄金', 378136, '珠宝首饰', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517055, '优惠券', '需提供《网络预约出租汽车经营许可证》或《营业执照》(经营范围包含“票务代理”)。', 1, '', 0, 496042, '票务', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (517056, '瑜伽', '《营业执照》(经营范围包含运动类、健身等相关项目)', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521001, '保险', '需提供保险机构主体以下资质(10选1): 1、《保险公司法人许可证》; 2、《经营保险业务许可证》 ;3、《保险营销服务许可证》; 4、《经营保险代理业务许可证》(业务范围为“全国”); 5、《经营保险经纪业务许可证》(业务范围为“全国”); 6、《经营保险公估业务许可证》或《经营保险公估业务备案》 (业务范围为“全国”);7、《经营保险资产管理业务许可证》 ;8、银行类主体《保险兼业代理业务许可证》 ;9、《保险许可证》;10、《保险中介许可证》', 1, '(选填)请商详中说明投保须知和理赔流程', 2, 524003, '金融服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521034, '餐饮预付卡', '需提供: ①发卡方单用途预付卡备案的证明文件; ②发卡企业向备案机关提交的包含该入驻商家(售卡单位)的售卡企业清单及承诺函(入驻商家为发卡方无需提供此项); ③卡券使用门店的《食品经营许可证》(经营范围需含餐饮制作相关项目)扫描件。', 1, '', 0, 527035, '餐饮', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521035, '男士喷雾', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521036, '男士眼膜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521037, '眉毛雨衣', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521038, '喉鼻护理', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '(选填)若为国产特殊用途化妆品,需提供国产特殊用途化妆品卫生许可批件; 若为进口化妆品,需提供进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 2, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521039, '手部护理', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '(选填)若为国产特殊用途化妆品,需提供国产特殊用途化妆品卫生许可批件; 若为进口化妆品,需提供进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 2, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521040, '举重床/卧推器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521041, '牛仔服装', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521042, '其他鞋配件', '', 0, '', 0, 510031, '童鞋配件', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521043, '关东煮', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '(选填)若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件', 2, 527038, '半成品菜/方便菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521045, '海洋生物类', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521046, '维生素/矿物质/钙铁锌硒', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521047, '时尚穿搭', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521048, '美容美发', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521049, '驾驶技能', '1、 提交线下门店信息,包括每家门店及培训场地地址信息,每家门店外观和培训场地照片;(门头照片应为实拍图,同时能看出明显品牌logo)。 2、 非驾考平台型的店铺需取得《道路运输经营许可证》;驾考平台型店铺,需取得被代理驾校的委托招生合同或委托招生授权书,以及被代理驾校的《道路运输经营许可证》。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521051, '配镜服务', '需提供:验光人员职业资格证书以及验光设备焦度计、验光仪的年度检定证书。', 1, '', 0, 521050, '便民服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (521052, '酒吧', '1、 《营业执照》。 2、 《公共场所卫生许可证》。 3、 《娱乐场所经营许可证》。 4、 《酒类经营许可证》或《食品经营许可证》。', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524004, '话费充值', '运营商主体:需提供《基础电信业务经营许可证》 非运营商主体:提供运营商(移动、联通、电信)的代理合同或合作协议等正规渠道证明(协议需含代理范围/代理产品)', 1, '', 0, 1966, '通信服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524027, '中山装', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524030, '跳跳床/蹦蹦床', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524031, '健身踏板/韵律踏板', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524032, '美腿机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524033, '藏族舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524034, '摩登舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524035, '煲仔饭', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '(选填)若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件', 2, 527038, '半成品菜/方便菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524036, '菌/菇/酵素', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524037, '舞蹈表演', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524038, '职业发展/人力资源/管理营销', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524039, '财税法培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524040, '自学考试培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524041, '笔译服务', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524042, '其他语种', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524043, '代金券', '需提供《网络预约出租汽车经营许可证》或《营业执照》(经营范围包含“票务代理”)。', 1, '', 0, 496042, '票务', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (524044, '黑头仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525032, '定妆喷雾', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525033, '身体乳/油', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525034, '草裙舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525035, '妈咪包/背婴带', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525036, '滑雪服', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525037, '防晒衣', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525038, '软壳衣/软壳裤', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525039, '发育内衣/抹胸', '', 0, '', 0, 494030, '童装内衣裤', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525040, '佛跳墙', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '(选填)若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件', 2, 527038, '半成品菜/方便菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525041, '其他膳食营养补充食品', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525042, '膳食纤维/碳水化合物', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525043, '脂肪酸/脂类', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525044, '植物精华/提取物', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525045, '日语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525046, '恋爱技巧', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 510037, '情感心理', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525047, '婚姻经营', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 510037, '情感心理', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525048, '喷雾补水仪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (525049, '综合健身', '《营业执照》(经营范围包含运动类、健身等相关项目)', 1, '如涉及到游泳项目,需提供《高危险性体育项目经营许可证》。', 2, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526001, '快车', '需提供申请主体的《网络预约出租汽车经营许可证》', 1, '', 0, 521002, '打车(网约车)', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526002, '出租车', '需提供(2选1): 1、出租车公司:《道路运输经营许可证》; 2、出租车平台:与出租车公司合作协议 以及合作出租车公司的《道路运输经营许可证》', 1, '', 0, 510002, '出租车', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526005, '高段位奶粉', '1、国产商品需提供(4选1)1.《食品经营许可证》;2.《食品生产许可证》;3. ①《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】; ②《预包装食品销售备案凭证》(若当地未下发备案凭证,请提供证明材料); 4.《营业执照》【经营范围需含“仅销售预包装食品”和“婴幼儿配方乳粉/其他婴幼儿配方食品”】(仅自由贸易试验区适用); 2、若售卖进口商品,除上述(4选1)外还需补充提供:①近一年内的《出入境检验检疫证明》 或《出入境检验检疫卫生证书》;②近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '1、商品标题需说明奶粉适用范围、婴幼儿奶粉需注明奶粉段位或适用年龄段。 2、婴幼儿配方奶粉需提供《婴幼儿配方乳粉注册证书》; 3、特殊食品需提供:①特殊食品的注册/备案文件(文件中应包含标签、说明书的内容);②产品实物的标签、说明书。', 2, 378056, '奶粉', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526031, '喷雾', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6896, '面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526033, '修容/阴影', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526034, '街舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526035, 'POLO衫', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526036, '抓绒衣', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526037, '板鞋', '', 0, '', 0, 7402, '流行男鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526038, '健康养生', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526039, '医学类资格认证', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526040, '俄语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526041, '创业知识', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 530064, '创业理财', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526042, '成人语言线下培训', '1、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》加营业执照(经营范围中应包含“教育培训”),或《民办非企业单位法人证书》。②《事业单位法人证书》(适用公立学校); 2、 线下授课需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 530065, '本地教育培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526043, '少儿才艺', '1、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》加营业执照(经营范围中应包含“教育培训”),或《民办非企业单位法人证书》。②《事业单位法人证书》(适用公立学校); 2、 线下授课需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 530065, '本地教育培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (526044, '滑雪场', '1、 《营业执照》(经营范围包含运动类、健身等相关项目)。 2、 《高危险性体育项目经营许可证》。', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527001, '出境旅游', '1、旅行社总社需提供:①《旅行社业务经营许可证》;②旅行社责任险保险单 。 2、旅行社分社需提供:①旅行社分社备案登记证明; ②旅行社责任险保险单(若为总社统一购买提供总社旅行社责任险保险单);③总社的《旅行社业务经营许可证》; ④旅行社分社和总社补充协议(如:由总社出具的知情同意责任书)。 3、旅行社若经营“境外一日游/多日游”“潜水”、“境外玩乐套餐”、“接送(机场/点对点/拼车)”类目,除提供上述资质外,还须提供至少一份与实际服务提供方的有效合作协议', 1, '', 0, 525002, '旅游度假', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527002, '周边/当地游', '1、旅行社总社需提供:①《旅行社业务经营许可证》;②旅行社责任险保险单 。 2、旅行社分社需提供:①旅行社分社备案登记证明; ②旅行社责任险保险单(若为总社统一购买提供总社旅行社责任险保险单);③总社的《旅行社业务经营许可证》; ④旅行社分社和总社补充协议(如:由总社出具的知情同意责任书)。 3、旅行社若经营“境外一日游/多日游”“潜水”、“境外玩乐套餐”、“接送(机场/点对点/拼车)”类目,除提供上述资质外,还须提供至少一份与实际服务提供方的有效合作协议', 1, '', 0, 525002, '旅游度假', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527041, '假睫毛辅助工具', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527042, '漫步机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527043, '瑜伽披肩', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527044, '啦啦队鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527045, '防溢乳垫', '', 0, '', 0, 6164, '妈妈专区', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527046, '婴童内衣裤', '', 0, '', 0, 6176, '婴童寝居', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527047, '夹克/皮衣', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527048, '汉风/民族/传统布鞋', '', 0, '', 0, 6252, '童鞋', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527049, '鞋垫', '', 0, '', 0, 510031, '童鞋配件', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527050, '酸菜鱼', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '(选填)若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件', 2, 527038, '半成品菜/方便菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527051, '其他方便菜', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '(选填)若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件', 2, 527038, '半成品菜/方便菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527052, '蛋白粉/氨基酸/胶原蛋白', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527053, '运动营养食品', '需提供: 《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》;注:自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品))', 1, '1、请提供商品外包装中文标签图,标签图需包含执行标准、食品生产许可证编号、配料表等关键信息。 2、3选1:① 若商品为企业标准生产的,需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明商品可以以普通食品身份进入市场。②若商品为国家标准生产的, 需提供与商品标签对应一致的、近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告。③若商品为保健食品需要提供 《国产保健食品批准证书》。 3、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 521044, '普通膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527054, '书法绘画', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527055, '体育兴趣', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527056, '建筑地产类培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527057, '宣传文案', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527058, '汉语学习', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527059, '两性关系', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 510037, '情感心理', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527060, '心理成长', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 510037, '情感心理', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527061, '搬家', '1、 《营业执照》(经营范围包含家政服务等相关项目)。 2、 《道路运输经营许可证》。 3、 《车辆营运证》。 4、 若为平台型商家需提供《增值电信业务许可证》,核准业务种类含“在线数据处理与交易处理业务\"或《ICP备案》。', 1, '服务内容标准化,商品必须完整描述服务名称,具体包含的服务内容,商品详情须明确描述有效期,使用注意事项等内容。', 2, 377101, '家政', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527062, '睫毛卷翘器', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '根据相关法律法规及平台运营规则,请上传《国家强制性产品认证证书》(CCC安全认证证书)', 2, 524026, '个护仪器', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527063, '亲子游玩', '1、旅行社总社需提供:① 《旅行社业务经营许可证》;② 旅行社责任险保险单 。 2、旅行社分社需提供:① 旅行社分社备案登记证明; ② 旅行社责任险保险单(若为总社统一购买提供总社旅行社责任险保险单);③ 总社的《旅行社业务经营许可证》; ④旅行社分社和总社补充协议(如:由总社出具的知情同意责任书)。 3、旅行社若经营“境外一日游/多日游”“潜水”、“境外玩乐套餐”、“接送(机场/点对点/拼车)”类目,除提供上述资质外,还须提供至少一份与实际服务提供方的有效合作协议。', 1, '如涉及餐饮服务,需提供:《食品经营许可证》、《食品流通许可证》、《小餐饮登记》(任一)或其他同等效力证件。', 2, 525002, '旅游度假', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (527065, '密室', '1、 《营业执照》。 2、 《娱乐场所经营许可证》。', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529031, '充电服务', '需提供①营业执照经营范围包含:汽车充电,电动车充电相关关键字 ;②需要提供电力相关公共事业部门授权或合作协议,或是提供电力公司授权或合作协议', 1, '', 0, 502033, '充电服务', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529032, '玩具枪', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '适用年龄属于14岁以下的需要提供相关的3C证书;适用年龄大于14岁的玩具需提供有CMA或者GANS标识的检测报告', 1, 496025, '其它玩具', 6472, '玩具乐器', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529033, '男士颈膜', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6871, '男士面部护肤', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529035, '高光', '1、如主体为生产商,售卖国内商品需提供:①《化妆品生产许可证》; 2、如主体为进口商,售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料; (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 6911, '香水彩妆', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529036, '爽身粉', '售卖进口商品需提供:①《出入境检验检疫证明》或《出入境检验检疫卫生证书》;②供货协议或采购合同等材料。 (注:若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料)', 2, '国产:国产非特殊用途化妆品备案(网上备案的电子凭证)或者国产特殊用途化妆品卫生许可批件; 进口:进口非特殊用途化妆品备案(网上备案的电子凭证)或者进口特殊用途化妆品卫生许可批件。', 1, 1046, '身体护理', 1001, '个人护理', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529037, '器械减震垫', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529038, '皮草/仿皮草', '', 0, '', 0, 6214, '童装', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529039, '冲锋衣', '', 0, '', 0, 526028, '童装户外服饰', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529040, '洞洞鞋', '', 0, '', 0, 7379, '时尚女鞋', 7378, '鞋靴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529041, '花椒鸡', '1、国产商品需提供:申请主体的《食品经营许可证》或《食品生产许可证》或《预包装食品销售备案凭证》。 2、进口商品需提供:①申请主体的《食品经营许可证》或《预包装食品销售备案凭证》;②近一年内的《出入境检验检疫证明》或《出入境检验检疫卫生证书》;③供货协议或采购合同等材料。 (注:①若申请主体为办理出入境检验证的收货人,则无需提供供货协议或采购合同等材料;②自贸区企业若无法提供《食品经营许可证》,需要提供营业执照(经营范围需包含食品经营(预包装食品)))', 1, '(选填)若经营清真食品,需提供生产厂商的《清真食品生产经营许可证》或相关证件', 2, 527038, '半成品菜/方便菜', 6625, '生鲜', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529042, '动物精华/提取物', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529043, '运动营养食品', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529044, '膳食纤维/碳水化合物', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529045, '设计创作/影音游戏动画', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529046, '公务员培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529047, 'IT职业/编程/计算机', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529048, '英语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529050, '印刷', '1、 《营业执照》(经营范围包含印刷、打印等相关项目)。 2、 《印刷经营许可证》。', 1, '', 0, 377094, '摄影/视频服务/文印', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529051, '机票', '1、 航空主体:需提供《公共航空运输企业经营许可证》,或名称包含“XX航空公司”; 2、 非航空主体:需提供:①《营业执照》经营范围包含:机票销售代理业务或相同意思表示;② 与航空公司的合作协议/授权代理销售协议; 3、在线提供机票代理销售的,需提供《增值电信业务许可证》,核准业务种类含“在线数据处理与交易处理业务\"。', 1, '', 0, 496042, '票务', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (529052, '游泳', '1、 《营业执照》(经营范围包含运动类、健身等相关项目)。 2、 《高危险性体育项目经营许可证》。', 1, '', 0, 428007, '本地玩乐', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530005, '顺风车(拼车)', '需提供(3选1): 1、政府交通管理部门备案证明; 2、客运公司:《道路运输经营许可证》(经营范围含客运); 3、政府指定的联网售票平台:政府交通管理部门的联网售票许可', 1, '', 0, 494002, '顺风车(拼车)', 530004, '出行与交通', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530006, '外套', '', 0, '', 0, 6122, '男装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530007, '宽带缴费', '运营商主体:需提供《基础电信业务经营许可证》 非运营商主体:①提供与市级以上移动运营商(电信/联通需提供省级以上)的代理合同或合作协议等正规渠道证明②运营商合作协议中授权业务范围必须体现“可开展宽带充值或缴费业务”③提交与合作协议对应运营商系统对接的相关凭证,包括但不限于系统对接截图、接口报文截图等。', 1, '', 0, 1966, '通信服务', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530039, '居民用电', '电力机构主体: 申请主体为电力相关公共事业部门,且营业执照经营范围包含公共事业的电力经营和收费相关业务。 售电公司: 需提供:①申请主体的《售电公司信用承诺书》;②申请主体在“信用中国”网站或电力交易平台网站的备案公示。', 1, '', 0, 423003, '生活缴费', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530041, 'POLO衫', '', 0, '', 0, 6057, '女装', 6033, '服饰内衣', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530042, '化妆包/刷包', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530047, 'DIY面膜工具', '', 0, '', 0, 6885, '美妆工具', 6870, '美妆护肤', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530049, '登山机', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530050, '足底按摩垫', '1、质检报告:提供近一年内由第三方权威质检机构出具的含有CMA或CNAS认证的质检报告; 2、经营进口商品的,需提供①近一年内的中华人民共和国海关进口货物报关单(报关单应展现对应品牌名称及商品名称); 3、若申请主体不是报关单的经营使用单位或收货单位,需同时提供委托进口协议。', 1, '', 0, 7060, '健身训练', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530051, '朝鲜舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530052, '傣族舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530053, '踢踏舞鞋服', '', 0, '', 0, 7210, '瑜伽舞蹈', 6932, '运动户外', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530054, '保暖衣/裤', '', 0, '', 0, 494030, '童装内衣裤', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530055, '鞋带', '', 0, '', 0, 510031, '童鞋配件', 6153, '母婴', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530057, '沟通主持', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530058, '音乐才艺', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530059, '互联网产品与运营/电子商务', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530060, '远程网络教育培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530061, '德语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530062, '西班牙语', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 517051, '语言培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (530063, '学习/读书卡', '申请主体的《增值电信业务许可证》核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》。', 1, '', 0, 517052, '学习/读书卡', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (532002, '景区门票', '景区主体需提供(2选1):①全国旅游景区质量等级评定委员会出具的《旅游景区质量等级证书》;②旅游局景区等级评定委员会红头文件; 代理商主体需提供:①与景区主体的合作协议;②《营业执照》(需包含下列内容中一项:票务代理,旅游咨询、门票预订及相关内容,主题公园开发经营及相关内容。)', 1, '', 0, 525003, '门票', 128209, '旅游休闲', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (544001, '维生素/矿物质/钙铁锌硒', '需提供: 1、 《食品经营许可证》或《预包装食品销售备案凭证》。 2、① 报关单:需提供近一年内的中华人民共和国海关进口货物报关单,报关单上应展现对应品牌名称,及商品名称;(若报关单上的经营使用单位或收货单位不在授权链上,需同时提供委托进口协议);② 入境货物检验检疫证明:需提供与报关单合同协议号一致的检验检疫证明。', 1, '1、2选1:① 需提供生产商在当地质量技术监督局进行的食品安全企业标准备案,证明产品可以普通食品身份进入市场。② 《进口保健食品批准证书》 2、如涉及特殊用途膳食用食品的,需提供《国产特殊医学用途配方食品批准证书》或《婴儿配方乳粉注册证书》。 特殊用途膳食用食品:指涉及医学用途或婴幼儿配方的食品。', 1, 530056, '海外膳食营养补充食品', 502043, '膳食营养补充食品', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (544002, '礼仪气质', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、如涉及到游泳、滑雪项目,需提供《高危险性体育项目经营许可证》。', 1, '', 0, 378005, '生活兴趣', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (544003, '广告制作', '若经营门票印刷,则需提供申请主体的《印刷经营许可证》', 1, '', 0, 377094, '摄影/视频服务/文印', 377078, '生活服务', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (545001, '项目管理培训/经济师培训', '1、 需填写《产品经营说明书》注明线上/线下授课,主营类目及主推产品介绍。 2、①如提供线上教育服务,需提供《增值电信业务许可证》,核准业务种类含“信息服务业务(仅限互联网信息服务)\"或《ICP备案》(若ICP备案资质主办单位名称非申请主体,需加盖主办单位红色公章,或提交关系证明/签署协议);②如线下授课,需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。 3、若涉及学历、技能证书,需提供2选1:① 区、县级教育部门颁发的《民办学校办学许可证》;加营业执照(经营范围中应包含“教育培训”)或《民办非企业单位法人证书》,②《事业单位法人证书》(适用公立学校)。', 1, '', 0, 380003, '学历资格/职业技能培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); INSERT INTO `eb_pay_component_cat` (`third_cat_id`, `third_cat_name`, `qualification`, `qualification_type`, `product_qualification`, `product_qualification_type`, `second_cat_id`, `second_cat_name`, `first_cat_id`, `first_cat_name`, `audit_id`, `status`, `audit_time`, `reject_reason`, `audit_qualification_req`) VALUES (545002, '其他本地教育', '1、2选1:① 区、县级教育部门颁发的《民办学校办学许可证》加营业执照(经营范围中应包含“教育培训”),或《民办非企业单位法人证书》。②《事业单位法人证书》(适用公立学校); 2、 线下授课需提供线下门店照及门店场地证明(场地和校舍产权证明或合法规范的租赁协议书)。', 1, '', 0, 530065, '本地教育培训', 381003, '教育培训', NULL, 0, NULL, NULL, ''); COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_delivery_company -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_delivery_company`; CREATE TABLE `eb_pay_component_delivery_company` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `delivery_id` varchar(20) NOT NULL COMMENT '快递公司id', `delivery_name` varchar(50) NOT NULL COMMENT '快递公司名称', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 0未删除 1删除', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件快递公司表'; -- ---------------------------- -- Records of eb_pay_component_delivery_company -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_draft_product -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_draft_product`; CREATE TABLE `eb_pay_component_draft_product` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `product_id` int(11) unsigned DEFAULT NULL COMMENT '商品ID,商家自定义商品ID', `primary_product_id` int(11) unsigned DEFAULT NULL COMMENT '主商品ID', `component_product_id` int(11) unsigned DEFAULT NULL COMMENT '交易组件平台内部商品ID', `title` varchar(255) NOT NULL COMMENT '标题', `path` varchar(255) NOT NULL COMMENT '绑定的小程序商品路径', `head_img` text NOT NULL COMMENT '轮播图,多张', `qualification_pics` text COMMENT '商品资质图片,多张', `third_cat_id` int(11) unsigned NOT NULL COMMENT '第三级类目ID', `brand_id` int(11) unsigned NOT NULL COMMENT '品牌id', `info_version` varchar(255) NOT NULL DEFAULT '' COMMENT '预留字段,用于版本控制', `status` int(11) unsigned NOT NULL COMMENT '微信侧状态:0-初始值,5-上架,11-自主下架,13-违规下架/风控系统下架', `edit_status` int(11) unsigned NOT NULL COMMENT '微信侧审核状态:1-未审核,2-审核中,3-审核失败,4-审核成功', `platform_status` int(11) unsigned NOT NULL COMMENT '平台状态:0初始值 5商家上架 6平台上架 11商家下架 12平台下架', `platform_edit_status` int(10) unsigned NOT NULL COMMENT '平台审核状态:1-未审核,2-平台审核中,3-平台审核失败,4-平台审核成功', `platform_status_reason` varchar(255) DEFAULT NULL COMMENT '平台自定义状态审核原因', `reject_reason` text COMMENT '微信审核结果原因', `create_time` varchar(30) DEFAULT NULL COMMENT '创建时间', `update_time` varchar(30) DEFAULT NULL COMMENT '更新时间', `temp_id` int(11) NOT NULL COMMENT '运费模板ID', `stock` int(11) unsigned NOT NULL COMMENT '库存', `sales` int(11) unsigned NOT NULL COMMENT '销量', `unit_name` varchar(16) NOT NULL COMMENT '单位名称', `give_integral` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '反多少积分', `spec_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '规格 0单 1多', `ficti` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '虚拟销量', `desc_info` text COMMENT 'desc详情', `sku` text COMMENT 'sku', `attr` text COMMENT 'attr(前端用)', `attr_value` text COMMENT 'attrValue(前端用)', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 0未删除 1删除', `add_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `mer_id` int(11) DEFAULT NULL COMMENT '商户id', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件商品草稿表'; -- ---------------------------- -- Records of eb_pay_component_draft_product -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_order -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_order`; CREATE TABLE `eb_pay_component_order` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `order_no` varchar(32) NOT NULL COMMENT '订单号,商家自定义订单ID', `component_order_id` bigint(64) unsigned DEFAULT NULL COMMENT '微信侧订单id ', `openid` varchar(255) NOT NULL COMMENT '用户的openid', `path` varchar(255) NOT NULL COMMENT '商家小程序该订单的页面path,用于微信侧订单中心跳转', `scene` int(20) unsigned NOT NULL DEFAULT '0' COMMENT '下单时小程序的场景值', `out_user_id` int(11) unsigned NOT NULL COMMENT '用户id', `pay_method` varchar(255) NOT NULL COMMENT '支付方式,包括:微信支付,货到付款,其他', `pay_method_type` int(3) unsigned NOT NULL COMMENT '支付方式,0,微信支付,1: 货到付款,99: 其他(默认0)', `prepay_id` varchar(255) DEFAULT '' COMMENT 'TODO 预支付ID', `prepay_time` varchar(255) DEFAULT '' COMMENT '预付款时间(拿到prepay_id的时间)', `order_price` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '该订单最终的金额(单位:分)', `freight` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '运费(单位:分)', `discounted_price` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '优惠金额(单位:分)', `additional_price` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '附加金额(单位:分)', `additional_remarks` varchar(255) DEFAULT NULL COMMENT '附加金额备注', `delivery_type` int(2) unsigned NOT NULL COMMENT '发货类型:1: 正常快递, 2: 无需快递, 3: 线下配送, 4: 用户自提 (默认1)', `receiver_name` varchar(50) NOT NULL COMMENT '收件人姓名', `detailed_address` varchar(255) NOT NULL COMMENT '详细收货地址信息', `tel_number` varchar(20) NOT NULL COMMENT '收件人手机号码', `country` varchar(20) DEFAULT NULL COMMENT '国家', `province` varchar(20) DEFAULT NULL COMMENT '省份', `city` varchar(20) DEFAULT NULL COMMENT '城市', `town` varchar(20) DEFAULT NULL COMMENT '乡镇', `ticket` varchar(100) DEFAULT '0' COMMENT '拉起收银台的ticket 新版本中不需要这个参数', `ticket_expire_time` varchar(20) DEFAULT '' COMMENT 'ticket有效截止时间 新版本不需要这个参数也就没有有效期了', `final_price` bigint(20) unsigned NOT NULL COMMENT '订单最终价格(单位:分)', `status` int(4) unsigned NOT NULL DEFAULT '10' COMMENT '订单状态:10-待付款,11-收银台支付完成(自动流转,对商家来说和10同等对待即可),20-待发货,30-待收货,100-完成,200-全部商品售后之后,订单取消,250-用户主动取消/待付款超时取消/商家取消', `finish_all_delivery` int(4) unsigned DEFAULT NULL COMMENT '是否发货完成', `delivery_list` text COMMENT '快递数组', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `transaction_id` varchar(32) DEFAULT NULL COMMENT '微信支付订单号', `time_end` timestamp NULL DEFAULT NULL COMMENT '订单支付时间,格式为yyyyMMddHHmmss', `mer_id` int(11) DEFAULT NULL COMMENT '商户id', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件订单表'; -- ---------------------------- -- Records of eb_pay_component_order -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_order_product -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_order_product`; CREATE TABLE `eb_pay_component_order_product` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `order_no` varchar(32) NOT NULL COMMENT '订单号,商家自定义订单ID', `component_order_id` bigint(64) unsigned DEFAULT NULL COMMENT '微信侧订单id ', `product_id` int(20) unsigned DEFAULT NULL COMMENT '交易组件平台内部商品ID', `out_product_id` varchar(20) NOT NULL COMMENT '商家自定义商品ID', `sku_id` int(20) unsigned NOT NULL DEFAULT '0' COMMENT '交易组件平台内部skuID,可填0(如果这个product_id下没有sku)', `out_sku_id` varchar(20) NOT NULL COMMENT '商家自定义商品skuID,可填空字符串(如果这个product_id下没有sku)', `product_cnt` int(11) unsigned NOT NULL COMMENT '购买的数量', `sale_price` bigint(20) unsigned NOT NULL COMMENT '生成这次订单时商品的售卖价(单位:分),可以跟上传商品接口的价格不一致', `head_img` text NOT NULL COMMENT '生成订单时商品的头图', `title` varchar(255) NOT NULL COMMENT '生成订单时商品的标题', `path` varchar(255) NOT NULL COMMENT '绑定的小程序商品路径', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件订单详情表'; -- ---------------------------- -- Records of eb_pay_component_order_product -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_product -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_product`; CREATE TABLE `eb_pay_component_product` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID,商家自定义商品ID', `primary_product_id` int(11) unsigned NOT NULL COMMENT '主商品ID', `component_product_id` int(11) unsigned DEFAULT NULL COMMENT '交易组件平台内部商品ID', `title` varchar(255) NOT NULL COMMENT '标题', `path` varchar(255) DEFAULT NULL COMMENT '绑定的小程序商品路径', `head_img` text NOT NULL COMMENT '轮播图,多张', `qualification_pics` text COMMENT '商品资质图片,多张', `third_cat_id` int(11) unsigned NOT NULL COMMENT '第三级类目ID', `brand_id` int(11) unsigned NOT NULL COMMENT '品牌id', `info_version` varchar(255) NOT NULL DEFAULT '' COMMENT '预留字段,用于版本控制', `status` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '微信侧状态:0-初始值,5-上架,11-自主下架,13-违规下架/风控系统下架', `edit_status` int(11) unsigned NOT NULL DEFAULT '1' COMMENT '微信侧审核状态:1-未审核,2-审核中,3-审核失败,4-审核成功', `platform_status` int(11) unsigned DEFAULT NULL COMMENT '平台状态:0初始值 5商家上架 6平台上架 11商家下架 12平台下架', `platform_edit_status` int(11) unsigned DEFAULT NULL COMMENT '平台审核状态:1-未审核,2-平台审核中,3-平台审核失败,4-平台审核成功', `create_time` varchar(30) DEFAULT NULL COMMENT '创建时间', `update_time` varchar(30) DEFAULT NULL COMMENT '更新时间', `temp_id` int(11) DEFAULT NULL COMMENT '运费模板ID', `stock` int(11) NOT NULL DEFAULT '0' COMMENT '库存', `sales` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `unit_name` varchar(16) NOT NULL COMMENT '单位名称', `give_integral` int(11) NOT NULL DEFAULT '0' COMMENT '反多少积分', `spec_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '规格 0单 1多', `ficti` int(11) NOT NULL DEFAULT '0' COMMENT '虚拟销量', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 0未删除 1删除', `is_sub` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否单独分佣', `mer_id` int(11) DEFAULT NULL COMMENT '商户id', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件商品表'; -- ---------------------------- -- Records of eb_pay_component_product -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_product_audit_info -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_product_audit_info`; CREATE TABLE `eb_pay_component_product_audit_info` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `product_id` int(11) unsigned NOT NULL COMMENT '商品ID', `component_product_id` int(11) unsigned DEFAULT NULL COMMENT '交易组件平台内部商品ID', `submit_time` varchar(50) DEFAULT NULL COMMENT '上一次提交时间, yyyy-MM-dd HH:mm:ss', `audit_time` varchar(50) DEFAULT NULL COMMENT '上一次审核时间, yyyy-MM-dd HH:mm:ss', `reject_reason` varchar(255) DEFAULT NULL COMMENT '拒绝理由,只有edit_status为3时出现', `audit_id` varchar(50) DEFAULT NULL COMMENT '审核单id', PRIMARY KEY (`id`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件商品审核信息表'; -- ---------------------------- -- Records of eb_pay_component_product_audit_info -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_product_info -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_product_info`; CREATE TABLE `eb_pay_component_product_info` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `product_id` int(11) unsigned NOT NULL COMMENT '商品ID', `component_product_id` int(11) unsigned DEFAULT NULL COMMENT '交易组件平台内部商品ID', `desc` text NOT NULL COMMENT '商品详情', `imgs` text COMMENT '商品详情图片', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 0未删除 1删除', PRIMARY KEY (`id`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件商品详情表'; -- ---------------------------- -- Records of eb_pay_component_product_info -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_product_sku -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_product_sku`; CREATE TABLE `eb_pay_component_product_sku` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID,商家自定义skuID', `product_id` int(11) unsigned NOT NULL COMMENT '商品ID', `component_product_id` int(11) unsigned DEFAULT NULL COMMENT '交易组件平台内部商品ID', `sku_id` varchar(20) DEFAULT NULL COMMENT '交易组件平台自定义skuID', `thumb_img` varchar(500) NOT NULL COMMENT 'sku小图', `sale_price` bigint(20) unsigned NOT NULL COMMENT '售卖价格,以分为单位', `market_price` bigint(20) unsigned NOT NULL COMMENT '市场价格,以分为单位', `stock_num` int(11) unsigned NOT NULL COMMENT '库存', `barcode` varchar(255) DEFAULT NULL COMMENT '条形码', `sku_code` varchar(255) DEFAULT NULL COMMENT '商品编码', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 0未删除 1删除', `sku` varchar(128) DEFAULT NULL COMMENT '商品属性索引值 (attr_value|attr_value[|....])', `attr_value_id` int(11) unsigned DEFAULT NULL COMMENT '商品规格属性id', `version` int(11) DEFAULT '0' COMMENT '并发版本控制', PRIMARY KEY (`id`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件商品sku表'; -- ---------------------------- -- Records of eb_pay_component_product_sku -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_product_sku_attr -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_product_sku_attr`; CREATE TABLE `eb_pay_component_product_sku_attr` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID,商家自定义skuID', `sku_id` int(11) unsigned NOT NULL COMMENT 'skuID', `component_sku_id` varchar(20) DEFAULT NULL COMMENT '交易组件平台自定义skuID', `attr_key` varchar(255) NOT NULL COMMENT '销售属性key(自定义)', `attr_value` varchar(255) NOT NULL COMMENT '销售属性value(自定义)', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除 0未删除 1删除', PRIMARY KEY (`id`) USING BTREE, KEY `sku_id` (`sku_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件商品sku属性表'; -- ---------------------------- -- Records of eb_pay_component_product_sku_attr -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_pay_component_shop_brand -- ---------------------------- DROP TABLE IF EXISTS `eb_pay_component_shop_brand`; CREATE TABLE `eb_pay_component_shop_brand` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `brand_id` int(11) unsigned DEFAULT NULL COMMENT '品牌ID', `audit_id` varchar(255) DEFAULT NULL COMMENT '审核单id', `license` text COMMENT '营业执照或组织机构代码证,图片url/media_id,逗号分隔', `brand_audit_type` int(32) unsigned DEFAULT NULL COMMENT '认证审核类型,1:国内品牌申请-R标,2:国内品牌申请-TM标,3:海外品牌申请-R标,4:海外品牌申请-TM标', `trademark_type` varchar(3) DEFAULT NULL COMMENT '商标分类,共有45个分类', `brand_management_type` int(32) unsigned DEFAULT NULL COMMENT '选择品牌经营类型:1-自有品牌,2-代理品牌,3-无品牌', `commodity_origin_type` int(32) unsigned DEFAULT NULL COMMENT '商品产地是否进口:1-是,2-否', `brand_wording` varchar(255) DEFAULT NULL COMMENT '商标/品牌词', `sale_authorization` text COMMENT '销售授权书(如商持人为自然人,还需提供有其签名的身份证正反面扫描件),图片url/media_id,逗号分隔', `trademark_registration_certificate` text COMMENT '商标注册证书,图片url/media_id,逗号分隔', `trademark_change_certificate` text COMMENT '商标变更证明,图片url/media_id,逗号分隔', `trademark_registrant` varchar(500) DEFAULT NULL COMMENT '商标注册人姓名', `trademark_registrant_nu` varchar(255) DEFAULT NULL COMMENT '商标注册号/申请号', `trademark_authorization_period` varchar(30) DEFAULT NULL COMMENT '商标有效期,yyyy-MM-dd HH:mm:ss', `trademark_registration_application` text COMMENT '商标注册申请受理通知书,图片url/media_id,逗号分隔', `trademark_applicant` varchar(50) DEFAULT NULL COMMENT '商标申请人姓名', `trademark_application_time` varchar(30) DEFAULT NULL COMMENT '商标申请时间, yyyy-MM-dd HH:mm:ss', `imported_goods_form` text COMMENT '中华人民共和国海关进口货物报关单,图片url/media_id,逗号分隔', `status` int(3) unsigned DEFAULT NULL COMMENT '审核状态, 0:审核中,1:审核成功,9:审核拒绝', `reject_reason` varchar(255) DEFAULT NULL COMMENT '如果审核拒绝,返回拒绝原因', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组件商户品牌表'; -- ---------------------------- -- Records of eb_pay_component_shop_brand -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_platform_daily_statement -- ---------------------------- DROP TABLE IF EXISTS `eb_platform_daily_statement`; CREATE TABLE `eb_platform_daily_statement` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '帐单id', `order_pay_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '订单支付总金额', `total_order_num` int(10) NOT NULL DEFAULT '0' COMMENT '订单支付笔数', `handling_fee` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '日手续费收入', `merchant_transfer_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '商户分账金额', `merchant_transfer_num` int(10) NOT NULL DEFAULT '0' COMMENT '商户分账笔数', `first_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '一级佣金金额', `second_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '二级佣金金额', `payout_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '支出总金额', `payout_num` int(10) NOT NULL DEFAULT '0' COMMENT '支出笔数', `refund_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台退款金额', `refund_replace_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台代扣佣金金额', `refund_num` int(10) NOT NULL DEFAULT '0' COMMENT '退款笔数', `recharge_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '充值金额', `recharge_num` int(10) NOT NULL DEFAULT '0' COMMENT '充值笔数', `income_expenditure` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台日收支', `data_date` varchar(12) NOT NULL COMMENT '日期:年-月-日', `refund_replace_integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款平台积分抵扣金额', `integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单积分抵扣金额', PRIMARY KEY (`id`) USING BTREE, KEY `data_date` (`data_date`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='平台日帐单表'; -- ---------------------------- -- Records of eb_platform_daily_statement -- ---------------------------- BEGIN; INSERT INTO `eb_platform_daily_statement` (`id`, `order_pay_amount`, `total_order_num`, `handling_fee`, `merchant_transfer_amount`, `merchant_transfer_num`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_replace_brokerage`, `refund_num`, `recharge_amount`, `recharge_num`, `income_expenditure`, `data_date`, `refund_replace_integral_price`, `integral_price`) VALUES (1, 0.00, 0, 0.00, 0.00, 0, 0.00, 0.00, 0.00, 0, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03-02', 0.00, 0.00); COMMIT; -- ---------------------------- -- Table structure for eb_platform_month_statement -- ---------------------------- DROP TABLE IF EXISTS `eb_platform_month_statement`; CREATE TABLE `eb_platform_month_statement` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '帐单id', `order_pay_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '订单支付总金额', `total_order_num` int(10) NOT NULL DEFAULT '0' COMMENT '订单支付笔数', `handling_fee` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '月手续费收入', `merchant_transfer_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '商户分账金额', `merchant_transfer_num` int(10) NOT NULL DEFAULT '0' COMMENT '商户分账笔数', `first_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '一级佣金金额', `second_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '二级佣金金额', `payout_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '支出总金额', `payout_num` int(10) NOT NULL DEFAULT '0' COMMENT '支出笔数', `refund_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台退款金额', `refund_replace_brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台代扣佣金金额', `refund_num` int(10) NOT NULL DEFAULT '0' COMMENT '退款笔数', `recharge_amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '充值金额', `recharge_num` int(10) NOT NULL DEFAULT '0' COMMENT '充值笔数', `income_expenditure` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '平台月收支', `data_date` varchar(12) NOT NULL COMMENT '日期:年-月', `refund_replace_integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款平台积分抵扣金额', `integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '订单积分抵扣金额', PRIMARY KEY (`id`) USING BTREE, KEY `data_date` (`data_date`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='平台月帐单表'; -- ---------------------------- -- Records of eb_platform_month_statement -- ---------------------------- BEGIN; INSERT INTO `eb_platform_month_statement` (`id`, `order_pay_amount`, `total_order_num`, `handling_fee`, `merchant_transfer_amount`, `merchant_transfer_num`, `first_brokerage`, `second_brokerage`, `payout_amount`, `payout_num`, `refund_amount`, `refund_replace_brokerage`, `refund_num`, `recharge_amount`, `recharge_num`, `income_expenditure`, `data_date`, `refund_replace_integral_price`, `integral_price`) VALUES (1, 0.00, 0, 0.00, 0.00, 0, 0.00, 0.00, 0.00, 0, 0.00, 0.00, 0, 0.00, 0, 0.00, '2023-03', 0.00, 0.00); COMMIT; -- ---------------------------- -- Table structure for eb_product -- ---------------------------- DROP TABLE IF EXISTS `eb_product`; CREATE TABLE `eb_product` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '商品id', `mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户Id', `image` varchar(256) NOT NULL DEFAULT '' COMMENT '商品图片', `flat_pattern` varchar(1000) NOT NULL DEFAULT '' COMMENT '展示图', `slider_image` varchar(2000) NOT NULL DEFAULT '' COMMENT '轮播图', `name` varchar(128) NOT NULL DEFAULT '' COMMENT '商品名称', `intro` varchar(256) NOT NULL DEFAULT '' COMMENT '商品简介', `keyword` varchar(256) NOT NULL DEFAULT '' COMMENT '关键字,英文逗号拼接', `cate_id` varchar(64) NOT NULL DEFAULT '' COMMENT '商户分类id(逗号拼接)', `brand_id` int(11) NOT NULL DEFAULT '0' COMMENT '品牌id', `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '平台分类id', `guarantee_ids` varchar(64) NOT NULL DEFAULT '0' COMMENT '保障服务ids(英文逗号拼接)', `price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商品价格', `vip_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '会员价格', `ot_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '市场价', `unit_name` varchar(32) NOT NULL DEFAULT '' COMMENT '单位名', `sales` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `stock` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '库存', `cost` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '成本价', `ficti` int(11) DEFAULT '0' COMMENT '虚拟销量', `browse` int(11) DEFAULT '0' COMMENT '浏览量', `code_path` varchar(64) DEFAULT NULL COMMENT '商品二维码地址(用户小程序海报)', `soure_link` varchar(255) DEFAULT NULL COMMENT '淘宝京东1688类型', `video_link` varchar(255) DEFAULT NULL COMMENT '主图视频链接', `temp_id` int(11) NOT NULL DEFAULT '1' COMMENT '运费模板ID', `sort` smallint(11) NOT NULL DEFAULT '0' COMMENT '排序', `rank` smallint(11) NOT NULL DEFAULT '0' COMMENT '总后台排序', `spec_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '规格 0单 1多', `is_recycle` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否回收站', `is_sub` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否单独分佣', `is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态(0:未上架,1:上架)', `audit_status` int(2) unsigned NOT NULL DEFAULT '1' COMMENT '审核状态:0-无需审核 1-待审核,2-审核成功,3-审核拒绝', `is_audit` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否加入审核,0-正常,1-审核流程中', `reason` varchar(100) NOT NULL DEFAULT '' COMMENT '拒绝原因', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE, KEY `is_recycle` (`is_recycle`) USING BTREE, KEY `is_show` (`is_show`) USING BTREE, KEY `audit_status` (`audit_status`) USING BTREE, KEY `sort` (`sort`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=88 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品表'; -- ---------------------------- -- Records of eb_product -- ---------------------------- BEGIN; INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (1, 2, 'crmebimage/public/content/2022/11/15/1fe7ceab76cc4255b21b9d22756b686anlyj89btut.jpg', '', '[\"crmebimage/public/content/2022/11/15/34d5c51fa0124ad3a8cb5c3adccc41b6r65mre4nx3.jpg\",\"crmebimage/public/content/2022/11/15/a3bd4146237949809148e796593b7edcbyg8esj424.jpg\",\"crmebimage/public/content/2022/11/15/c00766afbae647b9b2c3e9a9cb675a9368z9ntmwvy.jpg\",\"crmebimage/public/content/2022/11/15/1fe7ceab76cc4255b21b9d22756b686anlyj89btut.jpg\",\"crmebimage/public/content/2022/11/15/a464946f4c6e4d65aa172d4aa26f25e7vic0w29cjc.jpg\"]', '魅族新品', '魅族新品', '魅族新品,测试一下,哈哈', '15', 1, 124, '3,4', 9999.00, 0.00, 8889.00, '部', 0, 9999, 9998.00, 0, 17, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 1, '2022-11-15 10:57:23', '2023-02-15 22:23:53'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (2, 2, 'crmebimage/public/content/2022/11/15/a2c4f7973d424f1696f30e3ab786385341t4pnttqa.png', '', '[\"crmebimage/public/content/2022/11/15/9c0a68bc8897451bbd001aa3ba1401b1vdut91uzv2.jpg\",\"crmebimage/public/content/2022/11/15/c50df977ab9749339157fab78e774ebf6asfiagcj5.png\",\"crmebimage/public/content/2022/11/15/fb75d7a485594a65afdda623f55345e2uv8c39j2kf.png\",\"crmebimage/public/content/2022/11/15/a2c4f7973d424f1696f30e3ab786385341t4pnttqa.png\",\"crmebimage/public/content/2022/11/15/2ded4c1c271048a1bb71dbb3fc2695dccd1uadx934.png\",\"crmebimage/public/content/2022/11/15/f71adab2177a42df82f64976f525bbd8okaqw3n47z.png\"]', '魅族18S', '充电也就一会会', '魅族18S,以,一,二,三,s', '15', 1, 124, '3', 9988.00, 0.00, 5566.00, '部', 0, 8996, 7788.00, 0, 28, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 1, '2022-11-15 11:07:42', '2023-02-15 22:23:56'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (3, 1, 'crmebimage/public/content/2022/11/15/8ad795fca85d46c2a86ecbd391d5ec9frj0dk5ovms.png', '', '[\"crmebimage/public/content/2022/11/15/023c2c2c21cd4cc5ab14a9b29364c5360fkaqnn80e.png\",\"crmebimage/public/content/2022/11/15/8ad795fca85d46c2a86ecbd391d5ec9frj0dk5ovms.png\",\"crmebimage/public/content/2022/11/15/2bdbd7bb21b4460d9d8d26940d7a8965p96wi9uhat.png\",\"crmebimage/public/content/2022/11/15/57af5cfbbc89449ba3650bd4fb2b9ef461yggmp14f.png\",\"crmebimage/public/content/2022/11/15/a9dc2b496c324c49993f28d957ae23543lmwb4z49y.png\",\"crmebimage/public/content/2022/11/15/9f2b7caa010c4232adb21afc8e18fa22abfi8x98tp.png\",\"crmebimage/public/content/2022/11/15/c02a07474dc146a9b21e4ad687569607yhn1q0qhq5.png\",\"crmebimage/public/content/2022/11/15/10cdb3514b1f46078a9180a7c85745b0kp63d2vmzq.png\"]', 'LOFREE洛斐 奶茶无线蓝牙键鼠套装', 'LOFREE洛斐 奶茶无线蓝牙键鼠套装 机械键盘鼠标粉女生圆点苹果Mac电脑办公笔记本iPad手机 奶茶', 'OFREE洛斐 奶茶无线蓝牙键鼠套装 机械键盘鼠标粉女生圆点苹果Mac电脑办公笔记本iPad手机 奶茶', '4', 0, 124, '3', 100.00, 0.00, 70.00, '件', 0, 100, 50.00, 0, 7, NULL, NULL, NULL, 1, 1, 0, 0, 0, 1, 0, 1, 0, '', 1, '2022-11-15 11:14:43', '2023-02-15 22:24:05'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (4, 2, 'crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png', '', '[\"crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png\",\"crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png\",\"crmebimage/public/content/2022/11/15/bddb0fee0fbb490b824284d9083f3d9bnc7svjmaur.png\"]', 'iphone14', '听说siri很好用', 'iphone14', '2', 2, 137, '4', 12877.00, 0.00, 7888.00, '部', 0, 9999, 9900.00, 0, 31, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 1, '2022-11-15 11:19:58', '2023-02-15 22:26:50'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (5, 1, 'crmebimage/public/content/2022/11/15/59d5c2165b134bc894c3678ddb27f5baithxqz4pvi.png', '', '[\"crmebimage/public/content/2022/11/15/59d5c2165b134bc894c3678ddb27f5baithxqz4pvi.png\",\"crmebimage/public/content/2022/11/15/f050765e34424e45b527f6ab3637a858umtqs78gl4.png\",\"crmebimage/public/content/2022/11/15/ffd7b57b22b94d478467b864832502b4muuho0wgoo.png\",\"crmebimage/public/content/2022/11/15/7f16d49d08d440b4ba03dcd6938b4272f4bbadgae3.png\",\"crmebimage/public/content/2022/11/15/b86dfed1c6f54014b4a061cf44e407dfay7tzrcr6s.png\"]', '拜尔M3电动冲牙器300ml 家用便携式口腔洗牙器水牙线冲洗器洁牙器牙套清洗送男女朋友 M3 Plus 白色 300ml', '拜尔M3电动冲牙器300ml 家用便携式口腔洗牙器水牙线冲洗器洁牙器牙套清洗送男女朋友 M3 Plus 白色 300ml', '拜尔M3电动冲牙器300ml 家用便携式口腔洗牙器水牙线冲洗器洁牙器牙套清洗送男女朋友 M3 Plus 白色 300m', '5', 0, 124, '', 9.00, 0.00, 10.00, '件', 0, 1419, 8.00, 0, 9, NULL, NULL, NULL, 1, 1, 0, 1, 0, 1, 0, 0, 0, '', 1, '2022-11-15 11:51:02', '2023-02-15 22:26:59'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (6, 1, 'crmebimage/public/content/2022/11/15/76877b8ba50f4860b409a1e8f3185179f60o7cm6he.png', '', '[\"crmebimage/public/content/2022/11/15/76877b8ba50f4860b409a1e8f3185179f60o7cm6he.png\",\"crmebimage/public/content/2022/11/15/7a4505e94e384949bcbd35487338093f8jfvwp159g.png\",\"crmebimage/public/content/2022/11/15/bcc1c8f2a54e4a0faf687c6447a42d8crtl5w8vhh1.png\",\"crmebimage/public/content/2022/11/15/070692b61f3c4f11924059137a9211c5d7wxwwh3k3.png\",\"crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png\"]', '小米 MIX4 骁龙888+ 一体化陶瓷机身 全面屏 一亿像素三摄 8GB+128GB 陶瓷白 5G旗舰手机 保值换新版', '小米 MIX4 骁龙888+ 一体化陶瓷机身 全面屏 一亿像素三摄 8GB+128GB 陶瓷白 5G旗舰手机 保值换新版', '小米 MIX4 骁龙888+ 一体化陶瓷机身 全面屏 一亿像素三摄 8GB+128GB 陶瓷白 5G旗舰手机 保值换新版', '27', 0, 134, '3,4', 1000.00, 0.00, 700.00, '件', 1, 616, 900.00, 0, 49, NULL, NULL, NULL, 1, 6, 0, 1, 0, 0, 1, 0, 0, '', 1, '2022-11-15 12:10:07', '2023-02-15 22:27:01'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (7, 3, 'crmebimage/public/content/2022/11/15/a1ccc8bf2fd343459116605d1903b068azb9o7xne8.png', '', '[\"crmebimage/public/content/2022/11/15/089de8c6448a40b99dcd35cb5b487d4261iawf39tf.png\",\"crmebimage/public/content/2022/11/15/0fe05bff033f4462b0c97c629838609dlndg9if4uz.png\"]', '沙宣', 'VS沙宣洗发水去屑750g止痒清爽去油修护男女士通用轻盈洗发露大瓶洗头膏家庭礼盒装 清盈顺柔洗发露750g', '洗发', '34', 4, 26, '4', 0.00, 0.00, 0.00, '瓶', 0, 0, 0.00, 0, 18, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 1, 2, 0, '', 1, '2022-11-15 12:13:04', '2023-02-15 22:27:04'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (8, 3, 'crmebimage/public/content/2022/11/15/9403edc512f54e0da9f20f53d2d131ef5ipt0u4opp.jpg', '', '[\"crmebimage/public/content/2022/11/15/9403edc512f54e0da9f20f53d2d131ef5ipt0u4opp.jpg\",\"crmebimage/public/content/2022/11/15/c556718bec844292b2b063931ec01e89wg1sp5g396.jpg\",\"crmebimage/public/content/2022/11/15/4690e80266774c5da2e033f30880a5802ntujmg9gi.jpg\",\"crmebimage/public/store/2022/11/15/1a6af72f3d054ed6816a46bb09380cf3m7xgqaoapc.png\"]', '一加手机', '户户通,连接你我他', '手机', '34', 0, 129, '4', 1520.00, 0.00, 1450.00, '部', 0, 0, 120.00, 0, 31, NULL, NULL, NULL, 3, 3, 0, 0, 0, 0, 1, 2, 0, '', 0, '2022-11-15 12:26:28', '2023-02-17 19:33:12'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (9, 3, 'crmebimage/public/content/2022/11/15/2b5fb89a29184a90b17038ee08877590xlaswityct.jpg', '', '[\"crmebimage/public/content/2022/11/15/2b5fb89a29184a90b17038ee08877590xlaswityct.jpg\",\"crmebimage/public/content/2022/11/15/c2ebc58b0ddd4c068b56cfc9275ce350ozaog9za0i.jpg\",\"crmebimage/public/content/2022/11/15/a48c21a6e6a243e8a02687868b8552e15fz44cbzqr.jpg\",\"crmebimage/public/content/2022/11/15/33d8e5849bb54c848546adc8cb151a460z26k0s4bl.jpg\"]', '手表', '手表魔板', '手表', '34', 0, 143, '4', 25.00, 0.00, 22.00, '块', 0, 0, 20.00, 0, 10, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 1, 2, 0, '', 0, '2022-11-15 12:33:03', '2023-02-18 16:24:05'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (10, 1, 'crmebimage/public/content/2022/11/15/12f50c26632743f8b8abbb8481449549glczlgau7z.png', '', '[\"crmebimage/public/content/2022/11/15/b28480074e4749d689cf3e780817d7a8acardr1rjd.png\",\"crmebimage/public/content/2022/11/15/72f06491c4e2425d9fc694f1f567c50aziqr5jbbfc.png\",\"crmebimage/public/content/2022/11/15/5cd875373d2849769912315d16041cc6ddfzhij1pl.png\",\"crmebimage/public/content/2022/11/15/12f50c26632743f8b8abbb8481449549glczlgau7z.png\",\"crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png\",\"crmebimage/public/content/2022/11/15/90b957841eb64c938e639ce64be85a62hj9e46kgsq.png\",\"crmebimage/public/content/2022/11/15/505b017e60674932bf89af4ff7cf0188ajcbeq77wl.png\",\"crmebimage/public/content/2022/11/15/1bcb2046365746a79c5dabe6e5d789ed0s4jp7soh4.png\"]', '0NC TWS 真无线蓝牙耳机 入耳式自适主动降噪音乐耳机防水防汗苹果安卓通用 手机带麦游戏耳机 暗夜黑', '0NC TWS 真无线蓝牙耳机 入耳式自适主动降噪音乐耳机防水防汗苹果安卓通用 手机带麦游戏耳机 暗夜黑', '0NC TWS 真无线蓝牙耳机 入耳式自适主动降噪音乐耳机防水防汗苹果安卓通用 手机带麦游戏耳机 暗夜黑', '4,29', 0, 143, '3', 11000.00, 0.00, 9999.00, '件', 0, 15, 1111.00, 0, 21, NULL, NULL, NULL, 1, 1, 0, 1, 0, 0, 1, 0, 0, '', 1, '2022-11-15 14:12:42', '2023-02-15 22:26:41'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (11, 3, 'crmebimage/public/content/2022/11/15/4343eb4220524f1586f12a3baa8ec839pnq2h3jehx.jpg', '', '[\"crmebimage/public/content/2022/11/15/e97f477f554d43a49361f9d9c8c8c7a9tqzdeu4jkd.jpg\",\"crmebimage/public/content/2022/11/15/0a16a9856e824855b7838ee8153e260barf921wd8z.jpg\",\"crmebimage/public/content/2022/11/15/4343eb4220524f1586f12a3baa8ec839pnq2h3jehx.jpg\",\"crmebimage/public/content/2022/11/15/a4e58ad003f2442983ce60983ee8adb1m9bbeancr3.jpg\"]', '耳机', '索尼(SONY)WH-H910N 蓝牙降噪无线耳机 头戴式Hi-Res音质游戏耳机 手机耳机(hear系列 灰绿色 )', '耳机', '34', 0, 143, '3', 56.00, 0.00, 54.00, '部', 0, 0, 50.00, 0, 58, NULL, NULL, NULL, 3, 6, 0, 0, 0, 0, 1, 2, 0, '', 0, '2022-11-15 14:13:16', '2023-02-17 20:09:44'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (12, 1, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', '', '[\"crmebimage/public/content/2022/11/15/1c318d5e0e6c4869a670449f2a9b7d21qost1si3rj.png\",\"crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png\",\"crmebimage/public/content/2022/11/15/01834a7e91554e30acbf83472213d7747t3y6kdjql.png\",\"crmebimage/public/content/2022/11/15/ff5c891173434bac83a634678f3c6bc7mchtt33wuz.png\",\"crmebimage/public/content/2022/11/15/45021dd86dc84d15ba9e9b4a0db45f5foowo4fjx85.png\",\"crmebimage/public/content/2022/11/15/950435fa2c564791b449d83080e32ab04x4hqngq7y.png\",\"crmebimage/public/content/2022/11/15/a20825afb8d5496281dfcfcd01cafae8k8iuzv39mt.png\",\"crmebimage/public/content/2022/11/15/e029715a03a6471fa058d8f4780726bf9e6s1zoay2.png\",\"crmebimage/public/content/2022/11/15/1cd16b75ca514ead9a6ebf9699e6a7e09bl6wsmhqq.png\"]', 'WeighMax空气炸锅家用小型大容量多功能可视无油电炸锅机智能煎炸烤焙大功率定时定温炸鸡薯条机 触控式小溦粉', 'WeighMax空气炸锅家用小型大容量多功能可视无油电炸锅机智能煎炸烤焙大功率定时定温炸鸡薯条机 触控式小溦粉', 'WeighMax空气炸锅家用小型大容量多功能可视无油电炸锅机智能煎炸烤焙大功率定时定温炸鸡薯条机 触控式小溦粉', '19', 0, 124, '', 111.00, 0.00, 0.00, '件', 0, 0, 0.00, 0, 30, NULL, NULL, NULL, 1, 1, 0, 1, 0, 0, 1, 0, 0, '', 0, '2022-11-15 14:22:02', '2023-03-02 18:04:13'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (13, 1, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', '', '[\"crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png\",\"crmebimage/public/content/2022/11/15/d3016d2998ea48608450bab2bc7147c9fd5h5jxk6s.png\",\"crmebimage/public/content/2022/11/15/bbc0c0f7254247fb86c54fb92ecc8ffdf79nr321db.png\",\"crmebimage/public/content/2022/11/15/d4de88be47d64b2792d0645211286a797kqkglxchw.png\",\"crmebimage/public/content/2022/11/15/b9c69269f6514978a762aa8818a80858nqlssbzd9b.png\",\"crmebimage/public/content/2022/11/15/1e36c8669bf140298618901b36f0f8ee72z3rh7ul7.png\",\"crmebimage/public/content/2022/11/15/e14b27b960c84072b0b83652146d6702u89hhviw3n.png\",\"crmebimage/public/content/2022/11/15/fe9f49ff3f4845899708fc6cb18374f2r39x60e1ee.png\",\"crmebimage/public/content/2022/11/15/992893705cc6497f85391300a7c7717f7dsc8btxwr.png\"]', '旅行鸭硅胶可爱钥匙链鸭子公仔汽车钥匙挂件卡通小饰品挂饰钥匙扣 奶茶包旅行鸭蓝色', '旅行鸭硅胶可爱钥匙链鸭子公仔汽车钥匙挂件卡通小饰品挂饰钥匙扣 奶茶包旅行鸭蓝色', '旅行鸭硅胶可爱钥匙链鸭子公仔汽车钥匙挂件卡通小饰品挂饰钥匙扣 奶茶包旅行鸭蓝色', '8', 0, 141, '', 10.00, 0.00, 8.00, '件', 438, 0, 5.00, 0, 34, NULL, NULL, NULL, 1, 1, 0, 1, 0, 0, 1, 0, 0, '', 0, '2022-11-15 14:34:26', '2023-03-02 18:04:16'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (14, 3, 'crmebimage/public/content/2022/11/15/d1a1c6908aec42369a27f54e4ee98fddkzg8spjs55.jpg', '', '[\"crmebimage/public/content/2022/11/15/d1a1c6908aec42369a27f54e4ee98fddkzg8spjs55.jpg\",\"crmebimage/public/content/2022/11/15/4f3af794097b45dfbcca0a437bc0350dj0dwp1953u.jpg\"]', '苹果手机', 'Apple iPhone 14 Plus (A2888) 128GB 午夜色 支持移动联通电信5G 双卡双待手机', '手机', '34', 2, 137, '4', 1999.00, 0.00, 0.00, '台', 0, 10, 1500.00, 0, 109, NULL, NULL, NULL, 3, 68, 0, 0, 0, 1, 1, 0, 0, '', 0, '2022-11-15 17:28:13', '2023-02-17 19:39:08'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (15, 3, 'crmebimage/public/content/2022/11/15/fbaeb4d56f614f108caa706190c38d1fb7r5qlcphe.jpg', '', '[\"crmebimage/public/content/2022/11/15/fbaeb4d56f614f108caa706190c38d1fb7r5qlcphe.jpg\"]', '洗发水', '欧莱雅(LOREAL)精油润养洗发露500ml*2+欧莱雅精油润养润发乳500ml', '洗发水', '34', 0, 26, '', 66.00, 0.00, 0.00, '瓶', 0, 5, 30.00, 0, 32, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 1, 0, 0, '', 0, '2022-11-15 17:34:35', '2023-02-18 16:24:10'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (16, 3, 'crmebimage/public/content/2022/11/15/2170153082494468a5542fd2f7778c93pzc56vct5x.jpg', '', '[\"crmebimage/public/content/2022/11/15/2170153082494468a5542fd2f7778c93pzc56vct5x.jpg\"]', '洗发水', '滋源无患子洗发水 控油轻盈洗发露洗头膏400ml(无硅油 男女士 补水控油 清爽蓬松)', '洗发', '34', 0, 26, '3', 76.00, 0.00, 0.00, '瓶', 0, 10, 50.00, 0, 32, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-15 17:36:41', '2022-11-17 15:21:09'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (17, 3, 'crmebimage/public/content/2022/11/15/06fa6d4f0cc04c31a77653eade4340a68v0kf7myjy.jpg', '', '[\"crmebimage/public/content/2022/11/15/06fa6d4f0cc04c31a77653eade4340a68v0kf7myjy.jpg\",\"crmebimage/public/content/2022/11/15/cd43ae26e0ed491a8163c05716eba80fq1th07frqu.jpg\"]', '红枣片', '百草味香脆红枣片50g 箱规75 香酥脆枣无核免洗酥脆红枣泡水', '红枣片', '34', 0, 143, '', 15.00, 0.00, 12.00, '瓶', 0, 5, 10.00, 0, 4, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-15 17:41:41', '2022-11-16 09:16:16'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (18, 1, 'crmebimage/public/content/2022/11/15/acc22d038bb0435586bebccd5dc53544dpmnjozget.png', '', '[\"crmebimage/public/content/2022/11/15/d23a3a099b644b9ab1b387c4c0c10577i9i2avzjqh.png\",\"crmebimage/public/content/2022/11/15/84800e6f4e9d44f7b925d01814cb29c3ayzpq8cp3k.png\",\"crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png\",\"crmebimage/public/content/2022/11/15/2228808d88994d91b4c072820e864c56lyhtiwq1z4.png\",\"crmebimage/public/content/2022/11/15/acc22d038bb0435586bebccd5dc53544dpmnjozget.png\"]', 'FUSSED 21AW designer plaid shirt 异型拼接纯白衬衫女衬衣上衣', 'FUSSED 21AW designer plaid shirt 异型拼接纯白衬衫女衬衣上衣', '拼接纯白衬衫女衬衣上衣', '8', 0, 124, '3', 0.00, 0.00, 0.00, '件', 6, 10327, 0.00, 0, 24, NULL, NULL, NULL, 1, 1, 0, 1, 0, 0, 1, 0, 0, '', 0, '2022-11-15 17:44:52', '2023-03-02 18:04:17'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (19, 3, 'crmebimage/public/content/2022/11/15/f9a847289f4443268b828435a2b361539v16e1jop6.jpg', '', '[\"crmebimage/public/content/2022/11/15/61a490f88b4e499894c0568e27f97eecr1hrwezns0.jpg\",\"crmebimage/public/content/2022/11/15/9ade12887ca04850b0fc15f3037c3897y3cee1mrz0.jpg\",\"crmebimage/public/content/2022/11/15/f9a847289f4443268b828435a2b361539v16e1jop6.jpg\"]', '山楂果脯', '山楂果脯20斤空心山楂蜜饯 山楂凉果山楂片零食无核果丹皮', '零食', '34', 0, 27, '3', 100.00, 0.00, 0.00, '斤', 0, 20, 80.00, 0, 2, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-15 17:45:46', '2022-11-16 09:16:10'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (20, 3, 'crmebimage/public/content/2022/11/15/00d5abe4e4374ce4a9a6f86598e90165zploz1lfhc.jpg', '', '[\"crmebimage/public/content/2022/11/15/00d5abe4e4374ce4a9a6f86598e90165zploz1lfhc.jpg\",\"crmebimage/public/content/2022/11/15/26099a8de7c54f9c8fda8f8d25e7828bbk3pdq8huh.jpg\",\"crmebimage/public/content/2022/11/15/958ca9e8f0aa4a90839eaa3bb943ddafwymecj5cjm.jpg\"]', '红枣', '晋河香 山西特产黑枣1斤装紫晶枣大乌枣长枣紫金枣零食枣散装批发', '红枣', '34', 0, 142, '4', 55.00, 0.00, 0.00, '斤', 0, 10, 40.00, 0, 1, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-15 17:49:50', '2022-11-16 09:16:13'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (21, 1, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', '', '[\"crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png\",\"crmebimage/public/content/2022/11/15/715a6a9365e044e98c0e7fbe7829fa0ac5pnclaeu4.png\",\"crmebimage/public/content/2022/11/15/5d575c83f06c4106a7ef439c92028d2fr1ajkqmm2j.png\",\"crmebimage/public/content/2022/11/15/69edd1cedf8f4d478a49f7a7844e0983o6x42nj4ig.png\",\"crmebimage/public/content/2022/11/15/19f18776ee414499bbf3cfb33537e68duercui42xq.png\"]', '男鞋AF款篮球鞋减震耐磨百搭板鞋男女冰淇淋小白鞋低帮女运动鞋 6222白色 43', '男鞋AF款篮球鞋减震耐磨百搭板鞋男女冰淇淋小白鞋低帮女运动鞋 6222白色 43', '男鞋AF款篮球鞋减震耐磨百搭板鞋男女冰淇淋小白鞋低帮女运动鞋 6222白色 43', '22', 0, 3, '', 999.00, 0.00, 11110.00, '双', 0, 773657, 888.00, 0, 58, NULL, NULL, NULL, 1, 1, 0, 1, 0, 0, 1, 0, 0, '', 0, '2022-11-15 17:52:43', '2023-03-02 18:04:18'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (22, 1, 'crmebimage/public/content/2022/11/15/f2b67dfaa03d4c71b5883e73bb5d6b5b2704m3hp5r.png', '', '[\"crmebimage/public/content/2022/11/15/22637bf2d38a40e68bbff2a06bcb63a5hp8ghdo300.png\",\"crmebimage/public/content/2022/11/15/1e16b1701bb54c0787e7a4ae0e3e3e27q2daf1xfi3.png\",\"crmebimage/public/content/2022/11/15/575bb26b6617499191fe6f052b11dba80v1pli1u9s.png\",\"crmebimage/public/content/2022/11/15/c872d333074f437bb7f2f402a2763fediijjxxyg66.png\",\"crmebimage/public/content/2022/11/15/f2b67dfaa03d4c71b5883e73bb5d6b5b2704m3hp5r.png\"]', '鹦鹉YINGWU鹦鹉手风琴120BS4排簧9968黑色红色蓝色41键手风琴专业演奏', '鹦鹉YINGWU鹦鹉手风琴120BS4排簧9968黑色红色蓝色41键手风琴专业演奏', '鹦鹉YINGWU鹦鹉手风琴120BS4排簧9968黑色红色蓝色41键手风琴专业演奏', '27', 0, 3, '', 6360.00, 0.00, 8000.00, '架', 0, 109991, 5000.00, 0, 66, NULL, NULL, NULL, 1, 1, 0, 0, 0, 0, 1, 0, 0, '', 0, '2022-11-15 17:58:23', '2023-03-02 18:04:19'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (23, 1, 'crmebimage/public/content/2022/11/17/fb1908fae984482aa7fc36eb7f09ae2bjx0q55lfzz.png', '', '[\"crmebimage/public/content/2022/11/16/42bf7b98726547f5ba3647a7de29851dqubcy6j5ix.png\",\"crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png\",\"crmebimage/public/content/2022/11/15/6bfe996a372f47139dd5b64fda046ef7p0v0kwbs2q.png\",\"crmebimage/public/content/2022/11/15/46c82b232d424d099d576c3d243ba1e7c251em40hn.png\",\"crmebimage/public/content/2022/11/15/bcc6d6ba2cc7488a8b0a1aef95131808c8lt757lmc.png\",\"crmebimage/public/content/2022/11/15/eb36cd9ebc364b09a19b55b7239f7bb99f6iwxkdv1.png\"]', 'CAMILA&KORALI品牌包包女包斜挎单肩小包女式', 'CAMILA&KORALI品牌包包女包斜挎单肩小包女式', 'CAMILA&KORALI品牌包包女包斜挎单肩小包女式', '27', 0, 3, '3', 1110.00, 0.00, 1110.00, '件', 0, 43414, 1110.00, 0, 111, NULL, NULL, NULL, 1, 1, 0, 1, 0, 0, 1, 0, 0, '', 0, '2022-11-15 18:03:33', '2023-03-02 18:04:20'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (24, 3, 'crmebimage/public/store/2022/11/16/8609c34f0dab45aa93d4bc1ec038eb459j1h2t3ggg.jpg', '', '[\"crmebimage/public/store/2022/11/16/8609c34f0dab45aa93d4bc1ec038eb459j1h2t3ggg.jpg\"]', '戒指', '珠联璧合,一身相爱', '戒指', '36', 0, 145, '4', 50000.00, 0.00, 0.00, '个', 0, 5, 40000.00, 0, 0, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-16 09:56:23', '2022-11-16 10:12:21'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (25, 3, 'crmebimage/public/store/2022/11/16/e2ba0651d8a144b982164535d481ae8d8at14mwrqa.jpg', '', '[\"crmebimage/public/store/2022/11/16/e2ba0651d8a144b982164535d481ae8d8at14mwrqa.jpg\",\"crmebimage/public/store/2022/11/16/4663eecfc4fa4298bf6000e41f7d05f1qyucqigrq2.jpeg\"]', '戒指2', '珠联璧合,一身相爱', '戒指', '36', 0, 145, '4', 4000.00, 0.00, 0.00, '个', 0, 6, 0.00, 0, 0, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-16 09:57:54', '2022-11-16 10:12:18'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (26, 3, 'crmebimage/public/store/2022/11/16/f4891ae440bb4d10aa04e749a828ef16uwk5ms3y6v.jpg', '', '[\"crmebimage/public/store/2022/11/16/f4891ae440bb4d10aa04e749a828ef16uwk5ms3y6v.jpg\"]', '珠宝', '相爱一生', '珠宝', '36', 0, 145, '4', 10000.00, 0.00, 0.00, '个', 0, 5, 0.00, 0, 0, NULL, NULL, NULL, 3, 40, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-16 10:03:51', '2022-11-16 10:11:53'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (27, 3, 'crmebimage/public/store/2022/11/16/41fc4b63c1b2422ebbd8871732022179dx8sk9a14b.jpg', '', '[\"crmebimage/public/store/2022/11/16/41fc4b63c1b2422ebbd8871732022179dx8sk9a14b.jpg\",\"crmebimage/public/store/2022/11/16/8a7103bed5e34fad814c7a88b6e824f83v2wvfl57e.jpg\"]', '钻石', '钻石一颗', '钻石', '36', 0, 145, '4', 50000.00, 0.00, 0.00, '枚', 0, 5, 0.00, 0, 0, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-16 10:06:39', '2022-11-16 10:11:51'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (28, 3, 'crmebimage/public/store/2022/11/16/7deffe5498524cb19a8171bc0fa061e2s5t5fmp0c5.jpg', '', '[\"crmebimage/public/store/2022/11/16/7deffe5498524cb19a8171bc0fa061e2s5t5fmp0c5.jpg\",\"crmebimage/public/store/2022/11/16/4663eecfc4fa4298bf6000e41f7d05f1qyucqigrq2.jpeg\"]', '红宝石', '红宝石喜气连连', '红宝石', '36', 0, 145, '4', 20000.00, 0.00, 0.00, '枚', 0, 5, 0.00, 0, 0, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 0, 1, 0, '', 0, '2022-11-16 10:08:13', '2022-11-16 10:11:49'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (30, 2, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', '', '[\"crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png\"]', 'test', '111', '11,22', '1', 4, 3, '3', 1.00, 0.00, 1.00, '个', 1, 1110, 1.00, 0, 30, NULL, NULL, NULL, 2, 1, 0, 0, 0, 1, 0, 1, 1, '', 0, '2022-11-16 15:02:02', '2022-12-16 23:46:42'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (31, 3, 'crmebimage/public/store/2022/11/16/82965a964b6147bbb1109948973f16f7vovsuhxld4.jpg', '', '[\"crmebimage/public/store/2022/11/16/77716879406644149d5902ef8c6533462kewq14zju.jpg\",\"crmebimage/public/store/2022/11/16/07fc00659c3c45ce9a20e3527af86db3xna4qrxa3w.jpg\",\"crmebimage/public/store/2022/11/16/82965a964b6147bbb1109948973f16f7vovsuhxld4.jpg\"]', '旅游帽子', '原创日系复古前进鸭舌帽英伦画家报童八角帽男', '帽子', '39', 0, 54, '', 50.00, 0.00, 0.00, '个', 0, 10, 0.00, 0, 16, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 1, 2, 0, '', 0, '2022-11-16 17:39:37', '2023-02-17 09:58:21'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (32, 2, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', '', '[\"crmebimage/public/content/2022/11/15/8a78f560585342ebaad8888ae005b0baf9j3ngghec.png\",\"crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png\",\"crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png\"]', '测试', '测试测试', '测试社会青春', '1,2', 4, 3, '', 0.01, 0.00, 0.00, '瓶', 1, 99998, 0.05, 0, 17, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2022-11-16 18:12:13', '2023-01-19 11:31:00'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (33, 2, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', '', '[\"crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png\"]', '1111', '111111', '1111', '2', 4, 3, '', 111.00, 0.00, 1111.00, '个', 0, 111111, 11.00, 0, 8, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2022-11-16 19:12:00', '2022-12-16 23:46:40'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (34, 1, 'crmebimage/public/content/2022/11/17/d86f16015f0244848f49782f1ef499dewenwhebqu3.png', '', '[\"crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png\",\"crmebimage/public/content/2022/11/17/ebec16889e9d49069b33253f113464c4v1uasloj1g.png\",\"crmebimage/public/content/2022/11/17/d9d4d7c6ab7d4b65903cb87eef2d79a7bjajjavdn4.png\",\"crmebimage/public/content/2022/11/17/d86f16015f0244848f49782f1ef499dewenwhebqu3.png\"]', '荣耀20青春版 AMOLED屏幕指纹 4000mAh大电池 20W快充 4800万 手机 6GB+64GB 冰岛幻境', '荣耀20青春版 AMOLED屏幕指纹 4000mAh大电池 20W快充 4800万 手机 6GB+64GB 冰岛幻境', '荣耀20青春版 AMOLED屏幕指纹 4000mAh大电池 20W快充 4800万 手机 6GB+64GB 冰岛幻境', '4,27', 0, 3, '', 10000.00, 0.00, 9000.00, '件 ', 0, 998289, 1000.00, 0, 8, NULL, NULL, NULL, 1, 1, 0, 1, 0, 0, 1, 0, 0, '', 0, '2022-11-17 10:33:20', '2023-03-02 18:04:21'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (35, 1, 'crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png', '', '[\"crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png\",\"crmebimage/public/content/2022/11/17/e401f19e158f44afbbb91be7fa55c7368jz5qdm4xy.png\",\"crmebimage/public/content/2022/11/17/bf0c52e7855e4087bf386b1438222a705ymvk1sq41.png\",\"crmebimage/public/content/2022/11/17/d8556ca6acf14795b01ff13134c0d5f6yn6buo1x8z.png\",\"crmebimage/public/content/2022/11/17/ba92c8ed5e104f7eacd2a34235758fd3gqerjhxhkc.png\"]', ' FOMIX 蛋壳椅 进口头层牛皮橙色单人沙发椅Egg chair设计师蛋椅 Egg chair/意大利头层牛皮/单椅', '\nFOMIX 蛋壳椅 进口头层牛皮橙色单人沙发椅Egg chair设计师蛋椅 Egg chair/意大利头层牛皮/单椅\n', ' FOMIX 蛋壳椅 进口头层牛皮橙色单人沙发椅Egg chair设计师蛋椅 Egg chair/意大利头层牛皮/单椅', '20', 0, 3, '3', 1110.00, 0.00, 2220.00, '件', 0, 1122024, 1110.00, 0, 28, NULL, NULL, NULL, 1, 5, 0, 1, 0, 0, 1, 0, 0, '', 0, '2022-11-17 10:42:28', '2023-03-02 18:04:24'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (47, 3, 'crmebimage/public/store/2022/11/16/77716879406644149d5902ef8c6533462kewq14zju.jpg', '', '[\"crmebimage/public/store/2022/11/16/77716879406644149d5902ef8c6533462kewq14zju.jpg\",\"crmebimage/public/store/2022/11/16/a408364246ff4be7a599324b0b45cfe7y04o448fxm.jpg\",\"crmebimage/public/store/2022/11/16/07fc00659c3c45ce9a20e3527af86db3xna4qrxa3w.jpg\"]', '时尚帽子', '时尚个性贝雷帽男士秋季新款民族风', '帽子', '39', 0, 142, '4', 20.00, 0.00, 0.00, '顶', 1, 0, 10.00, 0, 128, NULL, NULL, NULL, 3, 1, 0, 0, 0, 0, 1, 2, 0, '', 0, '2022-11-17 15:36:04', '2023-02-18 16:24:01'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (53, 2, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', '', '[\"crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png\",\"crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png\",\"crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png\",\"crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png\",\"crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png\"]', 'test', 'tested', '灯具', '57', 1, 124, '', 100.00, 0.00, 100.00, '1', 0, 20, 90.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 1, 0, 1, 0, 1, 1, '', 0, '2022-12-01 10:55:54', '2022-12-09 09:15:29'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (54, 2, 'crmebimage/public/content/2022/11/23/5f9b44bde92c4de88c67ee7f4b3b5382xych7msjr1.png', '', '[\"crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png\",\"crmebimage/public/content/2022/11/23/7fef70524c0f4533aecb961cbade0aa6cmlyzk3wew.png\"]', '冬季新品卫衣', '官方正品', '耐克,', '57', 7, 405, '3', 300.00, 0.00, 350.00, '耐克专卖店', 0, 100, 200.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2022-12-06 08:54:29', '2022-12-08 15:21:58'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (55, 2, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', '', '[\"https://img30.360buyimg.com/popWaterMark/jfs/t1/206453/8/19022/289025/6221d628E6f6a36c6/b9c3031568e5f8f7.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/215381/39/18230/349492/626a3112E5045ec01/ddc9b920c89df06c.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/107935/1/25478/373042/6221d628E6ab14f62/52d4d9ef6523672d.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/74459/1/17314/293589/6221d628E158d6021/84db2ec6c6dff753.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/133730/13/23007/247209/6221d628E538766b9/515a9455a7a37718.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/201733/3/25699/80592/62e3a3d6E4916029d/9ddf04eb35882243.jpg\"]', 'BOP波普专研益生菌条装漱口水一次性袋装便携口气清新男女口腔清洁5口味混合装20条*3盒', '清新手口水 - 20条*3盒', 'BOP波普专研益生菌条装漱口水一次性袋装便携口气清新男女口腔清洁5口味混合装20条*3盒', '58', 4, 35, '3,4', 100.00, 0.00, 0.01, '件', 2, 9997, 0.01, 0, 31, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2022-12-06 11:58:54', '2022-12-07 16:49:00'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (56, 2, 'crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png', '', '[\"crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png\",\"crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png\",\"crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png\"]', '测试商品手机', '测试商品手机测试商品手机测试商品手机', '手机', '57', 1, 124, '', 100.00, 0.00, 120.00, '个', 0, 100, 90.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 1, 0, 0, 1, 0, '', 1, '2022-12-07 17:18:53', '2022-12-07 17:19:24'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (57, 2, 'crmebimage/public/content/2022/11/15/4c4c7d2cee6d4d5e8317d9a45f9744c0699doksxyn.png', '', '[\"crmebimage/public/content/2022/11/15/4c4c7d2cee6d4d5e8317d9a45f9744c0699doksxyn.png\",\"crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png\"]', '测试YKY', 'YKY测试测试测试测试', '测试', '2', 2, 137, '', 0.00, 0.00, 0.00, 'YKY', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2022-12-07 18:22:21', '2022-12-07 18:24:57'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (58, 2, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', '', '[\"https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/145357/15/10785/36457/5f86c381E63b80ec9/b9afc67a0f2955c1.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/116921/3/13902/124755/5f28fdecE410d4ba5/6e94ab48df38ed61.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/135445/29/10714/122694/5f69b961E6f46cd6b/a6c2a6a41cdeba2b.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/143556/33/9014/121496/5f69b961E4337bc5d/0f2a826fc7f48155.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/131808/33/10541/135926/5f69b962Ec9e4abbd/0b42bf04fda0b3d2.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/117419/21/14066/38609/5f28fdf5E5686b2ff/addc8855593723de.jpg\",\"https://img30.360buyimg.com/popWaterMark/jfs/t1/141520/39/4515/78372/5f28fe01Ec1373153/3e7aca0cddf45ede.jpg\"]', '索尼(SONY)WH-1000XM4 国行高解析度无线蓝牙降噪 头戴式 游戏耳机(1000XM3升级款)黑色', '索尼(SONY)WH-1000XM4 国行高解析度无线蓝牙降噪 头戴式 游戏耳机(1000XM3升级款)黑色', '索尼(SONY)WH-1000XM4 国行高解析度无线蓝牙降噪 头戴式 游戏耳机(1000XM3升级款)黑色', '2', 1, 124, '', 1.00, 0.00, 1.00, '件', 0, 0, 1.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 1, 0, 0, 0, 1, 1, '', 0, '2022-12-11 23:52:06', '2022-12-16 17:58:52'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (59, 2, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', '', '[\"crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png\",\"crmebimage/public/content/2022/11/25/7f656eaf28f842daa7dac0ba651acf8e5won38419y.png\"]', '森ad', '方飒飒', '房东啊', '15', 1, 124, '', 0.00, 0.00, 0.00, '房东啊', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 1, 0, 0, 0, 1, 1, '', 0, '2022-12-18 12:22:32', '2022-12-18 12:27:54'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (60, 2, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', '', '[\"crmebimage/public/content/2022/11/25/7f656eaf28f842daa7dac0ba651acf8e5won38419y.png\",\"crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png\"]', '森达', '懂法粉丝大安防', '懂法森达', '2', 4, 3, '', 0.00, 0.00, 0.00, '烦死哒', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 12, 1, 0, 1, 0, 0, 0, 1, 1, '', 0, '2022-12-18 12:33:47', '2023-01-05 18:38:30'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (61, 2, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', '', '[\"crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png\"]', 'QQ', '111', '1', '1,53', 8, 459, '', 100.00, 0.00, 200.00, '11', 0, 800, 50.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 1, 0, 0, 0, 1, 1, '', 0, '2022-12-24 13:13:30', '2022-12-24 13:14:01'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (62, 2, 'crmebimage/public/content/2022/11/23/7fef70524c0f4533aecb961cbade0aa6cmlyzk3wew.png', '', '[\"crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png\",\"crmebimage/public/product/2022/12/29/c24690c9a04844df9ac9afe307ec047cv9hq0obs13.png\"]', 'zz', 'dd', 'xdd', '1', 0, 463, '3,4', 0.00, 0.00, 0.00, 'rr', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-01-01 08:20:19', '2023-01-01 08:20:34'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (63, 2, 'crmebimage/public/content/2022/11/23/5f9b44bde92c4de88c67ee7f4b3b5382xych7msjr1.png', '', '[\"crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png\"]', '1', '1', '1', '64', 8, 459, '3', 50.00, 0.00, 0.00, '1', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-01-01 21:19:56', '2023-01-01 21:20:59'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (64, 2, 'crmebimage/public/product/2022/12/29/c24690c9a04844df9ac9afe307ec047cv9hq0obs13.png', '', '[\"crmebimage/public/product/2022/12/29/c24690c9a04844df9ac9afe307ec047cv9hq0obs13.png\",\"crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png\"]', '衣服', '外网', '衣服', '1,2', 0, 0, '3,4', 0.00, 0.00, 0.00, '元', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-01-06 11:09:21', '2023-01-21 13:41:35'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (65, 2, 'crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png', '', '[\"crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png\"]', '测试', '测试一下', '苹果', '2', 2, 137, '', 5000.00, 0.00, 5100.00, '个', 0, 2, 4500.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-01-06 11:19:00', '2023-01-06 11:21:43'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (66, 2, 'crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png', '', '[\"crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png\"]', '红江橙', '1111111111111', '橙', '57', 4, 3, '3', 23.00, 0.00, 28.00, '斤', 0, 23, 12.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 1, 1, 0, 1, 1, '', 1, '2023-01-11 14:06:54', '2023-02-02 21:44:26'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (67, 2, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', '', '[\"crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png\"]', '1', '111', '1321', '58', 4, 3, '3', 10.00, 0.00, 0.00, '个', 0, 1110, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-01-12 15:49:22', '2023-01-21 13:41:38'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (68, 2, 'crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png', '', '[\"crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png\"]', '1', '123', '1', '66', 5, 3, '', 0.00, 0.00, 0.00, '123', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-01-13 10:11:09', '2023-02-02 21:44:23'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (69, 2, 'crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png', '', '[\"crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png\",\"crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png\",\"crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png\",\"crmebimage/public/content/2022/11/15/1751b446030f46ba9221230deb354e1auigo1647tp.png\",\"crmebimage/public/content/2022/11/15/d27ed504a1714eaabdad0ca9f7b913afy5syxb79qd.png\"]', 'dgdg', 'ddfdsfdgf', '魅族', '15', 1, 124, '3,4', 2000.00, 0.00, 2689.00, '部', 0, 100, 1000.00, 0, 1, NULL, NULL, NULL, 2, 1, 0, 0, 1, 0, 0, 2, 0, '', 1, '2023-01-27 15:20:50', '2023-02-15 22:22:20'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (70, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '鸡腿', '都无法发', '啊啊打发发', '53', 0, 483, '3,4', 0.00, 0.00, 0.00, '请顶起顶起顶起', 1, 0, 0.00, 0, 1, NULL, NULL, NULL, 2, 1, 0, 1, 0, 0, 0, 1, 1, '', 0, '2023-02-02 10:11:53', '2023-02-02 21:46:13'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (71, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2022/11/23/5f9b44bde92c4de88c67ee7f4b3b5382xych7msjr1.png\",\"crmebimage/public/content/2022/11/25/7f656eaf28f842daa7dac0ba651acf8e5won38419y.png\",\"crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png\",\"crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png\",\"crmebimage/public/content/2023/01/13/a839e2751f864888a24ba06b6ecbf1cefjckuujlzd.png\"]', '111', '111', '啊啊,啊', '2', 0, 483, '3,4', 190.00, 0.00, 199.00, '啊', 0, 300, 120.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 1, 0, 0, 0, 1, 1, '', 0, '2023-02-02 21:41:53', '2023-02-02 21:42:05'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (72, 2, 'crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '11', '11', '13,131,312', '1', 1, 124, '3,4', 0.00, 0.00, 0.00, '11', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 1, 0, 1, 1, '', 0, '2023-02-03 10:05:58', '2023-02-03 10:06:33'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (73, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png\"]', 'qqq', 'qq', 'qq', '2', 1, 124, '4', 0.00, 0.00, 0.00, 'qq', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-03 23:02:37', '2023-02-09 11:25:18'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (74, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '1', '1111', '111', '58,66', 0, 0, '', 100.00, 0.00, 0.00, '11', 0, 22, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-07 12:59:24', '2023-02-07 12:59:52'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (75, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '123', '123', '123', '58,66', 12, 67, '3', 101.00, 0.00, 100.00, '1', 0, 999, 99.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-07 16:02:11', '2023-02-07 16:02:25'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (76, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png\"]', 'xiao', 'jiann ', 'da', '66', 0, 100, '', 79.00, 0.00, 79.00, 'jian', 0, 100, 79.00, 0, 0, NULL, NULL, NULL, 19, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-08 10:33:01', '2023-02-08 10:37:30'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (77, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png\"]', 'iphone14Promax', '111111111', '111', '2', 0, 108, '3', 10.00, 0.00, 300.00, '支', 1, 9994, 200.00, 0, 29, NULL, NULL, NULL, 12, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-08 15:05:08', '2023-02-16 19:35:59'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (78, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\",\"crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png\"]', '1', '11', '11', '58,66,65', 0, 487, '3', 0.00, 0.00, 0.00, '1', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-10 11:50:23', '2023-02-11 11:28:53'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (79, 2, 'crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png', '', '[\"crmebimage/public/content/2023/01/13/a839e2751f864888a24ba06b6ecbf1cefjckuujlzd.png\"]', '222', '333', '444', '1', 1, 124, '', 0.00, 0.00, 0.00, '111', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-11 10:17:02', '2023-02-11 10:17:32'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (80, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '大粽子测试商品1', '1122', '大粽子测试商品1,测试,大粽子,大粽子测试', '66', 4, 3, '', 0.00, 0.00, 0.00, 'unit', 0, 999, 0.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-13 11:32:07', '2023-02-13 11:32:20'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (81, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '测试商品2233', '2233', '测试商品', '66', 4, 3, '', 9.99, 0.00, 0.00, 'unit', 0, 99, 7.00, 0, 0, NULL, NULL, NULL, 2, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-13 15:41:37', '2023-02-13 15:41:47'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (82, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '21', '21', '21', '1', 8, 459, '', 0.00, 0.00, 0.00, '21', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 1, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-14 11:40:15', '2023-02-14 11:40:23'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (83, 2, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '', '[\"crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png\"]', '111', '11', '11,22,333', '1', 8, 459, '3', 1.00, 0.00, 1.00, '11', 0, 1000, 1.00, 0, 0, NULL, NULL, NULL, 1, 1, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-14 13:44:40', '2023-02-16 16:42:11'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (84, 2, 'crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png', '', '[\"crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png\",\"crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png\",\"crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png\",\"crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png\"]', '菠萝手机', 'verygoods', '手机', '1', 1, 124, '', 0.01, 0.00, 0.01, '台', 1, 99993, 0.01, 0, 25, NULL, NULL, NULL, 1, 1, 0, 0, 0, 1, 0, 1, 1, '', 0, '2023-02-15 09:05:25', '2023-02-16 19:36:01'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (85, 2, 'crmebimage/public/product/2023/02/11/8c965494539e4b16b1045071f4762e3fa7qy7b1ce1.png', '', '[\"crmebimage/public/product/2023/02/11/8c965494539e4b16b1045071f4762e3fa7qy7b1ce1.png\"]', '1', '1', '1', '4', 13, 157, '3,4', 0.00, 0.00, 0.00, '1', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 1, 2, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-16 15:56:28', '2023-02-16 19:36:05'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (86, 2, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', '', '[\"crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png\",\"crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png\",\"crmebimage/public/content/2023/01/13/a839e2751f864888a24ba06b6ecbf1cefjckuujlzd.png\"]', '羽绒服', '轻薄保暖透气', '绒', '8', 0, 405, '4,3', 560.00, 0.00, 880.00, '件', 0, 10, 300.00, 0, 0, NULL, NULL, NULL, 1, 99, 0, 0, 0, 0, 0, 1, 1, '', 0, '2023-02-16 16:38:00', '2023-02-16 16:43:28'); INSERT INTO `eb_product` (`id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `cate_id`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `vip_price`, `ot_price`, `unit_name`, `sales`, `stock`, `cost`, `ficti`, `browse`, `code_path`, `soure_link`, `video_link`, `temp_id`, `sort`, `rank`, `spec_type`, `is_recycle`, `is_sub`, `is_show`, `audit_status`, `is_audit`, `reason`, `is_del`, `create_time`, `update_time`) VALUES (87, 2, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', '', '[\"crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png\",\"crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png\",\"crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png\",\"crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png\"]', '手机', '智能动感', '机', '4', 1, 124, '3,4', 0.00, 0.00, 0.00, '个', 0, 0, 0.00, 0, 0, NULL, NULL, NULL, 1, 1, 0, 0, 0, 1, 0, 1, 1, '', 0, '2023-02-16 18:09:51', '2023-02-16 19:36:03'); COMMIT; -- ---------------------------- -- Table structure for eb_product_attr -- ---------------------------- DROP TABLE IF EXISTS `eb_product_attr`; CREATE TABLE `eb_product_attr` ( `id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID', `attr_name` varchar(32) NOT NULL COMMENT '属性名', `attr_values` varchar(1000) NOT NULL COMMENT '属性值,英文逗号拼接', `type` tinyint(1) DEFAULT '0' COMMENT '商品类型 0=商品,1=秒杀,2=砍价,3=拼团', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除,0-否,1-是', PRIMARY KEY (`id`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=205 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品属性表'; -- ---------------------------- -- Records of eb_product_attr -- ---------------------------- BEGIN; INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (1, 1, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (2, 2, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (3, 3, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (4, 4, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (5, 5, '颜色', '白色,粉色', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (6, 6, '颜色', '陶瓷白 ,陶瓷黑, 影青灰', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (7, 6, '购买方式', '标准版,保值换新版,三体礼盒版', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (8, 6, '版本', '8G+128G,8G+256G,12G+128G,12G+256G', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (9, 7, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (10, 8, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (11, 9, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (12, 10, '颜色', '爵士黑,活力橙,黑色,白色,玫瑰色,冷峻黑,珍珠白', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (13, 11, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (14, 12, '颜色', '高雅黑,小微粉,经典白', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (15, 12, '模式', '触控式,旋转式', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (16, 12, '颜色', '高雅黑,小微粉,经典白', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (17, 12, '模式', '触控式,旋转式', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (18, 13, '颜色', '蓝色,粉色', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (19, 13, '形状', '领结,奶茶包', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (20, 14, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (21, 15, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (22, 16, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (23, 17, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (24, 18, '尺码', 'XS,S,M ', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (25, 18, '颜色', '白色', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (26, 18, '尺码', 'XS,S,M ', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (27, 18, '颜色', '白色', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (28, 19, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (29, 20, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (30, 21, '尺码', '36,37,38,39,40,41,42', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (31, 22, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (32, 23, '颜色', '白绿色,白蓝色', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (33, 23, '样式', '横版,竖版', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (34, 24, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (35, 25, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (36, 23, '颜色', '白绿色,白蓝色', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (37, 23, '样式', '横版,竖版', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (38, 26, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (39, 27, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (40, 28, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (41, 18, '尺码', 'XS,S,M ', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (42, 18, '颜色', '白色', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (44, 30, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (45, 31, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (46, 32, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (47, 33, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (48, 23, '颜色', '白绿色,白蓝色', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (49, 23, '样式', '横版,竖版', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (50, 23, '颜色', '白绿色,白蓝色', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (51, 23, '样式', '横版,竖版', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (52, 34, '尺寸', '4寸,6寸,6.5寸', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (53, 34, '颜色', '黑色,白色,银色', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (54, 35, '颜色', 'Egg chair/意大利头层牛皮/单椅,Egg chair/意大利头层牛皮/脚踏', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (68, 47, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (79, 53, 'test1', '100,200', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (80, 53, 'test2', '1000', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (83, 54, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (84, 55, '产品', '【镇店爆款】混合果味60条,【加倍冰感】茶爽500ml*3,【冰感清新】混合茶爽20条,【颜值代表】三丽鸥联名20条,【瓶条组合】白桃+葡萄+混合*2,【便携条装】混合果味20条,【冰感清新】混合茶爽60条,【冰感清新】冻顶乌龙500ml,【冰感清新】白桃冰茶500ml,【冰感清新】琥珀乌龙500ml,【尝鲜体验】元气白桃100ml,【尝鲜体验】混合果味3条,【尝鲜体验】茶爽100ml', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (86, 55, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (87, 56, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (88, 57, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (89, 58, '颜色', '黑色,铂金银', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (90, 58, '版本', '1000XM4,1000XM3', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (91, 58, '颜色', '黑色,铂金银', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (92, 58, '版本', '1000XM4,1000XM3', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (93, 58, '颜色', '黑色,铂金银', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (94, 58, '版本', '1000XM4,1000XM3', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (95, 59, '颜色', '黑色,白色', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (96, 59, '重量', '1kg,2kg', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (97, 60, 'A', 'A1,A2', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (98, 60, 'B', 'B1,B2', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (99, 61, '2件', '2,2件,3件,4件阿萨德', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (100, 61, '批发', '10件,100件', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (101, 62, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (102, 63, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (103, 64, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (104, 65, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (105, 66, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (106, 67, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (107, 68, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (108, 69, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (109, 70, '规格', '默认', 0, 1); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (110, 71, '尺码', 'SS', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (111, 71, '颜色', '红,橙,黄', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (112, 70, '次', '50,100', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (113, 72, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (114, 73, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (115, 74, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (116, 75, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (117, 76, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (118, 77, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (119, 78, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (120, 79, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (121, 80, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (122, 81, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (130, 82, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (131, 83, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (176, 84, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (189, 85, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (190, 86, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (191, 87, '规格', '默认', 0, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (192, 1, '颜色', '高雅黑,小微粉,经典白', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (193, 1, '模式', '触控式,旋转式', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (194, 2, '颜色', '蓝色,粉色', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (195, 2, '形状', '领结,奶茶包', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (196, 3, '尺码', 'XS,S,M ', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (197, 3, '颜色', '白色', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (198, 4, '尺码', '36,37,38,39,40,41,42', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (199, 5, '规格', '默认', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (200, 6, '颜色', '白绿色,白蓝色', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (201, 6, '样式', '横版,竖版', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (202, 7, '尺寸', '4寸,6寸,6.5寸', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (203, 7, '颜色', '黑色,白色,银色', 1, 0); INSERT INTO `eb_product_attr` (`id`, `product_id`, `attr_name`, `attr_values`, `type`, `is_del`) VALUES (204, 8, '颜色', 'Egg chair/意大利头层牛皮/单椅,Egg chair/意大利头层牛皮/脚踏', 1, 0); COMMIT; -- ---------------------------- -- Table structure for eb_product_attr_value -- ---------------------------- DROP TABLE IF EXISTS `eb_product_attr_value`; CREATE TABLE `eb_product_attr_value` ( `id` mediumint(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `product_id` int(10) unsigned NOT NULL COMMENT '商品ID', `sku` varchar(128) NOT NULL COMMENT '商品属性sku', `stock` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '属性对应的库存', `sales` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '销量', `price` decimal(8,2) unsigned NOT NULL COMMENT '价格', `image` varchar(1000) DEFAULT NULL COMMENT '图片', `cost` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '成本价', `bar_code` varchar(50) NOT NULL DEFAULT '' COMMENT '商品条码', `ot_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '原价', `weight` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '重量', `volume` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '体积', `brokerage` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '一级返佣', `brokerage_two` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '二级返佣', `type` tinyint(1) DEFAULT '0' COMMENT '商品类型 0=商品,1=秒杀,2=砍价,3=拼团', `quota` int(11) DEFAULT NULL COMMENT '活动限购数量', `quota_show` int(11) DEFAULT NULL COMMENT '活动限购数量显示', `attr_value` text COMMENT 'attr_values 创建更新时的属性对应', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除,0-否,1-是', `version` int(11) DEFAULT '0' COMMENT '并发版本控制', `master_id` int(11) NOT NULL DEFAULT '0' COMMENT '主商品attrValueID', `is_callback` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否回滚库存:0-未回滚,1-已回滚', PRIMARY KEY (`id`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=557 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品属性值表'; -- ---------------------------- -- Records of eb_product_attr_value -- ---------------------------- BEGIN; INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (1, 1, '默认', 9999, 0, 9999.00, 'crmebimage/public/content/2022/11/15/1fe7ceab76cc4255b21b9d22756b686anlyj89btut.jpg', 9998.00, '11232', 8889.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (2, 2, '默认', 8996, 0, 9988.00, 'crmebimage/public/content/2022/11/15/a2c4f7973d424f1696f30e3ab786385341t4pnttqa.png', 7788.00, '12121', 5566.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (3, 3, '默认', 100, 0, 100.00, 'crmebimage/public/content/2022/11/15/8ad795fca85d46c2a86ecbd391d5ec9frj0dk5ovms.png', 50.00, '', 70.00, 1.00, 1.00, 10.00, 5.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (4, 4, '默认', 9999, 0, 12877.00, 'crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png', 9900.00, '121212', 7888.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (5, 5, '白色', 310, 0, 9.00, 'crmebimage/public/content/2022/11/15/59d5c2165b134bc894c3678ddb27f5baithxqz4pvi.png', 8.00, '', 10.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (6, 5, '粉色', 1109, 0, 90.00, 'crmebimage/public/content/2022/11/15/b86dfed1c6f54014b4a061cf44e407dfay7tzrcr6s.png', 8.00, '', 10.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"粉色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (7, 6, '陶瓷白 ,标准版,8G+128G', 16, 1, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"标准版\",\"版本\":\"8G+128G\"}', 0, 7, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (8, 6, '陶瓷白 ,标准版,8G+256G', 15, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"标准版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (9, 6, '陶瓷白 ,标准版,12G+128G', 12, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"标准版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (10, 6, '陶瓷白 ,标准版,12G+256G', 13, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"标准版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (11, 6, '陶瓷白 ,保值换新版,8G+128G', 16, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"保值换新版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (12, 6, '陶瓷白 ,保值换新版,8G+256G', 14, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"保值换新版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (13, 6, '陶瓷白 ,保值换新版,12G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"保值换新版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (14, 6, '陶瓷白 ,保值换新版,12G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"保值换新版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (15, 6, '陶瓷白 ,三体礼盒版,8G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"三体礼盒版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (16, 6, '陶瓷白 ,三体礼盒版,8G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"三体礼盒版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (17, 6, '陶瓷白 ,三体礼盒版,12G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"三体礼盒版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (18, 6, '陶瓷白 ,三体礼盒版,12G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷白 \",\"购买方式\":\"三体礼盒版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (19, 6, '陶瓷黑,标准版,8G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"标准版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (20, 6, '陶瓷黑,标准版,8G+256G', 0, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"标准版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (21, 6, '陶瓷黑,标准版,12G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"标准版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (22, 6, '陶瓷黑,标准版,12G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"标准版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (23, 6, '陶瓷黑,保值换新版,8G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"保值换新版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (24, 6, '陶瓷黑,保值换新版,8G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"保值换新版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (25, 6, '陶瓷黑,保值换新版,12G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"保值换新版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (26, 6, '陶瓷黑,保值换新版,12G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"保值换新版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (27, 6, '陶瓷黑,三体礼盒版,8G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"三体礼盒版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (28, 6, '陶瓷黑,三体礼盒版,8G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"三体礼盒版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (29, 6, '陶瓷黑,三体礼盒版,12G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"三体礼盒版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (30, 6, '陶瓷黑,三体礼盒版,12G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"陶瓷黑\",\"购买方式\":\"三体礼盒版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (31, 6, ' 影青灰,标准版,8G+128G', 10, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"标准版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (32, 6, ' 影青灰,标准版,8G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"标准版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (33, 6, ' 影青灰,标准版,12G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"标准版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (34, 6, ' 影青灰,标准版,12G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"标准版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (35, 6, ' 影青灰,保值换新版,8G+128G', 10, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"保值换新版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (36, 6, ' 影青灰,保值换新版,8G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"保值换新版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (37, 6, ' 影青灰,保值换新版,12G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"保值换新版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (38, 6, ' 影青灰,保值换新版,12G+256G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"保值换新版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (39, 6, ' 影青灰,三体礼盒版,8G+128G', 20, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"三体礼盒版\",\"版本\":\"8G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (40, 6, ' 影青灰,三体礼盒版,8G+256G', 10, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"三体礼盒版\",\"版本\":\"8G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (41, 6, ' 影青灰,三体礼盒版,12G+128G', 10, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"三体礼盒版\",\"版本\":\"12G+128G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (42, 6, ' 影青灰,三体礼盒版,12G+256G', 10, 0, 1000.00, 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', 900.00, '', 700.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\" 影青灰\",\"购买方式\":\"三体礼盒版\",\"版本\":\"12G+256G\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (43, 7, '默认', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/a1ccc8bf2fd343459116605d1903b068azb9o7xne8.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (44, 8, '默认', 0, 0, 1520.00, 'crmebimage/public/content/2022/11/15/9403edc512f54e0da9f20f53d2d131ef5ipt0u4opp.jpg', 120.00, '1231', 1450.00, 1.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (45, 9, '默认', 0, 0, 25.00, 'crmebimage/public/content/2022/11/15/2b5fb89a29184a90b17038ee08877590xlaswityct.jpg', 20.00, '', 22.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (46, 10, '爵士黑', 0, 0, 11000.00, 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', 1111.00, '', 9999.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"爵士黑\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (47, 10, '活力橙', 3, 0, 11000.00, 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', 1111.00, '', 9999.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"活力橙\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (48, 10, '黑色', 3, 0, 11000.00, 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', 1111.00, '', 9999.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"黑色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (49, 10, '白色', 3, 0, 11000.00, 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', 1111.00, '', 9999.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (50, 10, '玫瑰色', 3, 0, 11000.00, 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', 1111.00, '', 9999.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"玫瑰色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (51, 10, '冷峻黑', 0, 0, 11000.00, 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', 1111.00, '', 9999.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"冷峻黑\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (52, 10, '珍珠白', 3, 0, 11000.00, 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', 1111.00, '', 9999.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"珍珠白\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (53, 11, '默认', 0, 0, 56.00, 'crmebimage/public/content/2022/11/15/4343eb4220524f1586f12a3baa8ec839pnq2h3jehx.jpg', 50.00, '', 54.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 7, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (54, 12, '高雅黑,触控式', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"高雅黑\",\"模式\":\"触控式\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (55, 12, '高雅黑,旋转式', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"高雅黑\",\"模式\":\"旋转式\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (56, 12, '小微粉,触控式', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"小微粉\",\"模式\":\"触控式\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (57, 12, '小微粉,旋转式', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"小微粉\",\"模式\":\"旋转式\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (58, 12, '经典白,触控式', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"经典白\",\"模式\":\"触控式\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (59, 12, '经典白,旋转式', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"经典白\",\"模式\":\"旋转式\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (60, 12, '高雅黑,触控式', 0, 0, 111.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"高雅黑\",\"模式\":\"触控式\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (61, 12, '高雅黑,旋转式', 0, 0, 111.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"高雅黑\",\"模式\":\"旋转式\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (62, 12, '小微粉,触控式', 0, 0, 111.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"小微粉\",\"模式\":\"触控式\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (63, 12, '小微粉,旋转式', 0, 0, 111.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"小微粉\",\"模式\":\"旋转式\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (64, 12, '经典白,触控式', 0, 0, 111.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"经典白\",\"模式\":\"触控式\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (65, 12, '经典白,旋转式', 0, 0, 111.00, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"经典白\",\"模式\":\"旋转式\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (66, 13, '蓝色,领结', 0, 109, 10.00, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 8.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"蓝色\",\"形状\":\"领结\"}', 0, 6, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (67, 13, '蓝色,奶茶包', 0, 0, 10.00, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 8.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"蓝色\",\"形状\":\"奶茶包\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (68, 13, '粉色,领结', 0, 220, 10.00, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 8.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"粉色\",\"形状\":\"领结\"}', 0, 5, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (69, 13, '粉色,奶茶包', 0, 109, 10.00, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 8.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"粉色\",\"形状\":\"奶茶包\"}', 0, 6, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (70, 14, '默认', 10, 0, 1999.00, 'crmebimage/public/content/2022/11/15/d1a1c6908aec42369a27f54e4ee98fddkzg8spjs55.jpg', 1500.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 8, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (71, 15, '默认', 5, 0, 66.00, 'crmebimage/public/content/2022/11/15/fbaeb4d56f614f108caa706190c38d1fb7r5qlcphe.jpg', 30.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (72, 16, '默认', 10, 0, 76.00, 'crmebimage/public/content/2022/11/15/2170153082494468a5542fd2f7778c93pzc56vct5x.jpg', 50.00, '4561', 0.00, 0.50, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (73, 17, '默认', 5, 0, 15.00, 'crmebimage/public/content/2022/11/15/06fa6d4f0cc04c31a77653eade4340a68v0kf7myjy.jpg', 10.00, '', 12.00, 0.50, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (74, 18, 'XS,白色', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"XS\",\"颜色\":\"白色\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (75, 18, 'S,白色', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"S\",\"颜色\":\"白色\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (76, 18, 'M ,白色', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"M \",\"颜色\":\"白色\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (77, 18, 'XS,白色', 1110, 0, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"XS\",\"颜色\":\"白色\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (78, 18, 'S,白色', 1110, 0, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"S\",\"颜色\":\"白色\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (79, 18, 'M ,白色', 11110, 0, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"M \",\"颜色\":\"白色\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (80, 19, '默认', 20, 0, 100.00, 'crmebimage/public/content/2022/11/15/f9a847289f4443268b828435a2b361539v16e1jop6.jpg', 80.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (81, 20, '默认', 10, 0, 55.00, 'crmebimage/public/content/2022/11/15/00d5abe4e4374ce4a9a6f86598e90165zploz1lfhc.jpg', 40.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (82, 21, '36', 110111, 0, 999.00, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 11110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"36\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (83, 21, '37', 110111, 0, 999.00, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 11110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"37\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (84, 21, '38', 110111, 0, 999.00, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 11110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"38\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (85, 21, '39', 110111, 0, 999.00, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 11110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"39\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (86, 21, '40', 111011, 0, 999.00, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 11110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"40\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (87, 21, '41', 111101, 0, 999.00, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 11110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"41\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (88, 21, '42', 111101, 0, 999.00, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 11110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"42\"}', 0, 3, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (89, 22, '默认', 109991, 0, 6360.00, 'crmebimage/public/content/2022/11/15/f2b67dfaa03d4c71b5883e73bb5d6b5b2704m3hp5r.png', 5000.00, '', 8000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 5, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (90, 23, '白绿色,横版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"横版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (91, 23, '白绿色,竖版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"竖版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (92, 23, '白蓝色,横版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"横版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (93, 23, '白蓝色,竖版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"竖版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (94, 24, '默认', 5, 0, 50000.00, 'crmebimage/public/store/2022/11/16/8609c34f0dab45aa93d4bc1ec038eb459j1h2t3ggg.jpg', 40000.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (95, 25, '默认', 6, 0, 4000.00, 'crmebimage/public/store/2022/11/16/e2ba0651d8a144b982164535d481ae8d8at14mwrqa.jpg', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (96, 23, '白绿色,横版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"横版\"}', 1, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (97, 23, '白绿色,竖版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"竖版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (98, 23, '白蓝色,横版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"横版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (99, 23, '白蓝色,竖版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"竖版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (100, 26, '默认', 5, 0, 10000.00, 'crmebimage/public/store/2022/11/16/f4891ae440bb4d10aa04e749a828ef16uwk5ms3y6v.jpg', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (101, 27, '默认', 5, 0, 50000.00, 'crmebimage/public/store/2022/11/16/41fc4b63c1b2422ebbd8871732022179dx8sk9a14b.jpg', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (102, 28, '默认', 5, 0, 20000.00, 'crmebimage/public/store/2022/11/16/7deffe5498524cb19a8171bc0fa061e2s5t5fmp0c5.jpg', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (103, 18, 'XS,白色', 107, 4, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"XS\",\"颜色\":\"白色\"}', 0, 23, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (104, 18, 'S,白色', 110, 1, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"S\",\"颜色\":\"白色\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (105, 18, 'M ,白色', 10110, 1, 0.00, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"M \",\"颜色\":\"白色\"}', 0, 4, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (107, 30, '默认', 1110, 1, 1.00, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', 1.00, '', 1.00, 0.00, 0.00, 1.00, 1.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (108, 31, '默认', 10, 0, 50.00, 'crmebimage/public/store/2022/11/16/82965a964b6147bbb1109948973f16f7vovsuhxld4.jpg', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (109, 32, '默认', 99998, 1, 0.01, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', 0.05, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (110, 33, '默认', 111111, 0, 111.00, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', 11.00, '', 1111.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (111, 23, '白绿色,横版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"横版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (112, 23, '白绿色,竖版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"竖版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (113, 23, '白蓝色,横版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"横版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (114, 23, '白蓝色,竖版', 11110, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"竖版\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (115, 23, '白绿色,横版', 11101, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"横版\"}', 0, 5, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (116, 23, '白绿色,竖版', 10111, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白绿色\",\"样式\":\"竖版\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (117, 23, '白蓝色,横版', 11101, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"横版\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (118, 23, '白蓝色,竖版', 11101, 0, 1110.00, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白蓝色\",\"样式\":\"竖版\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (119, 34, '4寸,黑色', 111101, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"4寸\",\"颜色\":\"黑色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (120, 34, '4寸,白色', 110111, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"4寸\",\"颜色\":\"白色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (121, 34, '4寸,银色', 111011, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"4寸\",\"颜色\":\"银色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (122, 34, '6寸,黑色', 111011, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"6寸\",\"颜色\":\"黑色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (123, 34, '6寸,白色', 111011, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"6寸\",\"颜色\":\"白色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (124, 34, '6寸,银色', 111011, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"6寸\",\"颜色\":\"银色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (125, 34, '6.5寸,黑色', 111011, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"6.5寸\",\"颜色\":\"黑色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (126, 34, '6.5寸,白色', 111011, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"6.5寸\",\"颜色\":\"白色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (127, 34, '6.5寸,银色', 111011, 0, 10000.00, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 9000.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺寸\":\"6.5寸\",\"颜色\":\"银色\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (128, 35, 'Egg chair/意大利头层牛皮/单椅', 11012, 0, 1110.00, 'crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png', 1110.00, '', 2220.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"Egg chair/意大利头层牛皮/单椅\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (129, 35, 'Egg chair/意大利头层牛皮/脚踏', 1111012, 0, 1110.00, 'crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png', 1110.00, '', 2222.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"Egg chair/意大利头层牛皮/脚踏\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (152, 47, '默认', 0, 1, 20.00, 'crmebimage/public/store/2022/11/16/77716879406644149d5902ef8c6533462kewq14zju.jpg', 10.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 16, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (177, 53, '100,1000', 10, 0, 100.00, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', 90.00, '1', 100.00, 10.00, 10.00, 1.00, 2.00, 0, 0, 0, '{\"test1\":\"100\",\"test2\":\"1000\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (178, 53, '200,1000', 10, 0, 200.00, 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', 190.00, '2', 100.00, 10.00, 10.00, 2.00, 3.00, 0, 0, 0, '{\"test1\":\"200\",\"test2\":\"1000\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (182, 54, '默认', 100, 0, 300.00, 'crmebimage/public/content/2022/11/23/5f9b44bde92c4de88c67ee7f4b3b5382xych7msjr1.png', 200.00, '1001001', 350.00, 0.50, 0.30, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (183, 55, '【镇店爆款】混合果味60条', 9999, 0, 978.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【镇店爆款】混合果味60条\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (184, 55, '【加倍冰感】茶爽500ml*3', 9999, 0, 988.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【加倍冰感】茶爽500ml*3\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (185, 55, '【冰感清新】混合茶爽20条', 9999, 0, 998.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【冰感清新】混合茶爽20条\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (186, 55, '【颜值代表】三丽鸥联名20条', 9999, 0, 198.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【颜值代表】三丽鸥联名20条\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (187, 55, '【瓶条组合】白桃+葡萄+混合*2', 9999, 0, 298.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【瓶条组合】白桃+葡萄+混合*2\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (188, 55, '【便携条装】混合果味20条', 9999, 0, 398.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【便携条装】混合果味20条\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (189, 55, '【冰感清新】混合茶爽60条', 9999, 0, 498.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【冰感清新】混合茶爽60条\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (190, 55, '【冰感清新】冻顶乌龙500ml', 9999, 0, 598.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【冰感清新】冻顶乌龙500ml\"}', 1, 2, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (191, 55, '【冰感清新】白桃冰茶500ml', 9999, 0, 698.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【冰感清新】白桃冰茶500ml\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (192, 55, '【冰感清新】琥珀乌龙500ml', 9999, 0, 798.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【冰感清新】琥珀乌龙500ml\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (193, 55, '【尝鲜体验】元气白桃100ml', 9999, 0, 898.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【尝鲜体验】元气白桃100ml\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (194, 55, '【尝鲜体验】混合果味3条', 9999, 0, 994.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【尝鲜体验】混合果味3条\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (195, 55, '【尝鲜体验】茶爽100ml', 9999, 0, 993.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/183387/5/28508/105796/6316acc6E6c508c8c/d8dc88d9cb57bd93.jpg', 666.00, '1234', 555.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"产品\":\"【尝鲜体验】茶爽100ml\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (209, 55, '默认', 9997, 2, 100.00, 'crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png', 0.01, '', 0.01, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (210, 56, '默认', 100, 0, 100.00, 'crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png', 90.00, '1111111111111', 120.00, 0.50, 20.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (211, 57, '默认', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/4c4c7d2cee6d4d5e8317d9a45f9744c0699doksxyn.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (212, 58, '黑色,1000XM4', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"版本\":\"1000XM4\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (213, 58, '黑色,1000XM3', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"版本\":\"1000XM3\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (214, 58, '铂金银,1000XM4', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"铂金银\",\"版本\":\"1000XM4\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (215, 58, '铂金银,1000XM3', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"铂金银\",\"版本\":\"1000XM3\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (216, 58, '黑色,1000XM4', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"版本\":\"1000XM4\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (217, 58, '黑色,1000XM3', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"版本\":\"1000XM3\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (218, 58, '铂金银,1000XM4', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"铂金银\",\"版本\":\"1000XM4\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (219, 58, '铂金银,1000XM3', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"铂金银\",\"版本\":\"1000XM3\"}', 1, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (220, 58, '黑色,1000XM4', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"版本\":\"1000XM4\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (221, 58, '黑色,1000XM3', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"版本\":\"1000XM3\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (222, 58, '铂金银,1000XM4', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"铂金银\",\"版本\":\"1000XM4\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (223, 58, '铂金银,1000XM3', 0, 0, 1.00, 'https://img30.360buyimg.com/popWaterMark/jfs/t1/174339/16/15941/134669/60d18aaaE8f432c5b/0ff540a2a8add747.jpg', 1.00, '', 1.00, 0.00, 0.00, 10.00, 1.00, 0, 0, 0, '{\"颜色\":\"铂金银\",\"版本\":\"1000XM3\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (224, 59, '黑色,1kg', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"重量\":\"1kg\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (225, 59, '黑色,2kg', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"黑色\",\"重量\":\"2kg\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (226, 59, '白色,1kg', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白色\",\"重量\":\"1kg\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (227, 59, '白色,2kg', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"颜色\":\"白色\",\"重量\":\"2kg\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (228, 60, 'A1,B1', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"A\":\"A1\",\"B\":\"B1\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (229, 60, 'A1,B2', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"A\":\"A1\",\"B\":\"B2\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (230, 60, 'A2,B1', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"A\":\"A2\",\"B\":\"B1\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (231, 60, 'A2,B2', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"A\":\"A2\",\"B\":\"B2\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (232, 61, '2,10件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"2\",\"批发\":\"10件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (233, 61, '2,100件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"2\",\"批发\":\"100件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (234, 61, '2件,10件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"2件\",\"批发\":\"10件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (235, 61, '2件,100件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"2件\",\"批发\":\"100件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (236, 61, '3件,10件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"3件\",\"批发\":\"10件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (237, 61, '3件,100件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"3件\",\"批发\":\"100件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (238, 61, '4件阿萨德,10件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"4件阿萨德\",\"批发\":\"10件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (239, 61, '4件阿萨德,100件', 100, 0, 100.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 50.00, '', 200.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"2件\":\"4件阿萨德\",\"批发\":\"100件\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (240, 62, '默认', 0, 0, 0.00, 'crmebimage/public/content/2022/11/23/7fef70524c0f4533aecb961cbade0aa6cmlyzk3wew.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (241, 63, '默认', 0, 0, 50.00, 'crmebimage/public/content/2022/11/23/5f9b44bde92c4de88c67ee7f4b3b5382xych7msjr1.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (242, 64, '默认', 0, 0, 0.00, 'crmebimage/public/product/2022/12/29/c24690c9a04844df9ac9afe307ec047cv9hq0obs13.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (243, 65, '默认', 2, 0, 5000.00, 'crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png', 4500.00, '1111', 5100.00, 0.10, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (244, 66, '默认', 23, 0, 23.00, 'crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png', 12.00, '', 28.00, 0.00, 0.00, 2.00, 1.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (245, 67, '默认', 1110, 0, 10.00, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (246, 68, '默认', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (247, 69, '默认', 100, 0, 2000.00, 'crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png', 1000.00, '', 2689.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (248, 70, '默认', 399, 1, 100.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 10.00, '51', 110.00, 68.00, 10.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 1, 1, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (249, 71, 'SS,红', 100, 0, 190.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 120.00, '', 199.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"SS\",\"颜色\":\"红\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (250, 71, 'SS,橙', 100, 0, 190.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 120.00, '', 199.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"SS\",\"颜色\":\"橙\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (251, 71, 'SS,黄', 100, 0, 190.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 120.00, '', 199.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"尺码\":\"SS\",\"颜色\":\"黄\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (252, 70, '50', 0, 0, 0.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"次\":\"50\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (253, 70, '100', 0, 0, 0.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"次\":\"100\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (254, 72, '默认', 0, 0, 0.00, 'crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (255, 73, '默认', 0, 0, 0.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (256, 74, '默认', 22, 0, 100.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (257, 75, '默认', 999, 0, 101.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 99.00, '12345', 100.00, 100.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (258, 76, '默认', 100, 0, 79.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 79.00, '', 79.00, 11.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (259, 77, '默认', 9994, 1, 10.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 200.00, '', 300.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (260, 78, '默认', 0, 0, 0.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (261, 79, '默认', 0, 0, 0.00, 'crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (262, 80, '默认', 999, 0, 0.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (263, 81, '默认', 99, 0, 9.99, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 7.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (314, 82, '默认', 0, 0, 0.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (315, 83, '默认', 1000, 0, 1.00, 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', 1.00, '', 1.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (492, 84, '默认', 99993, 1, 0.01, 'crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png', 0.01, '123456', 0.01, 0.50, 1.00, 0.00, 2.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (518, 85, '默认', 0, 0, 0.00, 'crmebimage/public/product/2023/02/11/8c965494539e4b16b1045071f4762e3fa7qy7b1ce1.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (519, 86, '默认', 10, 0, 560.00, 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', 300.00, '1236', 880.00, 1.00, 1.00, 0.00, 0.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (520, 87, '默认', 0, 0, 0.00, 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', 0.00, '', 0.00, 0.00, 0.00, 2.00, 1.00, 0, 0, 0, '{\"规格\":\"默认\"}', 0, 0, 0, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (521, 1, '高雅黑,触控式', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 111.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"颜色\":\"高雅黑\",\"模式\":\"触控式\"}', 0, 0, 60, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (522, 1, '高雅黑,旋转式', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 111.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"颜色\":\"高雅黑\",\"模式\":\"旋转式\"}', 0, 0, 61, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (523, 1, '小微粉,触控式', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 111.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"颜色\":\"小微粉\",\"模式\":\"触控式\"}', 0, 0, 62, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (524, 1, '小微粉,旋转式', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 111.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"颜色\":\"小微粉\",\"模式\":\"旋转式\"}', 0, 0, 63, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (525, 1, '经典白,触控式', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 111.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"颜色\":\"经典白\",\"模式\":\"触控式\"}', 0, 0, 64, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (526, 1, '经典白,旋转式', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', 0.00, '', 111.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"颜色\":\"经典白\",\"模式\":\"旋转式\"}', 0, 0, 65, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (527, 2, '蓝色,领结', 3, 0, 0.01, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 10.00, 0.00, 0.00, 0.00, 0.00, 1, 3, 3, '{\"颜色\":\"蓝色\",\"形状\":\"领结\"}', 0, 0, 66, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (528, 2, '蓝色,奶茶包', 1, 0, 0.01, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 10.00, 0.00, 0.00, 0.00, 0.00, 1, 1, 1, '{\"颜色\":\"蓝色\",\"形状\":\"奶茶包\"}', 0, 0, 67, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (529, 2, '粉色,领结', 3, 0, 0.01, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 10.00, 0.00, 0.00, 0.00, 0.00, 1, 3, 3, '{\"颜色\":\"粉色\",\"形状\":\"领结\"}', 0, 0, 68, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (530, 2, '粉色,奶茶包', 3, 0, 0.01, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', 5.00, '', 10.00, 0.00, 0.00, 0.00, 0.00, 1, 3, 3, '{\"颜色\":\"粉色\",\"形状\":\"奶茶包\"}', 0, 0, 69, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (531, 3, 'XS,白色', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺码\":\"XS\",\"颜色\":\"白色\"}', 0, 0, 103, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (532, 3, 'S,白色', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺码\":\"S\",\"颜色\":\"白色\"}', 0, 0, 104, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (533, 3, 'M ,白色', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', 0.00, '', 0.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺码\":\"M \",\"颜色\":\"白色\"}', 0, 0, 105, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (534, 4, '36', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 999.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺码\":\"36\"}', 0, 0, 82, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (535, 4, '37', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 999.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺码\":\"37\"}', 0, 0, 83, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (536, 4, '38', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 999.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺码\":\"38\"}', 0, 0, 84, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (537, 4, '39', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 999.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺码\":\"39\"}', 0, 0, 85, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (538, 4, '40', 99, 0, 0.01, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 999.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺码\":\"40\"}', 0, 0, 86, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (539, 4, '41', 9, 0, 0.01, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 999.00, 0.00, 0.00, 0.00, 0.00, 1, 9, 9, '{\"尺码\":\"41\"}', 0, 0, 87, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (540, 4, '42', 9, 0, 0.01, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', 888.00, '', 999.00, 0.00, 0.00, 0.00, 0.00, 1, 9, 9, '{\"尺码\":\"42\"}', 0, 0, 88, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (541, 5, '默认', 9, 0, 0.01, 'crmebimage/public/content/2022/11/15/f2b67dfaa03d4c71b5883e73bb5d6b5b2704m3hp5r.png', 5000.00, '', 6360.00, 0.00, 0.00, 0.00, 0.00, 1, 9, 9, '{\"规格\":\"默认\"}', 0, 0, 89, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (542, 6, '白绿色,横版', 9, 0, 0.01, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 1, 9, 9, '{\"颜色\":\"白绿色\",\"样式\":\"横版\"}', 0, 0, 115, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (543, 6, '白绿色,竖版', 999, 0, 0.01, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"颜色\":\"白绿色\",\"样式\":\"竖版\"}', 0, 0, 116, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (544, 6, '白蓝色,横版', 9, 0, 0.01, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 1, 9, 9, '{\"颜色\":\"白蓝色\",\"样式\":\"横版\"}', 0, 0, 117, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (545, 6, '白蓝色,竖版', 9, 0, 0.01, 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 1, 9, 9, '{\"颜色\":\"白蓝色\",\"样式\":\"竖版\"}', 0, 0, 118, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (546, 7, '4寸,黑色', 9, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 9, 9, '{\"尺寸\":\"4寸\",\"颜色\":\"黑色\"}', 0, 0, 119, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (547, 7, '4寸,白色', 999, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 999, 999, '{\"尺寸\":\"4寸\",\"颜色\":\"白色\"}', 0, 0, 120, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (548, 7, '4寸,银色', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺寸\":\"4寸\",\"颜色\":\"银色\"}', 0, 0, 121, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (549, 7, '6寸,黑色', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺寸\":\"6寸\",\"颜色\":\"黑色\"}', 0, 0, 122, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (550, 7, '6寸,白色', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺寸\":\"6寸\",\"颜色\":\"白色\"}', 0, 0, 123, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (551, 7, '6寸,银色', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺寸\":\"6寸\",\"颜色\":\"银色\"}', 0, 0, 124, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (552, 7, '6.5寸,黑色', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺寸\":\"6.5寸\",\"颜色\":\"黑色\"}', 0, 0, 125, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (553, 7, '6.5寸,白色', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺寸\":\"6.5寸\",\"颜色\":\"白色\"}', 0, 0, 126, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (554, 7, '6.5寸,银色', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', 1000.00, '', 10000.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"尺寸\":\"6.5寸\",\"颜色\":\"银色\"}', 0, 0, 127, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (555, 8, 'Egg chair/意大利头层牛皮/单椅', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"颜色\":\"Egg chair/意大利头层牛皮/单椅\"}', 0, 0, 128, 0); INSERT INTO `eb_product_attr_value` (`id`, `product_id`, `sku`, `stock`, `sales`, `price`, `image`, `cost`, `bar_code`, `ot_price`, `weight`, `volume`, `brokerage`, `brokerage_two`, `type`, `quota`, `quota_show`, `attr_value`, `is_del`, `version`, `master_id`, `is_callback`) VALUES (556, 8, 'Egg chair/意大利头层牛皮/脚踏', 99, 0, 0.01, 'crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png', 1110.00, '', 1110.00, 0.00, 0.00, 0.00, 0.00, 1, 99, 99, '{\"颜色\":\"Egg chair/意大利头层牛皮/脚踏\"}', 0, 0, 129, 0); COMMIT; -- ---------------------------- -- Table structure for eb_product_brand -- ---------------------------- DROP TABLE IF EXISTS `eb_product_brand`; CREATE TABLE `eb_product_brand` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT NULL COMMENT '名称', `icon` varchar(255) DEFAULT NULL COMMENT 'icon', `sort` int(5) NOT NULL DEFAULT '999' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '显示状态', `is_del` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品品牌表'; -- ---------------------------- -- Records of eb_product_brand -- ---------------------------- BEGIN; INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (1, '魅族', '', 1, 1, 0, '2022-11-15 10:54:33', '2022-11-15 10:54:33'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (2, '苹果', '', 1, 1, 0, '2022-11-15 11:13:03', '2022-11-15 11:13:03'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (3, 'oppop', '', 1, 1, 0, '2022-11-15 11:13:22', '2022-11-15 11:13:22'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (4, '沙宣', '', 1, 1, 0, '2022-11-15 12:10:10', '2022-11-15 12:10:10'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (5, '111', 'crmebimage/public/store/2022/11/15/91dc1bcc4f75453d95500f1bbac76f54091se5h8nm.png', 1, 1, 0, '2022-11-16 11:14:41', '2022-11-16 11:14:41'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (6, '红女巫', 'crmebimage/public/product/2022/11/22/29514a5893f94b739bd48124cf330a0arvok9k0vnf.png', 1, 1, 0, '2022-11-16 14:41:58', '2022-11-22 11:48:34'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (7, '耐克', 'crmebimage/public/product/2022/11/28/1825f69154bc459e9ed8890356e16aa2chrz21hnb0.png', 1, 1, 0, '2022-11-28 14:59:53', '2022-11-28 14:59:53'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (8, 'ee', 'crmebimage/public/maintain/2022/12/14/26d77b4617e04431984e98cadd9c127ccz76143bje.jpg', 5, 1, 0, '2022-12-17 14:48:59', '2023-01-03 17:44:37'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (9, '1', '', 1, 1, 1, '2022-12-27 11:52:49', '2022-12-27 11:52:49'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (10, '白云山', 'crmebimage/public/content/2023/01/11/69ece325d44a4957ae6e10d70530143cwmegq12ldc.png', 1, 1, 0, '2023-01-16 18:04:10', '2023-01-16 18:04:10'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (11, '都天涯', '', 1, 1, 0, '2023-02-02 14:50:15', '2023-02-02 14:50:15'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (12, 'nike', 'crmebimage/public/maintain/2022/12/25/d74e30a6ba5c4172bb1c6eeda370ad4crktfi3w8if.jpg', 2, 1, 0, '2023-02-02 14:56:34', '2023-02-02 14:56:59'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (13, 'vivo', '', 1, 1, 0, '2023-02-16 10:43:13', '2023-02-16 10:43:13'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (14, '华为', '', 1, 1, 0, '2023-02-17 17:16:30', '2023-02-17 17:16:30'); INSERT INTO `eb_product_brand` (`id`, `name`, `icon`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (15, '力士', '', 1, 1, 0, '2023-02-17 17:41:14', '2023-02-17 17:41:14'); COMMIT; -- ---------------------------- -- Table structure for eb_product_brand_category -- ---------------------------- DROP TABLE IF EXISTS `eb_product_brand_category`; CREATE TABLE `eb_product_brand_category` ( `bid` int(11) NOT NULL COMMENT '品牌id', `cid` int(11) NOT NULL COMMENT '分类id', PRIMARY KEY (`bid`,`cid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品品牌分类关联表'; -- ---------------------------- -- Records of eb_product_brand_category -- ---------------------------- BEGIN; INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (1, 124); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 124); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 125); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 126); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 127); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 128); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 129); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 130); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 131); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 132); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 133); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 134); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 135); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 136); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 137); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 138); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (2, 139); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 124); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 125); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 126); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 127); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 128); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 129); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 130); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 131); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 132); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 133); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 134); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 135); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 136); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 137); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 138); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 139); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 141); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 142); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 143); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 144); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 145); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 146); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 147); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 148); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 149); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (3, 150); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 3); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 4); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 5); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 6); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 7); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 8); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 9); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 10); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 12); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 13); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 14); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 15); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 16); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 17); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 18); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 19); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 20); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 21); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 22); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 23); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 24); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 26); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 27); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 28); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 29); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 30); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 32); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 33); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 34); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 35); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 36); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 37); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 39); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 40); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 41); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 42); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 43); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 44); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 46); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 47); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 48); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 50); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 51); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 52); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 53); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 54); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 55); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (4, 57); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 3); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 4); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 5); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 6); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 7); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 8); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 9); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (5, 10); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 160); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 161); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 162); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 163); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 164); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 165); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 166); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 167); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 168); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 169); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 170); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 171); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 172); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 173); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 174); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 176); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 177); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 178); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 179); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 180); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 181); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 182); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 183); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 185); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 186); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 187); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 188); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 189); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 190); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (6, 191); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (7, 405); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 459); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 460); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 461); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 462); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 463); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 464); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 465); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 466); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 467); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 468); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 469); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 471); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (8, 472); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 262); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 263); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 264); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 265); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 266); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 267); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 268); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 269); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 270); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 271); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 277); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 279); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 280); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 281); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 282); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 283); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 284); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 319); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 320); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 321); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 322); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 323); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 324); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 325); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 326); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 327); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 329); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 330); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (10, 331); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 3); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 4); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 5); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 6); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 7); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 8); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 9); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 10); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 12); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 13); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 14); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 15); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 16); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 17); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 18); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 19); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 20); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 21); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 22); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 23); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 24); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 26); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 27); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 28); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 29); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 30); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 32); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 33); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 34); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 35); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 36); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 37); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 39); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 40); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 41); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 42); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 43); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 44); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 46); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 47); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 48); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 50); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 51); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 52); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 53); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 54); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 55); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 57); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 68); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 76); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 77); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 78); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (11, 79); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (12, 67); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 124); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 125); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 126); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 127); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 128); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 129); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 130); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 131); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 132); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 133); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 134); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 135); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 136); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 137); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 138); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 139); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 141); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 142); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 143); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 144); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 145); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 146); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 147); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 148); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 149); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 150); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 151); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 152); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 153); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 155); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 156); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 157); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (13, 203); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 124); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 125); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 126); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 127); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 128); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 129); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 130); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 131); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 132); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 133); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 134); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 135); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 136); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 137); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 138); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 139); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 141); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 142); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 143); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 144); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 145); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 146); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 147); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 148); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 149); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 150); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 151); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 152); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 153); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 155); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 156); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 157); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (14, 203); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 3); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 4); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 5); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 6); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 7); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 8); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 9); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 10); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 12); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 13); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 14); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 15); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 16); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 17); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 18); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 19); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 20); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 21); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 22); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 23); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 24); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 26); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 27); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 28); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 29); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 30); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 32); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 33); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 34); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 35); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 36); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 37); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 39); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 40); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 41); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 42); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 43); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 44); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 46); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 47); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 48); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 50); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 51); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 52); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 53); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 54); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 55); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 57); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 488); INSERT INTO `eb_product_brand_category` (`bid`, `cid`) VALUES (15, 489); COMMIT; -- ---------------------------- -- Table structure for eb_product_category -- ---------------------------- DROP TABLE IF EXISTS `eb_product_category`; CREATE TABLE `eb_product_category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级ID', `name` varchar(100) DEFAULT NULL COMMENT '名称', `icon` varchar(255) DEFAULT NULL COMMENT 'icon', `level` int(2) NOT NULL DEFAULT '1' COMMENT '级别:1,2,3', `sort` int(5) NOT NULL DEFAULT '999' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '显示状态', `is_del` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=502 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品分类表'; -- ---------------------------- -- Records of eb_product_category -- ---------------------------- BEGIN; INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (1, 0, '洗护', NULL, 1, 0, 1, 0, '2022-11-15 10:08:34', '2022-11-15 10:09:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (2, 1, '纸品湿巾', NULL, 2, 0, 1, 0, '2022-11-15 10:08:42', '2022-11-15 10:09:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (3, 2, '卷筒纸', 'crmebimage/public/maintain/2022/11/15/d6532cb43e7a4c2eaa0309225bfe177bvklz388ss4.jpg', 3, 0, 1, 0, '2022-11-15 10:09:30', '2022-11-15 10:31:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (4, 2, '抽纸', 'crmebimage/public/maintain/2022/11/15/c3665241c332481784e0b6fe9465a4bc4fj89cfhaz.png', 3, 0, 1, 0, '2022-11-15 10:09:40', '2022-11-15 10:31:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (5, 2, '湿巾', 'crmebimage/public/maintain/2022/11/15/73fb428b7ca245eca754678a191268dfu6e4d8nf43.png', 3, 0, 1, 0, '2022-11-15 10:09:46', '2022-11-15 10:32:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (6, 2, '洗脸巾', 'crmebimage/public/maintain/2022/11/15/545755d5100244db88b80acceea537dbbif29ngmfd.jpg', 3, 0, 1, 0, '2022-11-15 10:09:56', '2022-11-15 10:32:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (7, 2, '手帕纸', 'crmebimage/public/maintain/2022/11/15/f6292d80b2f74262b0382479998b36731zzmkv7xk2.jpg', 3, 0, 1, 0, '2022-11-15 10:10:04', '2022-11-15 10:32:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (8, 2, '湿厕纸', 'crmebimage/public/maintain/2022/11/15/61596229aa9a49c6a6729cec6fe1862csomhlu0zhf.jpg', 3, 0, 1, 0, '2022-11-15 10:10:22', '2022-11-15 10:32:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (9, 2, '厨房纸巾', 'crmebimage/public/maintain/2022/11/15/463d7826246a4191b692cce68aae2216fk4qsxya3y.jpg', 3, 0, 1, 0, '2022-11-15 10:10:31', '2022-11-15 10:32:43'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (10, 2, '吸油纸', 'crmebimage/public/maintain/2022/11/15/7a77e9023efb42a78055e76e86252d3cggaw97e3y6.jpg', 3, 0, 1, 0, '2022-11-15 10:10:38', '2022-11-15 10:32:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (11, 1, '家用清洁', NULL, 2, 0, 1, 0, '2022-11-15 10:10:56', '2022-11-15 10:10:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (12, 11, '清洁工具', 'crmebimage/public/store/2022/11/15/de8a9f43f2a74d6c8ba8a0fb6374a4a2cvyftpqwt0.jpg', 3, 0, 1, 0, '2022-11-15 10:11:07', '2022-11-15 17:21:24'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (13, 11, '清洁剂', 'crmebimage/public/store/2022/11/15/2e503583451d44df8f3a8503f59b1e426xkjewln7l.jpg', 3, 0, 1, 0, '2022-11-15 10:11:15', '2022-11-15 17:22:05'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (14, 11, '洗衣护理', 'crmebimage/public/store/2022/11/15/e4847fd7a4d34c4780991e81425ad4275snt7wht3m.jpg', 3, 0, 1, 0, '2022-11-15 10:11:27', '2022-11-15 17:22:16'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (15, 11, '拖把扫把', 'crmebimage/public/store/2022/11/15/3a7172ff91a34d8da0dd4ced91850b02929oz31gu2.jpg', 3, 0, 1, 0, '2022-11-15 10:11:36', '2022-11-15 17:22:33'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (16, 11, '香薰蜡烛', 'crmebimage/public/store/2022/11/15/20ddbb525daa499aa5af1ecfd29d831cz6c7s9j85k.jpg', 3, 0, 1, 0, '2022-11-15 10:11:44', '2022-11-15 17:22:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (17, 11, '围裙', 'crmebimage/public/store/2022/11/15/24dd409302ed4a57b7c26e4d97c29266tc67ffccpz.jpg', 3, 0, 1, 0, '2022-11-15 10:11:49', '2022-11-15 17:22:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (18, 11, '家用刷', 'crmebimage/public/store/2022/11/15/3a7172ff91a34d8da0dd4ced91850b02929oz31gu2.jpg', 3, 0, 1, 0, '2022-11-15 10:11:56', '2022-11-15 17:23:13'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (19, 11, '手套套袖', 'crmebimage/public/store/2022/11/15/aa9e5507e5b84b94a6980a996d14390696f70m4scd.jpg', 3, 0, 1, 0, '2022-11-15 10:12:06', '2022-11-15 17:23:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (20, 11, '驱蚊灭鼠', 'crmebimage/public/store/2022/11/15/9a2e9a8017be4cce999ceaaec9cc45e1nx9xfl2ywz.jpg', 3, 0, 1, 0, '2022-11-15 10:12:25', '2022-11-15 17:23:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (21, 11, '除味剂', 'crmebimage/public/store/2022/11/15/5551575a86254300884dbd0f94af73a3rhllnuz0c0.jpg', 3, 0, 1, 0, '2022-11-15 10:12:34', '2022-11-15 17:23:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (22, 11, '鞋靴护理', 'crmebimage/public/store/2022/11/15/0cc760dfaa9d41698f5ab1ebed9021c8uaplh3tfe4.jpg', 3, 0, 1, 0, '2022-11-15 10:12:43', '2022-11-15 17:25:57'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (23, 11, '防蛀灭虫', 'crmebimage/public/store/2022/11/15/35a2d4fb2e5d44719fbadf923ba2754fw49ajrk9p5.jpg', 3, 0, 1, 0, '2022-11-15 10:12:56', '2022-11-15 17:26:09'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (24, 11, '甲醛检测', 'crmebimage/public/store/2022/11/15/99e138642a9a4e34b31af12099856105g9nkbrbqqh.jpg', 3, 0, 1, 0, '2022-11-15 10:13:06', '2022-11-15 17:26:19'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (25, 1, '毛发护理', NULL, 2, 0, 1, 0, '2022-11-15 10:13:24', '2022-11-15 10:13:24'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (26, 25, '洗发', 'crmebimage/public/store/2022/11/15/136b58f9ccb6447580be3d59ec163924ltmxabcj05.jpg', 3, 0, 1, 0, '2022-11-15 10:13:34', '2022-11-15 10:34:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (27, 25, '头发造型', 'crmebimage/public/store/2022/11/15/ae19036579f6434c9d305dc3df1d1ee7i8naq8ja8k.jpg', 3, 0, 1, 0, '2022-11-15 10:13:43', '2022-11-15 17:28:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (28, 25, '染发', 'crmebimage/public/store/2022/11/15/7453fc1b0e2a4ee4bd02fcae3f9b3370zyy8wyzjqu.jpg', 3, 0, 1, 0, '2022-11-15 10:13:48', '2022-11-15 17:28:24'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (29, 25, '护发', 'crmebimage/public/store/2022/11/15/4475071f719349ffabc77931e9cd901ddb7689dqcm.jpg', 3, 0, 1, 0, '2022-11-15 10:13:54', '2022-11-15 17:28:33'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (30, 25, '脱毛膏', 'crmebimage/public/store/2022/11/15/7e7e0a782a8e48cc8b30bf8ca0dc592aejffiwzazu.jpg', 3, 0, 1, 0, '2022-11-15 10:14:00', '2022-11-15 17:28:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (31, 1, '口腔清洁', NULL, 2, 0, 1, 0, '2022-11-15 10:14:14', '2022-11-15 10:14:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (32, 31, '牙膏', 'crmebimage/public/store/2022/11/15/4e723a3f215b47ac837b47f83b6623b6ziiwtuc1zo.png', 3, 0, 1, 0, '2022-11-15 10:14:20', '2022-11-15 17:31:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (33, 31, '牙刷', 'crmebimage/public/store/2022/11/15/10f78c2f4e69418192b7505a0ebf9084phi8pjmr5p.jpg', 3, 0, 1, 0, '2022-11-15 10:14:27', '2022-11-15 17:31:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (34, 31, '牙线', 'crmebimage/public/store/2022/11/15/a99a7a9e6d8b483b9689c44f9520d0abl6w9qm4yid.jpg', 3, 0, 1, 0, '2022-11-15 10:14:33', '2022-11-15 17:31:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (35, 31, '漱口水', 'crmebimage/public/store/2022/11/15/2565d6fad99345dc9e8b81483445aee9wbqxo89lzn.jpg', 3, 0, 1, 0, '2022-11-15 10:14:46', '2022-11-15 17:32:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (36, 31, '冲牙器', 'crmebimage/public/store/2022/11/15/3b83fed35fe141798e5525a3c08415abfms57892s2.jpg', 3, 0, 1, 0, '2022-11-15 10:14:52', '2022-11-15 17:32:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (37, 31, '口腔清新剂', 'crmebimage/public/store/2022/11/15/68219c06232e40e281a11d2174f4d7b37q54gfzrio.jpg', 3, 0, 1, 0, '2022-11-15 10:15:03', '2022-11-15 17:32:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (38, 1, '洗漱用品', NULL, 2, 0, 1, 0, '2022-11-15 10:15:15', '2022-11-15 10:15:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (39, 38, '沐浴露', 'crmebimage/public/store/2022/11/15/dbfb62ee475f411a9c3c5faf3ecdaf1dpr6eq6mgxf.jpg', 3, 0, 1, 0, '2022-11-15 10:15:22', '2022-11-15 17:35:38'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (40, 38, '香皂', 'crmebimage/public/store/2022/11/15/6bceac6c98c24186a88945073ec83aeer34ymkuwyf.jpg', 3, 0, 1, 0, '2022-11-15 10:15:32', '2022-11-15 17:34:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (41, 38, '浴刷', 'crmebimage/public/store/2022/11/15/efaf70c1057740509cca9eec38d5bb88aul68h8md3.jpg', 3, 0, 1, 0, '2022-11-15 10:15:50', '2022-11-15 17:35:08'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (42, 38, '洗手液', 'crmebimage/public/store/2022/11/15/3e86657606d0477d93b99b277b4fae6632ohjh3eod.jpg', 3, 0, 1, 0, '2022-11-15 10:15:55', '2022-11-15 17:35:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (43, 38, '浴帽', 'crmebimage/public/store/2022/11/15/3b76be1266f7406287b091b6316ba92fgo6kspqtwy.jpg', 3, 0, 1, 0, '2022-11-15 10:16:04', '2022-11-15 17:35:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (44, 38, '爽身止汗', 'crmebimage/public/store/2022/11/15/44ee8406b44e4f569901b2cf174c9340fy2xxmq2xu.png', 3, 0, 1, 0, '2022-11-15 10:16:20', '2022-11-15 17:35:48'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (45, 1, '女性护理', NULL, 2, 0, 1, 0, '2022-11-15 10:16:30', '2022-11-15 10:16:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (46, 45, '卫生巾', 'crmebimage/public/store/2022/11/15/4c27c690e9814940a8f2f660623db03ehsc06mjr11.jpg', 3, 0, 1, 0, '2022-11-15 10:16:36', '2022-11-15 17:37:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (47, 45, '私处护理', 'crmebimage/public/store/2022/11/15/7a13878ecae144c2941d23af12f56f0fmgzicx9w10.jpg', 3, 0, 1, 0, '2022-11-15 10:16:45', '2022-11-15 17:37:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (48, 45, '护垫', 'crmebimage/public/store/2022/11/15/d909de85a8f7414ba68cb1590c544e72kjqqe78hht.jpg', 3, 0, 1, 0, '2022-11-15 10:16:51', '2022-11-15 17:37:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (49, 1, '男士理容', NULL, 2, 0, 1, 0, '2022-11-15 10:17:07', '2022-11-15 10:17:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (50, 49, '剃须刀', 'crmebimage/public/store/2022/11/15/84213f9334ac44de9119889eb2b30329y03cwkaof2.png', 3, 0, 1, 0, '2022-11-15 10:17:16', '2022-11-15 17:39:13'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (51, 49, '男士私处护理', 'crmebimage/public/store/2022/11/15/8b68338d1c4643859e36a88597de818a224tgtbj8m.jpg', 3, 0, 1, 0, '2022-11-15 10:17:31', '2022-11-15 17:39:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (52, 49, '男士沐浴露', 'crmebimage/public/store/2022/11/15/ac95228954114fa58acdce89f1862c727sdzowwekr.jpg', 3, 0, 1, 0, '2022-11-15 10:17:39', '2022-11-15 17:39:33'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (53, 49, '男士洗发', 'crmebimage/public/store/2022/11/15/54a9c78f1a174e6aa3c75602a2165d46z7aihz7bpm.jpg', 3, 0, 1, 0, '2022-11-15 10:17:46', '2022-11-15 17:39:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (54, 49, '男士造型', 'crmebimage/public/store/2022/11/15/a1f63bb3f3fb43848421f68430c9620cs2edbg2343.jpg', 3, 0, 1, 0, '2022-11-15 10:17:53', '2022-11-15 17:39:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (55, 49, '男士止汗', 'crmebimage/public/store/2022/11/15/38619934d0b84044b7cb891a801e59702ezdovhyf6.jpg', 3, 0, 1, 0, '2022-11-15 10:18:01', '2022-11-15 17:40:08'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (56, 1, '家政服务', NULL, 2, 0, 1, 0, '2022-11-15 10:18:10', '2022-11-15 10:18:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (57, 56, '家政服', 'crmebimage/public/store/2022/11/15/765519855146453981bef604b29cc3bdiefo0zm0v0.png', 3, 0, 1, 0, '2022-11-15 10:18:48', '2022-11-15 17:40:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (58, 0, '电子3C', NULL, 1, 0, 1, 1, '2022-11-15 10:31:58', '2022-11-15 10:31:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (59, 58, '手机', NULL, 2, 0, 1, 1, '2022-11-15 10:32:09', '2022-11-15 10:32:09'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (60, 58, '电脑', NULL, 2, 0, 1, 1, '2022-11-15 10:32:18', '2022-11-15 10:32:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (61, 59, '智能手机', NULL, 3, 0, 1, 1, '2022-11-15 10:32:27', '2022-11-15 10:32:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (62, 59, '功能手机', NULL, 3, 0, 1, 1, '2022-11-15 10:32:37', '2022-11-15 10:32:37'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (63, 60, '笔记本', NULL, 3, 0, 1, 1, '2022-11-15 10:32:56', '2022-11-15 10:32:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (64, 60, '台式机', NULL, 3, 0, 1, 1, '2022-11-15 10:33:15', '2022-11-15 10:33:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (65, 0, '水果', NULL, 1, 0, 0, 0, '2022-11-15 10:40:11', '2023-02-05 23:33:54'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (66, 65, '外套', NULL, 2, 0, 0, 0, '2022-11-15 10:40:17', '2022-11-15 10:40:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (67, 66, '羽绒服', 'crmebimage/public/store/2022/11/15/61c448790ff64fe59f1f6353e88f858bqud9xaa4fp.jpg', 3, 0, 0, 0, '2022-11-15 10:40:25', '2022-11-15 17:43:52'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (68, 66, '毛呢大衣', 'crmebimage/public/store/2022/11/15/05b8824133e94c25976957f6850b354fctb0fr9cqx.jpg', 3, 0, 0, 0, '2022-11-15 10:40:33', '2022-11-15 17:44:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (69, 66, '短外套', 'crmebimage/public/store/2022/11/15/04a5fe78e3344cbc9091eb3bea91c9f436x8v47mhk.jpg', 3, 0, 0, 0, '2022-11-15 10:40:41', '2022-11-15 17:44:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (70, 66, '棉衣棉服', 'crmebimage/public/store/2022/11/15/192cbd8f2c85452cb8897578fd7a88a5q8l2dud805.jpg', 3, 0, 0, 0, '2022-11-15 10:40:49', '2022-11-15 17:44:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (71, 66, '皮草', 'crmebimage/public/store/2022/11/15/b5f2436b04e740169dd4182432ba1f6dpgc952pf20.jpg', 3, 0, 0, 0, '2022-11-15 10:40:54', '2022-11-15 17:44:38'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (72, 66, '西装', 'crmebimage/public/store/2022/11/15/77e8006e897d412898f94d2191b25bffomrgyu5qxb.jpg', 3, 0, 0, 0, '2022-11-15 10:41:01', '2022-11-15 17:44:52'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (73, 66, '风衣', 'crmebimage/public/store/2022/11/15/c75b84a15fba4dadb1b937adedc8c18ahdp32239km.jpg', 3, 0, 0, 0, '2022-11-15 10:41:07', '2022-11-15 17:45:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (74, 66, '皮衣', 'crmebimage/public/store/2022/11/15/e1f813da05434b91a0e59ab5cb1775e0yl588ui1ea.jpg', 3, 0, 0, 0, '2022-11-15 10:41:11', '2022-11-15 17:45:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (75, 65, '上装', NULL, 2, 0, 0, 0, '2022-11-15 10:41:29', '2022-11-15 10:41:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (76, 75, '毛衣', 'crmebimage/public/store/2022/11/15/7bca38c219044ef7b23e2fb67f73e5fdpgzj9gaslx.jpg', 3, 0, 0, 0, '2022-11-15 10:41:35', '2022-11-15 17:48:11'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (77, 75, '卫衣', 'crmebimage/public/store/2022/11/15/b4b8777bd9834573861fb8ff27fac83apgfcgu5n4g.jpg', 3, 0, 0, 0, '2022-11-15 10:41:42', '2022-11-15 17:48:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (78, 75, 'T恤', 'crmebimage/public/store/2022/11/15/d7cedcb32d6b4afcbe6d000f63ce4558z20r2h6opu.jpg', 3, 0, 0, 0, '2022-11-15 10:41:56', '2022-11-15 17:48:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (79, 75, '衬衫', 'crmebimage/public/store/2022/11/15/ec858ceb68bf45abb2769fa5b46f3a31fu2eb7eoeh.jpg', 3, 0, 0, 0, '2022-11-15 10:42:03', '2022-11-15 17:48:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (80, 75, '马甲', 'crmebimage/public/store/2022/11/15/2ec1176fdee8471b8a68b3766a659393ponwl5b0wp.jpg', 3, 0, 0, 0, '2022-11-15 10:42:10', '2022-11-15 17:48:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (81, 75, '雪纺衫', 'crmebimage/public/store/2022/11/15/32b628288ff84c4ba2bd6729a89017a5z7kpxbcplt.jpg', 3, 0, 0, 0, '2022-11-15 10:42:18', '2022-11-15 17:49:01'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (82, 65, '女裙', NULL, 2, 0, 0, 0, '2022-11-15 10:42:26', '2022-11-15 10:42:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (83, 82, '连衣裙', 'crmebimage/public/store/2022/11/15/00a033ffd4ac4f2780221a292ad89d5ctkky1s2vtr.png', 3, 0, 0, 0, '2022-11-15 10:42:32', '2022-11-15 17:50:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (84, 82, '半身裙', 'crmebimage/public/store/2022/11/15/d0b3ff7d1d7641a18eb630dece971fbfd1p1554czl.jpg', 3, 0, 0, 0, '2022-11-15 10:42:40', '2022-11-15 17:50:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (85, 82, '旗袍', 'crmebimage/public/store/2022/11/15/b68a3789ec5542cd975d2d8740df0d71jzv3tkk50y.jpg', 3, 0, 0, 0, '2022-11-15 10:42:48', '2022-11-15 17:50:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (86, 65, '女裤', NULL, 2, 0, 0, 0, '2022-11-15 10:42:54', '2022-11-15 10:42:54'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (87, 86, '休闲裤', NULL, 3, 0, 0, 0, '2022-11-15 10:43:01', '2022-11-15 10:43:01'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (88, 86, '牛仔裤', NULL, 3, 0, 0, 0, '2022-11-15 10:43:08', '2022-11-15 10:43:08'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (89, 86, '打底裤', NULL, 3, 0, 0, 0, '2022-11-15 10:43:12', '2022-11-15 10:43:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (90, 86, '棉裤羽绒裤', NULL, 3, 0, 0, 0, '2022-11-15 10:43:25', '2022-11-15 10:43:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (91, 65, '套装', NULL, 2, 0, 0, 0, '2022-11-15 10:43:34', '2022-11-15 10:43:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (92, 91, '时尚套装', NULL, 3, 0, 0, 0, '2022-11-15 10:43:47', '2022-11-15 10:43:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (93, 91, '运动套装', NULL, 3, 0, 0, 0, '2022-11-15 10:43:55', '2022-11-15 10:43:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (94, 65, '特色女装', NULL, 2, 0, 0, 0, '2022-11-15 10:44:08', '2022-11-15 10:44:08'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (95, 94, '中老年女装', NULL, 3, 0, 0, 0, '2022-11-15 10:44:18', '2022-11-15 10:44:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (96, 94, '大码女装', NULL, 3, 0, 0, 0, '2022-11-15 10:44:29', '2022-11-15 10:44:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (97, 0, '坚果', NULL, 1, 0, 0, 0, '2022-11-15 10:45:19', '2023-02-05 23:34:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (98, 97, '家居', NULL, 2, 0, 0, 0, '2022-11-15 10:45:27', '2022-11-15 10:45:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (99, 98, '家居服套装', 'crmebimage/public/store/2022/11/15/6fd0f64db89b418fbeeb92b1f589784fkjwx3mvqf9.jpg', 3, 0, 0, 0, '2022-11-15 10:45:45', '2022-11-15 17:53:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (100, 98, '保暖内衣', 'crmebimage/public/store/2022/11/15/0ffad14234674df7953fdf5bdfd7fb84e86hljsa5a.jpg', 3, 0, 0, 0, '2022-11-15 10:45:53', '2022-11-15 17:54:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (101, 98, '袜子', 'crmebimage/public/store/2022/11/15/48a40af027ac46e5af616ad529e478434jiuarojh3.jpg', 3, 0, 0, 0, '2022-11-15 10:45:58', '2022-11-15 17:54:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (102, 98, '睡裙', 'crmebimage/public/store/2022/11/15/9f7569cda9764f739ff26db6d5b1e516e9oqn8ta3e.jpg', 3, 0, 0, 0, '2022-11-15 10:46:05', '2022-11-15 17:54:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (103, 98, '睡袍', 'crmebimage/public/store/2022/11/15/08b11d8ae4a741998af3062dd127acabc40toi1fno.jpg', 3, 0, 0, 0, '2022-11-15 10:46:11', '2022-11-15 17:54:37'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (104, 98, '睡裤', 'crmebimage/public/store/2022/11/15/bb9883f38d6f4e2ca62b0d36f928442cbwa7eksjtq.jpg', 3, 0, 0, 0, '2022-11-15 10:46:17', '2022-11-15 17:54:48'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (105, 98, '背心吊带', 'crmebimage/public/store/2022/11/15/9022fc42e0e14cbfb975d6f4813144d3smqej6nhrp.jpg', 3, 0, 0, 0, '2022-11-15 10:46:24', '2022-11-15 17:54:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (106, 98, '睡衣', 'crmebimage/public/store/2022/11/15/61212b72a891433d9a8dca6b39b01d42qpc61nze93.jpg', 3, 0, 0, 0, '2022-11-15 10:46:30', '2022-11-15 17:55:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (107, 97, '袜子', NULL, 2, 0, 0, 0, '2022-11-15 10:47:16', '2022-11-15 10:47:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (108, 107, '丝袜', 'crmebimage/public/store/2022/11/15/58df46d8af3b49158ab42dca89dcb588ssrqp7boyl.jpg', 3, 0, 0, 0, '2022-11-15 10:47:38', '2022-11-15 18:35:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (109, 107, '船袜', 'crmebimage/public/store/2022/11/15/874ce611af134a1f9307ab44692fc52bynx283xfio.jpg', 3, 0, 0, 0, '2022-11-15 10:47:43', '2022-11-15 18:35:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (110, 107, '连裤袜', 'crmebimage/public/store/2022/11/15/8ab3277c1fce445092056b2468120107b2v0he1zdw.jpg', 3, 0, 0, 0, '2022-11-15 10:47:49', '2022-11-15 18:35:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (111, 97, '塑身', NULL, 2, 0, 0, 0, '2022-11-15 10:47:58', '2022-11-15 10:47:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (112, 111, '连体衣', 'crmebimage/public/store/2022/11/15/0bf590a304e440fb9bebde085ff9c8e3k18k0o0s4u.jpg', 3, 0, 0, 0, '2022-11-15 10:48:04', '2022-11-15 18:40:24'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (113, 111, '分体塑身', 'crmebimage/public/store/2022/11/15/f6c9a753757a433caf67fa5f3b35eec7jmdnv6th9y.jpg', 3, 0, 0, 0, '2022-11-15 10:48:14', '2022-11-15 18:40:48'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (114, 111, '塑身腰封', 'crmebimage/public/store/2022/11/15/9bf21bd482fd428c8c823401a8b29104i3b03vpuho.jpg', 3, 0, 0, 0, '2022-11-15 10:48:24', '2022-11-15 18:40:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (115, 97, '文胸', NULL, 2, 0, 0, 0, '2022-11-15 10:48:30', '2022-11-15 10:48:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (116, 115, '文胸', 'crmebimage/public/store/2022/11/15/26c597a8a8924fd99c9e45710dc5a58f5ryxkcogji.jpg', 3, 0, 0, 0, '2022-11-15 10:48:54', '2022-11-15 18:37:24'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (117, 115, '抹胸', 'crmebimage/public/store/2022/11/15/2848e8bf4ac84d648b3084a680c2eb875535u6d1pu.jpg', 3, 0, 0, 0, '2022-11-15 10:49:11', '2022-11-15 18:37:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (118, 115, '文胸套装', 'crmebimage/public/store/2022/11/15/f76e27723761496bad502d25b4728e7bswv0iudpjq.jpg', 3, 0, 0, 0, '2022-11-15 10:49:18', '2022-11-15 18:37:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (119, 97, '内裤', NULL, 2, 0, 0, 0, '2022-11-15 10:49:28', '2022-11-15 10:49:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (120, 119, '女生内裤', 'crmebimage/public/store/2022/11/15/20ec362029da4ea7bca5344f49c608c94vrs9jwut8.jpg', 3, 0, 0, 0, '2022-11-15 10:49:36', '2022-11-15 18:38:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (121, 119, '男士内裤', 'crmebimage/public/store/2022/11/15/a4250b43fe95480d9034103e8f309d3eu1yxdd6j9r.jpg', 3, 0, 0, 0, '2022-11-15 10:49:43', '2022-11-15 18:38:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (122, 0, '手机', NULL, 1, 0, 1, 0, '2022-11-15 10:50:15', '2022-11-15 10:50:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (123, 122, '手机', NULL, 2, 0, 1, 0, '2022-11-15 10:50:35', '2022-11-15 10:50:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (124, 123, '魅族', 'crmebimage/public/store/2022/11/15/e742771b498f4b468dc1743f6b26cfe8j4wghm864x.png', 3, 0, 1, 0, '2022-11-15 10:50:46', '2022-11-15 19:15:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (125, 123, 'OPPO', 'crmebimage/public/store/2022/11/15/42d41107db2246058b62df0473e0f531k67aqg3jfu.jpg', 3, 0, 1, 0, '2022-11-15 10:50:53', '2022-11-15 19:15:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (126, 123, 'iQOO', 'crmebimage/public/store/2022/11/15/a98f0dd7352742f3bbf631c17fceff0527habucuqq.jpg', 3, 0, 1, 0, '2022-11-15 10:51:03', '2022-11-15 19:15:50'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (127, 123, 'realme', 'crmebimage/public/store/2022/11/15/0291aa0967c94396918f0865478274b7l572iu59rj.jpg', 3, 0, 1, 0, '2022-11-15 10:51:11', '2022-11-15 19:16:05'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (128, 123, 'vivo', 'crmebimage/public/store/2022/11/15/d9f24d9c8f87455f8e46718c4b02e666apy5lpcvtx.jpg', 3, 0, 1, 0, '2022-11-15 10:51:16', '2022-11-15 19:16:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (129, 123, '一加', 'crmebimage/public/store/2022/11/15/d57215c675184bfe9b46b4fd7ae1a9a60jo56cxwei.jpg', 3, 0, 1, 0, '2022-11-15 10:51:25', '2022-11-15 19:16:53'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (130, 123, '三星', 'crmebimage/public/store/2022/11/15/52d9abc2c509453cb3fc7e613ee6cf5ead3ti0t8v8.png', 3, 0, 1, 0, '2022-11-15 10:51:29', '2022-11-15 19:17:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (131, 123, '中兴', 'crmebimage/public/store/2022/11/15/88780cb519394b13a359cefa05f2bbe7nt2xpt20za.jpg', 3, 0, 1, 0, '2022-11-15 10:51:36', '2022-11-15 19:17:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (132, 123, '努比亚', 'crmebimage/public/store/2022/11/15/58ba815d4fe948819e93549837e754berus9i046v9.png', 3, 0, 1, 0, '2022-11-15 10:51:42', '2022-11-15 19:17:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (133, 123, '华为', 'crmebimage/public/store/2022/11/15/441ce7ecb0ad4aa3b952c74485b5bc6cjjtg33ibmx.jpg', 3, 0, 1, 0, '2022-11-15 10:51:47', '2022-11-15 19:17:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (134, 123, '小米', 'crmebimage/public/store/2022/11/15/4ea2c1ee16f74edbbe5d229ffa1bf885bi04kgomv2.jpg', 3, 0, 1, 0, '2022-11-15 10:51:52', '2022-11-15 19:17:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (135, 123, '摩托罗拉', 'crmebimage/public/store/2022/11/15/35823f6d9d6d42ddb7aa96c6c117ea12qr0ayuxaz5.jpg', 3, 0, 1, 0, '2022-11-15 10:52:01', '2022-11-15 19:17:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (136, 123, '红魔', 'crmebimage/public/store/2022/11/15/666419a6a7ae4347b99e0f37127ce47dyvodl9bpac.jpg', 3, 0, 1, 0, '2022-11-15 10:52:10', '2022-11-15 19:18:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (137, 123, '苹果', 'crmebimage/public/store/2022/11/15/de06506d53694c3ab80f4276eec2368b4kl0hd7rdn.jpg', 3, 0, 1, 0, '2022-11-15 10:52:16', '2022-11-15 19:18:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (138, 123, '荣耀', 'crmebimage/public/store/2022/11/15/65a3e7376ddb4aae8c018665fea7519bwg9tnuyik8.jpg', 3, 0, 1, 0, '2022-11-15 10:52:22', '2022-11-15 19:18:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (139, 123, '黑鲨', 'crmebimage/public/store/2022/11/15/d818c7c574b747c3a3ba30cad49016b5ko0p4un3kw.png', 3, 0, 1, 0, '2022-11-15 10:52:29', '2022-11-15 19:18:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (140, 122, '手机配件', NULL, 2, 0, 1, 0, '2022-11-15 10:52:46', '2022-11-15 10:52:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (141, 140, '手机壳', 'crmebimage/public/store/2022/11/15/cf93883b386b484496370e412deda5cf24jufye02g.jpg', 3, 0, 1, 0, '2022-11-15 10:52:51', '2022-11-15 19:21:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (142, 140, '手机贴膜', 'crmebimage/public/store/2022/11/15/5624a160db3d44129ac98a82e89268c0cnmrqnutgf.jpg', 3, 0, 1, 0, '2022-11-15 10:52:58', '2022-11-15 19:21:11'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (143, 140, '手机耳机', 'crmebimage/public/store/2022/11/15/48dff0e884ba4bacad49bb6fdd89987c3ukb5se2yd.jpg', 3, 0, 1, 0, '2022-11-15 10:53:04', '2022-11-15 19:21:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (144, 140, '数据线', 'crmebimage/public/store/2022/11/15/91e1f3d21aaa492380349e21c414061fa8dxvc1oup.jpg', 3, 0, 1, 0, '2022-11-15 10:53:11', '2022-11-15 19:21:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (145, 140, '充电宝', 'crmebimage/public/store/2022/11/15/aa941a10c38445ed8068a88824627259bpzyuqvf7g.jpg', 3, 0, 1, 0, '2022-11-15 10:53:18', '2022-11-15 19:23:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (146, 140, '手机支架', 'crmebimage/public/store/2022/11/15/1e8e0a9ff1794e78bba2478074a86b1esk4arvma5t.jpg', 3, 0, 1, 0, '2022-11-15 10:53:24', '2022-11-15 19:23:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (147, 140, '手机电池', 'crmebimage/public/store/2022/11/15/aa941a10c38445ed8068a88824627259bpzyuqvf7g.jpg', 3, 0, 1, 0, '2022-11-15 10:53:35', '2022-11-15 19:23:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (148, 140, '手机挂件', 'crmebimage/public/store/2022/11/15/a553e518593c454e855f8193e5d50922ctslk2g8nv.jpg', 3, 0, 1, 0, '2022-11-15 10:53:42', '2022-11-15 19:23:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (149, 140, '自拍杆', 'crmebimage/public/store/2022/11/15/be002258ccdc46b980794c1dede4572eoi4onvfeb6.jpg', 3, 0, 1, 0, '2022-11-15 10:53:50', '2022-11-15 19:23:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (150, 140, '手机镜头', 'crmebimage/public/store/2022/11/15/b47ba21af2d44e9ea9c1634400282ea2f9j638djr6.jpg', 3, 0, 1, 0, '2022-11-15 10:53:58', '2022-11-15 19:24:05'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (151, 140, '防尘塞', 'crmebimage/public/store/2022/11/15/714131373f824df69f833b90edc1ab74hh2i3bt53c.jpg', 3, 0, 1, 0, '2022-11-15 10:54:05', '2022-11-15 19:24:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (152, 140, '手机贴纸', NULL, 3, 0, 1, 0, '2022-11-15 10:54:31', '2022-11-15 10:54:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (153, 140, '车载支架', 'crmebimage/public/store/2022/11/15/6e8806af08304a1a9565cf46ea4943c15ztzehukc2.jpg', 3, 0, 1, 0, '2022-11-15 10:54:51', '2022-11-15 19:24:24'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (154, 122, '通信服务', NULL, 2, 0, 1, 0, '2022-11-15 10:55:09', '2022-11-15 10:55:09'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (155, 154, '手机流量卡', 'crmebimage/public/store/2022/11/15/bebf8362bd28444b99bdc96cb1ed90063znvksd1xz.jpg', 3, 0, 1, 0, '2022-11-15 10:55:18', '2022-11-15 19:25:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (156, 154, '流量充值', 'crmebimage/public/store/2022/11/15/02b8c5a0adff40ca9f76448b81b8f1a5fkryldsm8f.jpg', 3, 0, 1, 0, '2022-11-15 10:55:28', '2022-11-15 19:25:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (157, 154, '话费充值', 'crmebimage/public/store/2022/11/15/f11101062d9140f1bf3509722b54770bea7x1ekuwh.jpg', 3, 0, 1, 0, '2022-11-15 10:55:35', '2022-11-15 19:25:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (158, 0, '饰品', NULL, 1, 0, 1, 0, '2022-11-15 10:55:45', '2022-11-15 10:55:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (159, 158, '服配', NULL, 2, 0, 1, 0, '2022-11-15 10:56:07', '2022-11-15 10:56:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (160, 159, '棒球帽', NULL, 3, 0, 1, 0, '2022-11-15 10:56:15', '2022-11-15 10:56:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (161, 159, '毛线帽', NULL, 3, 0, 1, 0, '2022-11-15 10:56:21', '2022-11-15 10:56:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (162, 159, '瓜皮帽', NULL, 3, 0, 1, 0, '2022-11-15 10:56:29', '2022-11-15 10:56:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (163, 159, '礼帽', NULL, 3, 0, 1, 0, '2022-11-15 10:56:36', '2022-11-15 10:56:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (164, 159, '草帽', NULL, 3, 0, 0, 0, '2022-11-15 10:56:40', '2022-11-15 10:56:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (165, 159, '贝雷帽', NULL, 3, 0, 0, 0, '2022-11-15 10:56:50', '2022-11-15 10:56:50'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (166, 159, '遮阳帽', NULL, 3, 0, 0, 0, '2022-11-15 10:56:56', '2022-11-15 10:56:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (167, 159, '渔夫帽', NULL, 3, 0, 0, 0, '2022-11-15 10:57:03', '2022-11-15 10:57:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (168, 159, '雷锋帽', NULL, 3, 0, 0, 0, '2022-11-15 10:57:09', '2022-11-15 10:57:09'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (169, 159, '丝巾', NULL, 3, 0, 0, 0, '2022-11-15 10:57:16', '2022-11-15 10:57:16'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (170, 159, '围巾', NULL, 3, 0, 0, 0, '2022-11-15 10:57:23', '2022-11-15 10:57:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (171, 159, '防晒袖', NULL, 3, 0, 0, 0, '2022-11-15 10:57:30', '2022-11-15 10:57:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (172, 159, '手套', NULL, 3, 0, 0, 0, '2022-11-15 10:57:36', '2022-11-15 10:57:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (173, 159, '女士腰带', NULL, 3, 0, 0, 0, '2022-11-15 10:57:45', '2022-11-15 10:57:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (174, 159, '男士腰带', NULL, 3, 0, 0, 0, '2022-11-15 10:57:51', '2022-11-15 10:57:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (175, 158, '潮搭', NULL, 2, 0, 1, 0, '2022-11-15 10:58:03', '2022-11-15 10:58:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (176, 175, '发饰', NULL, 3, 0, 1, 0, '2022-11-15 10:58:12', '2022-11-15 10:58:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (177, 175, '耳饰', NULL, 3, 0, 1, 0, '2022-11-15 10:58:20', '2022-11-15 10:58:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (178, 175, '项链', NULL, 3, 0, 1, 0, '2022-11-15 10:58:25', '2022-11-15 10:58:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (179, 175, '手链', NULL, 3, 0, 1, 0, '2022-11-15 10:58:31', '2022-11-15 10:58:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (180, 175, '戒指', NULL, 3, 0, 1, 0, '2022-11-15 10:58:37', '2022-11-15 10:58:37'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (181, 175, '胸针', NULL, 3, 0, 1, 0, '2022-11-15 10:58:42', '2022-11-15 10:58:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (182, 175, '手串', NULL, 3, 0, 1, 0, '2022-11-15 10:58:48', '2022-11-15 10:58:48'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (183, 175, '脚链', NULL, 3, 0, 1, 0, '2022-11-15 10:59:00', '2022-11-15 10:59:00'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (184, 158, '珠宝', NULL, 2, 0, 1, 0, '2022-11-15 10:59:11', '2022-11-15 10:59:11'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (185, 184, '黄金', NULL, 3, 0, 0, 0, '2022-11-15 10:59:17', '2022-11-15 10:59:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (186, 184, '珍珠', NULL, 3, 0, 0, 0, '2022-11-15 10:59:23', '2022-11-15 10:59:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (187, 184, '和田玉', NULL, 3, 0, 0, 0, '2022-11-15 10:59:29', '2022-11-15 10:59:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (188, 184, '翡翠', NULL, 3, 0, 0, 0, '2022-11-15 10:59:35', '2022-11-15 10:59:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (189, 184, '钻石', NULL, 3, 0, 0, 0, '2022-11-15 10:59:42', '2022-11-15 10:59:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (190, 184, '宝石', NULL, 3, 0, 0, 0, '2022-11-15 10:59:47', '2022-11-15 10:59:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (191, 184, '琥珀', NULL, 3, 0, 0, 0, '2022-11-15 10:59:53', '2022-11-15 10:59:53'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (192, 158, '手表', NULL, 2, 0, 1, 0, '2022-11-15 11:00:03', '2022-11-15 11:00:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (193, 192, '国产腕表', NULL, 3, 0, 0, 0, '2022-11-15 11:00:14', '2022-11-15 11:00:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (194, 192, '瑞士腕表', NULL, 3, 0, 0, 0, '2022-11-15 11:00:22', '2022-11-15 11:00:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (195, 192, '日韩腕表', NULL, 3, 0, 0, 0, '2022-11-15 11:00:30', '2022-11-15 11:00:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (196, 192, '欧美腕表', NULL, 3, 0, 0, 0, '2022-11-15 11:00:38', '2022-11-15 11:00:38'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (197, 158, '眼镜', NULL, 2, 0, 1, 0, '2022-11-15 11:01:26', '2022-11-15 11:01:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (198, 197, '光学眼镜', NULL, 3, 0, 0, 0, '2022-11-15 11:01:39', '2022-11-15 11:01:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (199, 197, '太阳镜', NULL, 3, 0, 0, 0, '2022-11-15 11:01:46', '2022-11-15 11:01:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (200, 197, '防蓝光眼镜', NULL, 3, 0, 0, 0, '2022-11-15 11:01:56', '2022-11-15 11:01:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (201, 197, '老花镜', NULL, 3, 0, 0, 0, '2022-11-15 11:02:02', '2022-11-15 11:02:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (202, 122, '手机服务', NULL, 2, 0, 1, 0, '2022-11-15 11:02:17', '2022-11-15 11:02:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (203, 202, '手机维修', 'crmebimage/public/store/2022/11/15/91dc1bcc4f75453d95500f1bbac76f54091se5h8nm.png', 3, 0, 1, 0, '2022-11-15 11:02:24', '2022-11-15 19:26:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (204, 97, '配件', NULL, 2, 0, 0, 0, '2022-11-15 11:02:44', '2022-11-15 11:02:44'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (205, 204, '胸垫搭扣', NULL, 3, 0, 0, 0, '2022-11-15 11:03:01', '2022-11-15 11:03:01'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (206, 204, '乳贴', NULL, 3, 0, 0, 0, '2022-11-15 11:03:10', '2022-11-15 11:03:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (207, 65, '服饰服务', NULL, 2, 0, 0, 0, '2022-11-15 11:03:30', '2022-11-15 11:03:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (208, 207, '洗衣服务', NULL, 3, 0, 0, 0, '2022-11-15 11:03:38', '2022-11-15 11:03:38'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (209, 0, '母婴', NULL, 1, 0, 0, 0, '2022-11-15 11:04:47', '2022-11-15 11:04:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (210, 209, '童装', NULL, 2, 0, 0, 0, '2022-11-15 11:04:53', '2022-11-15 11:04:53'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (211, 210, '儿童外套', NULL, 3, 0, 0, 0, '2022-11-15 11:05:04', '2022-11-15 11:05:04'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (212, 210, '儿童裤子', NULL, 3, 0, 0, 0, '2022-11-15 11:05:12', '2022-11-15 11:05:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (213, 210, '儿童羽绒服', NULL, 3, 0, 0, 0, '2022-11-15 11:05:19', '2022-11-15 11:05:19'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (214, 210, '儿童配饰', NULL, 3, 0, 0, 0, '2022-11-15 11:05:30', '2022-11-15 11:05:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (215, 210, '儿童套装', NULL, 3, 0, 0, 0, '2022-11-15 11:05:39', '2022-11-15 11:05:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (216, 210, '儿童家居服', NULL, 3, 0, 0, 0, '2022-11-15 11:05:46', '2022-11-15 11:05:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (217, 210, '儿童袜子', NULL, 3, 0, 0, 0, '2022-11-15 11:05:56', '2022-11-15 11:05:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (218, 210, '毛衣针织衫', NULL, 3, 0, 0, 0, '2022-11-15 11:06:08', '2022-11-15 11:06:08'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (219, 210, '儿童内衣裤', NULL, 3, 0, 0, 0, '2022-11-15 11:06:20', '2022-11-15 11:06:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (220, 210, '儿童裙子', NULL, 3, 0, 0, 0, '2022-11-15 11:06:27', '2022-11-15 11:06:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (221, 210, '礼服汉服', NULL, 3, 0, 0, 0, '2022-11-15 11:06:36', '2022-11-15 11:06:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (222, 210, '儿童T恤', NULL, 3, 0, 0, 0, '2022-11-15 11:06:46', '2022-11-15 11:06:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (223, 210, '儿童演出服', NULL, 3, 0, 0, 0, '2022-11-15 11:06:57', '2022-11-15 11:06:57'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (224, 210, '儿童衬衫', NULL, 3, 0, 0, 0, '2022-11-15 11:07:06', '2022-11-15 11:07:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (225, 210, '儿童校服', NULL, 3, 0, 0, 0, '2022-11-15 11:07:15', '2022-11-15 11:07:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (226, 210, '儿童泳衣裤', NULL, 3, 0, 0, 0, '2022-11-15 11:07:26', '2022-11-15 11:07:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (227, 210, '儿童防晒衣', NULL, 3, 0, 0, 0, '2022-11-15 11:07:34', '2022-11-15 11:07:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (228, 209, '儿童玩具', NULL, 2, 0, 0, 0, '2022-11-15 11:07:56', '2022-11-15 11:07:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (229, 228, '拼装积木', NULL, 3, 0, 0, 0, '2022-11-15 11:08:04', '2022-11-15 11:08:04'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (230, 228, '遥控玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:08:13', '2022-11-15 11:08:13'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (231, 228, '毛绒抱枕', NULL, 3, 0, 0, 0, '2022-11-15 11:08:21', '2022-11-15 11:08:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (232, 228, '益智玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:08:45', '2022-11-15 11:08:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (233, 228, '过家家玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:08:52', '2022-11-15 11:08:52'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (234, 228, '户外玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:09:01', '2022-11-15 11:09:01'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (235, 228, '玩具枪', NULL, 3, 0, 0, 0, '2022-11-15 11:09:07', '2022-11-15 11:09:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (236, 228, '早教故事机', NULL, 3, 0, 0, 0, '2022-11-15 11:09:20', '2022-11-15 11:09:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (237, 228, '游艺机', NULL, 3, 0, 0, 0, '2022-11-15 11:09:29', '2022-11-15 11:09:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (238, 228, '涂色绘画', NULL, 3, 0, 0, 0, '2022-11-15 11:09:39', '2022-11-15 11:09:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (239, 228, '摇铃安抚玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:09:51', '2022-11-15 11:09:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (240, 228, '粘土玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:10:12', '2022-11-15 11:10:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (241, 228, '洋娃娃', NULL, 3, 0, 0, 0, '2022-11-15 11:10:22', '2022-11-15 11:10:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (242, 228, '戏水玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:10:32', '2022-11-15 11:10:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (243, 228, '乐器玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:10:39', '2022-11-15 11:10:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (244, 228, '婴儿健身器', NULL, 3, 0, 0, 0, '2022-11-15 11:10:47', '2022-11-15 11:10:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (245, 228, '宝宝纪念品', NULL, 3, 0, 0, 0, '2022-11-15 11:10:57', '2022-11-15 11:10:57'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (246, 209, '童鞋', NULL, 2, 0, 0, 0, '2022-11-15 11:11:10', '2022-11-15 11:11:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (247, 246, '儿童运动鞋', NULL, 3, 0, 0, 0, '2022-11-15 11:11:18', '2022-11-15 11:11:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (248, 246, '儿童凉拖', NULL, 3, 0, 0, 0, '2022-11-15 11:11:28', '2022-11-15 11:11:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (249, 246, '儿童靴子', NULL, 3, 0, 0, 0, '2022-11-15 11:11:41', '2022-11-15 11:11:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (250, 246, '学步鞋', NULL, 3, 0, 0, 0, '2022-11-15 11:11:48', '2022-11-15 11:11:48'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (251, 246, '儿童皮鞋', NULL, 3, 0, 0, 0, '2022-11-15 11:11:56', '2022-11-15 11:11:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (252, 246, '鞋配件', NULL, 3, 0, 0, 0, '2022-11-15 11:12:04', '2022-11-15 11:12:04'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (253, 246, '老北京布鞋', NULL, 3, 0, 0, 0, '2022-11-15 11:12:14', '2022-11-15 11:12:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (254, 246, '儿童舞蹈鞋', NULL, 3, 0, 0, 0, '2022-11-15 11:12:23', '2022-11-15 11:12:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (255, 209, '潮玩动漫', NULL, 2, 0, 0, 0, '2022-11-15 11:12:44', '2022-11-15 11:12:44'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (256, 255, '手办', NULL, 3, 0, 0, 0, '2022-11-15 11:12:56', '2022-11-15 11:12:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (257, 255, '模型', NULL, 3, 0, 0, 0, '2022-11-15 11:13:02', '2022-11-15 11:13:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (258, 255, '盲盒', NULL, 3, 0, 0, 0, '2022-11-15 11:13:10', '2022-11-15 11:13:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (259, 255, '动漫周边', NULL, 3, 0, 0, 0, '2022-11-15 11:13:18', '2022-11-15 11:13:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (260, 255, '桌游卡牌', NULL, 3, 0, 0, 0, '2022-11-15 11:13:27', '2022-11-15 11:13:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (261, 209, '洗护用品', NULL, 2, 0, 0, 0, '2022-11-15 11:13:42', '2022-11-15 11:13:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (262, 261, '儿童润肤乳', NULL, 3, 0, 0, 0, '2022-11-15 11:13:55', '2022-11-15 11:13:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (263, 261, '纸尿裤', NULL, 3, 0, 0, 0, '2022-11-15 11:14:03', '2022-11-15 11:14:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (264, 261, '宝宝个护', NULL, 3, 0, 0, 0, '2022-11-15 11:14:12', '2022-11-15 11:14:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (265, 261, '洗澡玩具', NULL, 3, 0, 0, 0, '2022-11-15 11:14:22', '2022-11-15 11:14:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (266, 261, '隔尿垫', NULL, 3, 0, 0, 0, '2022-11-15 11:14:38', '2022-11-15 11:14:38'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (267, 261, '婴儿湿巾', NULL, 3, 0, 0, 0, '2022-11-15 11:14:49', '2022-11-15 11:14:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (268, 261, '儿童牙刷', NULL, 3, 0, 0, 0, '2022-11-15 11:14:56', '2022-11-15 11:14:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (269, 261, '婴儿沐浴露', NULL, 3, 0, 0, 0, '2022-11-15 11:15:05', '2022-11-15 11:15:05'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (270, 261, '儿童洗衣液', NULL, 3, 0, 0, 0, '2022-11-15 11:15:16', '2022-11-15 11:15:16'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (271, 261, '驱蚊用品', NULL, 3, 0, 0, 0, '2022-11-15 11:15:25', '2022-11-15 11:15:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (272, 209, '婴儿装', NULL, 2, 0, 0, 0, '2022-11-15 11:15:37', '2022-11-15 11:15:37'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (273, 272, '哈衣爬服', NULL, 3, 0, 0, 0, '2022-11-15 11:15:56', '2022-11-15 11:15:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (274, 272, '宝宝罩衣', NULL, 3, 0, 0, 0, '2022-11-15 11:16:11', '2022-11-15 11:16:11'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (275, 272, '婴儿肚兜', NULL, 3, 0, 0, 0, '2022-11-15 11:16:22', '2022-11-15 11:16:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (276, 209, '哺乳喂养', NULL, 2, 0, 0, 0, '2022-11-15 11:16:41', '2022-11-15 11:16:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (277, 276, '儿童餐具', NULL, 3, 0, 0, 0, '2022-11-15 11:16:49', '2022-11-15 11:16:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (278, 276, '口水巾', NULL, 3, 0, 0, 0, '2022-11-15 11:16:57', '2022-11-15 11:16:57'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (279, 276, '奶瓶', NULL, 3, 0, 0, 0, '2022-11-15 11:17:03', '2022-11-15 11:17:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (280, 276, '儿童水杯', NULL, 3, 0, 0, 0, '2022-11-15 11:17:11', '2022-11-15 11:17:11'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (281, 276, '奶嘴牙胶', NULL, 3, 0, 0, 0, '2022-11-15 11:17:21', '2022-11-15 11:17:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (282, 276, '暖奶消毒', NULL, 3, 0, 0, 0, '2022-11-15 11:17:32', '2022-11-15 11:17:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (283, 276, '儿童餐椅', NULL, 3, 0, 0, 0, '2022-11-15 11:17:40', '2022-11-15 11:17:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (284, 276, '奶瓶配件', NULL, 3, 0, 0, 0, '2022-11-15 11:17:47', '2022-11-15 11:17:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (285, 209, '儿童家具', NULL, 2, 0, 0, 0, '2022-11-15 11:18:30', '2022-11-15 11:19:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (286, 285, '枕头被子', NULL, 3, 0, 0, 0, '2022-11-15 11:18:50', '2022-11-15 11:18:50'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (287, 285, '婴儿睡袋', NULL, 3, 0, 0, 0, '2022-11-15 11:19:12', '2022-11-15 11:19:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (288, 285, '婴儿防撞', NULL, 3, 0, 0, 0, '2022-11-15 11:19:19', '2022-11-15 11:19:19'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (289, 285, '儿童桌椅', NULL, 3, 0, 0, 0, '2022-11-15 11:19:26', '2022-11-15 11:19:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (290, 285, '爬行垫', NULL, 3, 0, 0, 0, '2022-11-15 11:19:34', '2022-11-15 11:19:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (291, 285, '游戏围栏', NULL, 3, 0, 0, 0, '2022-11-15 11:19:41', '2022-11-15 11:19:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (292, 285, '婴儿床', NULL, 3, 0, 0, 0, '2022-11-15 11:19:49', '2022-11-15 11:19:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (293, 285, '婴儿蚊帐', NULL, 3, 0, 0, 0, '2022-11-15 11:20:03', '2022-11-15 11:20:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (294, 285, '婴儿凉席', NULL, 3, 0, 0, 0, '2022-11-15 11:20:10', '2022-11-15 11:20:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (295, 209, '孕产妇穿搭', NULL, 2, 0, 0, 0, '2022-11-15 11:20:23', '2022-11-15 11:20:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (296, 295, '孕妇装', NULL, 3, 0, 0, 0, '2022-11-15 11:20:35', '2022-11-15 11:20:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (297, 295, '哺乳装', NULL, 3, 0, 0, 0, '2022-11-15 11:20:51', '2022-11-15 11:20:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (298, 295, '哺乳文胸', NULL, 3, 0, 0, 0, '2022-11-15 11:21:02', '2022-11-15 11:21:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (299, 295, '孕妇内衣裤', NULL, 3, 0, 0, 0, '2022-11-15 11:21:11', '2022-11-15 11:21:11'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (300, 295, '产妇帽', NULL, 3, 0, 0, 0, '2022-11-15 11:21:20', '2022-11-15 11:21:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (301, 209, '玩具车', NULL, 2, 0, 0, 0, '2022-11-15 11:21:28', '2022-11-15 11:21:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (302, 301, '儿童自行车', NULL, 3, 0, 0, 0, '2022-11-15 11:21:40', '2022-11-15 11:21:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (303, 301, '儿童电动车', NULL, 3, 0, 0, 0, '2022-11-15 11:21:48', '2022-11-15 11:21:48'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (304, 301, '学步车', NULL, 3, 0, 0, 0, '2022-11-15 11:21:55', '2022-11-15 11:21:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (305, 301, '滑板车', NULL, 3, 0, 0, 0, '2022-11-15 11:22:02', '2022-11-15 11:22:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (306, 301, '儿童三轮车', NULL, 3, 0, 0, 0, '2022-11-15 11:22:10', '2022-11-15 11:22:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (307, 301, '扭扭车', NULL, 3, 0, 0, 0, '2022-11-15 11:22:17', '2022-11-15 11:22:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (308, 301, '儿童护具', NULL, 3, 0, 0, 0, '2022-11-15 11:22:25', '2022-11-15 11:22:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (309, 209, '宝宝出行', NULL, 2, 0, 0, 0, '2022-11-15 11:22:49', '2022-11-15 11:22:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (310, 309, '儿童书包', NULL, 3, 0, 0, 0, '2022-11-15 11:22:58', '2022-11-15 11:22:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (311, 309, '婴儿推车', NULL, 3, 0, 0, 0, '2022-11-15 11:23:05', '2022-11-15 11:23:05'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (312, 309, '背带腰凳', NULL, 3, 0, 0, 0, '2022-11-15 11:23:19', '2022-11-15 11:23:19'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (313, 309, '妈咪包', NULL, 3, 0, 0, 0, '2022-11-15 11:23:28', '2022-11-15 11:23:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (314, 309, '安全座椅', NULL, 3, 0, 0, 0, '2022-11-15 11:23:35', '2022-11-15 11:23:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (315, 309, '宝宝防晒', NULL, 3, 0, 0, 0, '2022-11-15 11:23:41', '2022-11-15 11:23:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (316, 309, '防走丢绳', NULL, 3, 0, 0, 0, '2022-11-15 11:24:00', '2022-11-15 11:24:00'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (317, 309, '亲子酒店', NULL, 3, 0, 0, 0, '2022-11-15 11:24:08', '2022-11-15 11:24:08'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (318, 209, '孕产妇用品', NULL, 2, 0, 0, 0, '2022-11-15 11:24:23', '2022-11-15 11:24:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (319, 318, '待产用品', NULL, 3, 0, 0, 0, '2022-11-15 11:24:34', '2022-11-15 11:24:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (320, 318, '防溢乳垫', NULL, 3, 0, 0, 0, '2022-11-15 11:24:52', '2022-11-15 11:24:52'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (321, 318, '吸奶器', NULL, 3, 0, 0, 0, '2022-11-15 11:24:58', '2022-11-15 11:24:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (322, 318, '孕产妇营养', NULL, 3, 0, 0, 0, '2022-11-15 11:25:07', '2022-11-15 11:25:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (323, 318, '孕产妇护肤', NULL, 3, 0, 0, 0, '2022-11-15 11:25:19', '2022-11-15 11:25:19'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (324, 318, '妊辰纹护理', NULL, 3, 0, 0, 0, '2022-11-15 11:25:28', '2022-11-15 11:25:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (325, 318, '产后塑身', NULL, 3, 0, 0, 0, '2022-11-15 11:25:37', '2022-11-15 11:25:37'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (326, 318, '产妇洗发', NULL, 3, 0, 0, 0, '2022-11-15 11:25:43', '2022-11-15 11:25:43'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (327, 318, '孕产妇彩妆', NULL, 3, 0, 0, 0, '2022-11-15 11:25:52', '2022-11-15 11:25:52'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (328, 209, '奶粉营养', NULL, 2, 0, 0, 0, '2022-11-15 11:26:04', '2022-11-15 11:26:04'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (329, 328, '婴儿奶粉', NULL, 3, 0, 0, 0, '2022-11-15 11:26:14', '2022-11-15 11:26:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (330, 328, '婴幼儿维生素', NULL, 3, 0, 0, 0, '2022-11-15 11:26:25', '2022-11-15 11:26:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (331, 328, '婴幼儿营养', NULL, 3, 0, 0, 0, '2022-11-15 11:26:34', '2022-11-15 11:26:34'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (332, 209, '教学服务', NULL, 2, 0, 0, 0, '2022-11-15 11:26:48', '2022-11-15 11:26:48'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (333, 332, '论文检测', NULL, 3, 0, 0, 0, '2022-11-15 11:27:20', '2022-11-15 11:27:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (334, 332, '文章代写', NULL, 3, 0, 0, 0, '2022-11-15 11:27:30', '2022-11-15 11:27:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (335, 332, '考试题库', NULL, 3, 0, 0, 0, '2022-11-15 11:27:41', '2022-11-15 11:27:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (336, 332, 'office办公', NULL, 3, 0, 0, 0, '2022-11-15 11:27:50', '2022-11-15 11:27:50'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (337, 332, '人工翻译', NULL, 3, 0, 0, 0, '2022-11-15 11:27:58', '2022-11-15 11:27:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (338, 332, '方案策划', NULL, 3, 0, 0, 0, '2022-11-15 11:28:07', '2022-11-15 11:28:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (339, 332, '口译服务', NULL, 3, 0, 0, 0, '2022-11-15 11:28:17', '2022-11-15 11:28:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (340, 209, '学历考证', NULL, 2, 0, 0, 0, '2022-11-15 11:28:47', '2022-11-15 11:28:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (341, 340, '教师资格证', NULL, 3, 0, 0, 0, '2022-11-15 11:28:55', '2022-11-15 11:28:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (342, 340, '研究生辅导', NULL, 3, 0, 0, 0, '2022-11-15 11:29:03', '2022-11-15 11:29:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (343, 340, '财务会计', NULL, 3, 0, 0, 0, '2022-11-15 11:29:10', '2022-11-15 11:29:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (344, 340, '建造师培训', NULL, 3, 0, 0, 0, '2022-11-15 11:29:18', '2022-11-15 11:29:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (345, 340, '经济师培训', NULL, 3, 0, 0, 0, '2022-11-15 11:29:26', '2022-11-15 11:29:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (346, 340, '医学资格考', NULL, 3, 0, 0, 0, '2022-11-15 11:29:36', '2022-11-15 11:29:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (347, 340, '自学考试', NULL, 3, 0, 0, 0, '2022-11-15 11:29:43', '2022-11-15 11:29:43'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (348, 340, '银行证券', NULL, 3, 0, 0, 0, '2022-11-15 11:29:53', '2022-11-15 11:29:53'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (349, 340, '司法考试', NULL, 3, 0, 0, 0, '2022-11-15 11:29:59', '2022-11-15 11:29:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (350, 209, '技能提升', NULL, 2, 0, 0, 0, '2022-11-15 11:30:10', '2022-11-15 11:30:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (351, 350, '办公软件', NULL, 3, 0, 0, 0, '2022-11-15 11:30:21', '2022-11-15 11:30:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (352, 350, '设计创作', NULL, 3, 0, 0, 0, '2022-11-15 11:30:28', '2022-11-15 11:30:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (353, 350, 'IT编程', NULL, 3, 0, 0, 0, '2022-11-15 11:30:36', '2022-11-15 11:30:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (354, 350, '互联网运营', NULL, 3, 0, 0, 0, '2022-11-15 11:30:45', '2022-11-15 11:30:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (355, 350, '项目管理', NULL, 3, 0, 0, 0, '2022-11-15 11:30:54', '2022-11-15 11:30:54'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (356, 350, '心理咨询', NULL, 3, 0, 0, 0, '2022-11-15 11:31:02', '2022-11-15 11:31:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (357, 209, '生活兴趣', NULL, 2, 0, 0, 0, '2022-11-15 11:31:15', '2022-11-15 11:31:15'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (358, 357, '绘画', NULL, 3, 0, 0, 0, '2022-11-15 11:31:22', '2022-11-15 11:31:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (359, 357, '唱歌', NULL, 3, 0, 0, 0, '2022-11-15 11:31:28', '2022-11-15 11:31:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (360, 357, '健身教程', NULL, 3, 0, 0, 0, '2022-11-15 11:31:36', '2022-11-15 11:31:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (361, 357, '瑜伽课', NULL, 3, 0, 0, 0, '2022-11-15 11:31:43', '2022-11-15 11:31:43'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (362, 357, '舞蹈', NULL, 3, 0, 0, 0, '2022-11-15 11:31:49', '2022-11-15 11:31:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (363, 357, '摄影摄像', NULL, 3, 0, 0, 0, '2022-11-15 11:31:58', '2022-11-15 11:31:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (364, 357, '播音主持课', NULL, 3, 0, 0, 0, '2022-11-15 11:32:14', '2022-11-15 11:32:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (365, 209, '亲子摄影', NULL, 2, 0, 0, 0, '2022-11-15 11:32:24', '2022-11-15 11:32:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (366, 365, '证件照', NULL, 3, 0, 0, 0, '2022-11-15 11:32:42', '2022-11-15 11:32:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (367, 365, '儿童摄影', NULL, 3, 0, 0, 0, '2022-11-15 11:32:52', '2022-11-15 11:32:52'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (368, 365, '全家福摄影', NULL, 3, 0, 0, 0, '2022-11-15 11:33:01', '2022-11-15 11:33:01'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (369, 365, '孕妇亲子照', NULL, 3, 0, 0, 0, '2022-11-15 11:33:10', '2022-11-15 11:33:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (370, 365, '亲子相框', NULL, 3, 0, 0, 0, '2022-11-15 11:33:21', '2022-11-15 11:33:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (371, 365, '萌宠摄影', NULL, 3, 0, 0, 0, '2022-11-15 11:33:32', '2022-11-15 11:33:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (372, 209, '升学辅导', NULL, 2, 0, 0, 0, '2022-11-15 11:33:44', '2022-11-15 11:33:44'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (373, 372, '高中辅导', NULL, 3, 0, 0, 0, '2022-11-15 11:33:53', '2022-11-15 11:33:53'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (374, 372, '初中辅导', NULL, 3, 0, 0, 0, '2022-11-15 11:34:04', '2022-11-15 11:34:04'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (375, 372, '小学辅导', NULL, 3, 0, 0, 0, '2022-11-15 11:34:11', '2022-11-15 11:34:11'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (376, 372, '儿童兴趣', NULL, 3, 0, 0, 0, '2022-11-15 11:34:21', '2022-11-15 11:34:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (377, 372, '幼儿课程', NULL, 3, 0, 0, 0, '2022-11-15 11:34:29', '2022-11-15 11:34:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (378, 372, '青少年英语', NULL, 3, 0, 0, 0, '2022-11-15 11:34:39', '2022-11-15 11:34:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (379, 209, '家政服务', NULL, 2, 0, 0, 0, '2022-11-15 11:35:24', '2022-11-15 11:35:24'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (380, 379, '月嫂', NULL, 3, 0, 0, 0, '2022-11-15 11:35:46', '2022-11-15 11:35:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (381, 0, '电器', NULL, 1, 0, 1, 0, '2022-11-21 14:40:12', '2022-11-21 14:40:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (382, 381, '厨房小电', NULL, 2, 0, 1, 0, '2022-11-21 14:40:37', '2022-11-21 14:40:37'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (383, 382, '电饭煲', 'crmebimage/public/store/2022/11/21/2f86a66859034d37b83f089e907e71c71d20psj8mj.jpg', 3, 0, 1, 0, '2022-11-21 14:41:00', '2022-11-21 14:46:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (384, 382, '电热火锅', 'crmebimage/public/store/2022/11/21/0b0ccdc2439940bd80d7dd44a2b3a5274i65kv4f3j.jpg', 3, 0, 1, 0, '2022-11-21 14:41:19', '2022-11-21 14:46:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (385, 382, '电热水壶', 'crmebimage/public/store/2022/11/21/ebb3a273d4c444da9bb9ae19d39de18c5w4b178vbc.jpg', 3, 0, 1, 0, '2022-11-21 14:41:30', '2022-11-21 14:46:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (386, 382, '空气炸锅', 'crmebimage/public/store/2022/11/21/60e10037d62d4cfc8430023ed67359f1gvftyq0z9e.jpg', 3, 0, 1, 0, '2022-11-21 14:41:43', '2022-11-21 14:46:45'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (387, 382, '养生壶', 'crmebimage/public/store/2022/11/21/389439bd014948fab48f4f17111dd5f5rce8g764jf.jpg', 3, 0, 1, 0, '2022-11-21 14:41:54', '2022-11-21 14:47:00'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (388, 382, '破壁机', 'crmebimage/public/store/2022/11/21/397606dde55d4bb98ecf56e09e291fc67z1znkbaab.jpg', 3, 0, 1, 0, '2022-11-21 14:42:13', '2022-11-21 14:47:12'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (389, 382, '电磁炉', 'crmebimage/public/store/2022/11/21/c10d8416767f4269ab32d7353f9205a9xthbtsm2qc.jpg', 3, 0, 1, 0, '2022-11-21 14:42:29', '2022-11-21 14:47:21'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (390, 382, '碎肉机', 'crmebimage/public/store/2022/11/21/deec24be37f14234ad0997d92ead730chdmelob46r.jpg', 3, 0, 1, 0, '2022-11-21 14:42:45', '2022-11-21 14:47:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (391, 381, '居家生活', NULL, 2, 0, 1, 0, '2022-11-21 14:48:00', '2022-11-21 14:48:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (392, 391, '保健护具', 'crmebimage/public/store/2022/11/21/848ac2371b5440b0bd141af23439e3afbrnzqs6n3v.jpg', 3, 0, 1, 0, '2022-11-21 14:48:32', '2022-11-21 14:52:44'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (393, 391, '吹风机', 'crmebimage/public/store/2022/11/21/a390dfe578ec43bb924a2f3fb87b0ab98fxk4efvql.jpg', 3, 0, 1, 0, '2022-11-21 14:48:49', '2022-11-21 14:52:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (394, 391, '剃须刀', 'crmebimage/public/store/2022/11/21/0f1ef7fe4d934a8496aa5536c8199be87ymvusu1be.png', 3, 0, 1, 0, '2022-11-21 14:48:58', '2022-11-21 14:53:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (395, 391, '卷发棒', 'crmebimage/public/store/2022/11/21/8d9528aadfab44808561e95fe7b44165dol6p0t448.jpg', 3, 0, 1, 0, '2022-11-21 14:49:08', '2022-11-21 14:53:16'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (396, 391, '干衣机', 'crmebimage/public/store/2022/11/21/2a6f1afc523f406fb06a555e47447c28t6rckdfzdf.jpg', 3, 0, 1, 0, '2022-11-21 14:49:23', '2022-11-21 14:53:23'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (397, 391, '足浴器', 'crmebimage/public/store/2022/11/21/f0d6f36bf8e547739ff316cc70afcb64xuxb7ylmzj.jpg', 3, 0, 1, 0, '2022-11-21 14:49:34', '2022-11-21 14:53:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (398, 391, '毛球修剪器', 'crmebimage/public/store/2022/11/21/26f2406a3d184f0d8c35622599f88b950as11i5eu1.jpg', 3, 0, 1, 0, '2022-11-21 14:49:49', '2022-11-21 14:53:44'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (399, 391, '迷你清洗机', 'crmebimage/public/store/2022/11/21/02a85a719af54ff3bd7eb391d722cbdf3v9u5nbl6x.jpg', 3, 0, 1, 0, '2022-11-21 14:50:06', '2022-11-21 14:53:53'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (400, 391, '暖菜板', 'crmebimage/public/store/2022/11/21/8bec29fedd2444818f984125c3867056sbmc17rnb5.jpg', 3, 0, 1, 0, '2022-11-21 14:50:25', '2022-11-21 14:54:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (401, 0, '运动', NULL, 1, 0, 1, 0, '2022-11-21 14:57:25', '2022-11-21 14:57:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (402, 401, '运动潮流', NULL, 2, 0, 1, 0, '2022-11-21 14:57:46', '2022-11-21 14:58:09'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (403, 402, '运动休闲鞋', 'crmebimage/public/store/2022/11/21/d9ea371403f54692b13d55a7fdc7fb023nyvdpqa4y.jpg', 3, 0, 1, 0, '2022-11-21 14:58:22', '2022-11-21 15:02:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (404, 402, '板鞋', 'crmebimage/public/store/2022/11/21/46fa4da152c344eb99bb7129497bc956ky255icg3z.jpg', 3, 0, 1, 0, '2022-11-21 14:58:32', '2022-11-21 15:02:43'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (405, 402, '运动羽绒服', 'crmebimage/public/store/2022/11/21/8de90b8645574538a4643c044b9a83b5t7tzpunwmi.jpg', 3, 0, 1, 0, '2022-11-21 14:58:45', '2022-11-21 15:02:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (406, 402, '运动长裤', 'crmebimage/public/store/2022/11/21/22d9fb2adc5f49fcbd2c2b8b8e914c67cib1pcnp7x.jpg', 3, 0, 1, 0, '2022-11-21 14:58:58', '2022-11-21 15:03:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (407, 402, '运动外套', 'crmebimage/public/store/2022/11/21/8091bb2dbe6245e59f6b37a5308723b6lqso76i2p6.jpg', 3, 0, 1, 0, '2022-11-21 14:59:09', '2022-11-21 15:03:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (408, 402, '运动卫衣', 'crmebimage/public/store/2022/11/21/3541e60644b842bc803f7ba06539d0eeuzkzyc1uhv.jpg', 3, 0, 1, 0, '2022-11-21 14:59:20', '2022-11-21 15:03:33'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (409, 402, '运动T恤', 'crmebimage/public/store/2022/11/21/7d9d6f3d5e0a42b9a54d3ded047610b9euuhlilt8o.jpg', 3, 0, 1, 0, '2022-11-21 14:59:36', '2022-11-21 15:03:44'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (410, 402, '帆布鞋', 'crmebimage/public/store/2022/11/21/d11ba40104914de0bca8df42918eb0cckf14ocmlkq.jpg', 3, 0, 1, 0, '2022-11-21 14:59:48', '2022-11-21 15:03:55'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (411, 402, '运动短裤', 'crmebimage/public/store/2022/11/21/f39131915b1f42bb9669ff11216d7024hjbh75vy37.jpg', 3, 0, 1, 0, '2022-11-21 15:00:01', '2022-11-21 15:04:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (412, 401, '垂钓', NULL, 2, 0, 1, 0, '2022-11-21 15:04:36', '2022-11-21 15:04:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (413, 412, '鱼钩', 'crmebimage/public/store/2022/11/21/4d3fad8a430748fea6e2e3651c004832rp4m7yi90o.jpg', 3, 0, 1, 0, '2022-11-21 15:04:49', '2022-11-21 15:07:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (414, 412, '浮漂', 'crmebimage/public/store/2022/11/21/3e3e82788ace467bb47c79ce419e4a86krtu181zgg.jpg', 3, 0, 1, 0, '2022-11-21 15:05:03', '2022-11-21 15:07:43'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (415, 412, '台钓饵', 'crmebimage/public/store/2022/11/21/e4d15892052c4764b58d034224a9d8e8f2uga0qdye.jpg', 3, 0, 1, 0, '2022-11-21 15:05:25', '2022-11-21 15:07:56'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (416, 412, '鱼线', 'crmebimage/public/store/2022/11/21/4b17a27e0c584de2a0405e1ca01eb38ai21jgpr9nz.jpg', 3, 0, 1, 0, '2022-11-21 15:05:39', '2022-11-21 15:08:06'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (417, 412, '台钓竿', 'crmebimage/public/store/2022/11/21/8fa5ade60bde46909b259e13d7e32aade0i65tnkb8.jpg', 3, 0, 1, 0, '2022-11-21 15:05:53', '2022-11-21 15:08:16'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (418, 412, '鱼线轮', 'crmebimage/public/store/2022/11/21/8fa5ade60bde46909b259e13d7e32aade0i65tnkb8.jpg', 3, 0, 1, 0, '2022-11-21 15:06:07', '2022-11-21 15:08:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (419, 412, '调箱', 'crmebimage/public/store/2022/11/21/ac3195ba909f4d4a993d80c53143b949wkuhk8jrh2.jpg', 3, 0, 1, 0, '2022-11-21 15:06:22', '2022-11-21 15:08:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (420, 401, '球迷', NULL, 2, 0, 1, 0, '2022-11-21 15:09:33', '2022-11-21 15:09:33'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (421, 420, '篮球鞋', 'crmebimage/public/store/2022/11/21/4085a87f25654776904efb950ebb6afc0ad5fof6d8.jpg', 3, 0, 1, 0, '2022-11-21 15:09:52', '2022-11-21 15:15:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (422, 420, '羽毛球拍', 'crmebimage/public/store/2022/11/21/aa64e86f9649438abb58fca8ab9adc6aywuc8p77bf.jpg', 3, 0, 1, 0, '2022-11-21 15:10:07', '2022-11-21 15:15:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (423, 420, '篮球', 'crmebimage/public/store/2022/11/21/3babd23a904d43f39c1ba75a95120805jdwe7rfj4w.jpg', 3, 0, 1, 0, '2022-11-21 15:10:17', '2022-11-21 15:15:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (424, 420, '足球鞋', 'crmebimage/public/store/2022/11/21/7e3cfd74fe134df985d1aac69d5dc05dtb4k5qdtnn.jpg', 3, 0, 1, 0, '2022-11-21 15:10:26', '2022-11-21 15:15:53'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (425, 420, '篮球服', 'crmebimage/public/store/2022/11/21/e13fc82c56434afb91e80aa1779cbb9aax7xrbokwn.jpg', 3, 0, 1, 0, '2022-11-21 15:10:41', '2022-11-21 15:16:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (426, 420, '运动护膝', 'crmebimage/public/store/2022/11/21/0a7629a851d44f6e8c8810c3e1e0f86f7f2zhey5j6.jpg', 3, 0, 1, 0, '2022-11-21 15:11:09', '2022-11-21 15:16:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (427, 420, '羽毛球鞋', 'crmebimage/public/store/2022/11/21/96d04df338334536a2e0a8e2e99a8098q10n8i3jvd.jpg', 3, 0, 1, 0, '2022-11-21 15:11:32', '2022-11-21 15:16:29'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (428, 420, '乒乓球拍', 'crmebimage/public/store/2022/11/21/b81525cbb4974e84bb3765802056f7f5uk94vkdhy8.jpg', 3, 0, 1, 0, '2022-11-21 15:11:50', '2022-11-21 15:16:40'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (429, 0, '数码', NULL, 1, 0, 1, 0, '2022-11-21 15:17:14', '2022-11-21 15:17:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (430, 429, '数码配件', NULL, 2, 0, 1, 0, '2022-11-21 15:17:30', '2022-11-21 15:17:30'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (431, 430, '电脑周边', 'crmebimage/public/store/2022/11/21/9a4bd5b4163d4ebcbc4e23aaa21b616d5dww4inkmi.jpg', 3, 0, 1, 0, '2022-11-21 15:18:17', '2022-11-21 15:23:09'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (432, 430, '数码保护套', 'crmebimage/public/store/2022/11/21/ed100d397f904d4a805a97bbff8322cd55cqvbn4il.jpg', 3, 0, 1, 0, '2022-11-21 15:18:55', '2022-11-21 15:23:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (433, 430, '电池', 'crmebimage/public/store/2022/11/21/909f69798e234c18aa632322147cec68vdtjpqknn7.jpg', 3, 0, 1, 0, '2022-11-21 15:19:04', '2022-11-21 15:23:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (434, 430, 'USB周边', 'crmebimage/public/store/2022/11/21/c168a021b3a74bdfa307146f11982776ly6tl73gpe.jpg', 3, 0, 1, 0, '2022-11-21 15:19:14', '2022-11-21 15:23:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (435, 430, 'U盘', 'crmebimage/public/store/2022/11/21/e656d75f28cf4c349c9b6b269f3c7927sq9p4relk0.jpg', 3, 0, 1, 0, '2022-11-21 15:19:23', '2022-11-21 15:24:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (436, 430, '硬盘', 'crmebimage/public/store/2022/11/21/6f89390f1c2641ec8e6c220fe88e2a0acutsqw0vg3.jpg', 3, 0, 1, 0, '2022-11-21 15:19:33', '2022-11-21 15:24:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (437, 430, '手写笔', 'crmebimage/public/store/2022/11/21/75a4092c703a452c8b7c055047421852use7t62oi5.jpg', 3, 0, 1, 0, '2022-11-21 15:19:45', '2022-11-21 15:24:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (438, 430, '平板贴膜', 'crmebimage/public/store/2022/11/21/f6ed610962e7414087ae64592be1d613aoa62j9wx9.jpg', 3, 0, 1, 0, '2022-11-21 15:19:56', '2022-11-21 15:25:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (439, 430, '数码收纳', 'crmebimage/public/store/2022/11/21/cd83c3d7a5ab4212ad8713b852156510koqr5z4qjs.jpg', 3, 0, 1, 0, '2022-11-21 15:20:09', '2022-11-21 15:25:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (440, 430, '键盘膜', 'crmebimage/public/store/2022/11/21/7329d93f733e4a959aead0e3efb8be19qx8ifi9w2q.jpg', 3, 0, 1, 0, '2022-11-21 15:20:23', '2022-11-21 15:25:36'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (441, 430, '支架', 'crmebimage/public/store/2022/11/21/6c2c6b8752324b29b3d0dfccb1887b55yx6mto5ge8.jpg', 3, 0, 1, 0, '2022-11-21 15:20:34', '2022-11-21 15:25:50'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (442, 0, '车品', NULL, 1, 0, 1, 0, '2022-11-21 15:26:19', '2022-11-21 15:26:19'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (443, 442, '电动车配件', NULL, 2, 0, 1, 0, '2022-11-21 15:26:37', '2022-11-21 15:26:37'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (444, 443, '电动车风挡', 'crmebimage/public/store/2022/11/21/5ab458c9016249f58e0f783ffe54f98duv9a9jguh6.jpg', 3, 0, 1, 0, '2022-11-21 15:26:57', '2022-11-21 15:29:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (445, 443, '小点驴', 'crmebimage/public/store/2022/11/21/22cd9a6dc2204126904f85c67baeab6ebxhorkypbl.jpg', 3, 0, 1, 0, '2022-11-21 15:27:19', '2022-11-21 15:29:41'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (446, 443, '电动车遮阳', 'crmebimage/public/store/2022/11/21/8cea0c36df814d9b9f635cb2d3207ef0ypdhi1nujk.jpg', 3, 0, 1, 0, '2022-11-21 15:27:34', '2022-11-21 15:29:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (447, 443, '电动车脚垫', 'crmebimage/public/store/2022/11/21/4f9c7a74b24842ada6679b100cba570fugi9h5soav.jpg', 3, 0, 1, 0, '2022-11-21 15:27:46', '2022-11-21 15:30:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (448, 442, '汽车保养', NULL, 2, 0, 1, 0, '2022-11-21 15:36:49', '2022-11-21 15:36:49'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (449, 448, '补漆笔', 'crmebimage/public/store/2022/11/21/d7ef62be519a48978fcfedcf1edbb549l9br6iqaps.jpg', 3, 0, 1, 0, '2022-11-21 15:37:09', '2022-11-21 15:41:47'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (450, 448, '汽车玻璃水', 'crmebimage/public/store/2022/11/21/398adca37a3d4051b336b4c091c126b5cjpwuvo4i5.jpg', 3, 0, 1, 0, '2022-11-21 15:37:30', '2022-11-21 15:41:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (451, 448, '汽车清洗剂', 'crmebimage/public/store/2022/11/21/c1d0c5ce09564c4d967f54d32931876b6sk5htdre4.jpg', 3, 0, 1, 0, '2022-11-21 15:37:44', '2022-11-21 15:42:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (452, 448, '汽车车蜡', 'crmebimage/public/store/2022/11/21/674f27c317264a09ba76a0d6110b6081mifw94g20t.jpg', 3, 0, 1, 0, '2022-11-21 15:38:01', '2022-11-21 15:42:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (453, 448, '汽车防雾膜', 'crmebimage/public/store/2022/11/21/8cfad23e4fb643bf862f9da041f6c31an25qf7wrci.jpg', 3, 0, 1, 0, '2022-11-21 15:38:18', '2022-11-21 15:42:51'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (454, 448, '汽车除油剂', 'crmebimage/public/store/2022/11/21/e0059bb89609413ca9cf2eda0b65726aeo0e955oig.jpg', 3, 0, 1, 0, '2022-11-21 15:38:40', '2022-11-21 15:43:05'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (455, 448, '汽车抛光盘', 'crmebimage/public/store/2022/11/21/2113dcc529b143e1a7bdecb73ebaaad39x49lubw5j.jpg', 3, 0, 1, 0, '2022-11-21 15:39:36', '2022-11-21 15:43:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (456, 448, '洗车机', 'crmebimage/public/store/2022/11/21/eaca92c4edf546618fd22363d48cac4b2md050ng45.jpg', 3, 0, 1, 0, '2022-11-21 15:39:45', '2022-11-21 15:43:26'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (457, 0, '蔬菜', NULL, 1, 999, 0, 0, '2022-11-21 15:44:23', '2023-02-05 23:31:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (458, 457, '水果', NULL, 2, 0, 0, 0, '2022-11-21 15:44:55', '2023-02-14 10:45:57'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (459, 458, '心脑血管', 'crmebimage/public/store/2022/11/21/d42937ce0a7e426bbfc5b088bb84344cq64woebwgd.jpg', 3, 0, 0, 0, '2022-11-21 15:45:07', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (460, 458, '男科用药', 'crmebimage/public/store/2022/11/21/84b3cb3fab194c3aac8d55ebb13773d9bgvhn55w4m.jpg', 3, 0, 0, 0, '2022-11-21 15:45:22', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (461, 458, '妇科用药', 'crmebimage/public/store/2022/11/21/20a8670034114c1faf744259ffa31abey0v31y88wd.png', 3, 0, 0, 0, '2022-11-21 15:45:31', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (462, 458, '儿科用药', 'crmebimage/public/store/2022/11/21/a8af853aa05445bc89572192b86fd774ceuoa88ity.jpg', 3, 0, 0, 0, '2022-11-21 15:45:40', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (463, 458, '车厘子/樱', 'crmebimage/public/store/2022/11/21/a841931f0ef54fe6bacc8ff4f326608a77zvpi8scx.jpg', 3, 0, 0, 0, '2022-11-21 15:45:57', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (464, 458, '菠萝蜜', 'crmebimage/public/store/2022/11/21/df688fc5a1874a97922bc692e57386e9q8hxxm7fc8.jpg', 3, 0, 0, 0, '2022-11-21 15:46:07', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (465, 458, '百香果', 'crmebimage/public/store/2022/11/21/3a089a7c8e5c4e11a1a336918438c055rpy5b1ca86.jpg', 3, 0, 0, 0, '2022-11-21 15:46:16', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (466, 458, '芒果', 'crmebimage/public/store/2022/11/21/5a6f780237e240a9956c2278cbe9005fxfv65e1qow.jpg', 3, 0, 0, 0, '2022-11-21 15:46:26', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (467, 458, '柠檬', 'crmebimage/public/store/2022/11/21/b69f77d0160f4339b2c55b003aae3976e0hbwd6vp5.jpg', 3, 0, 0, 0, '2022-11-21 15:46:37', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (468, 458, '人参果', 'crmebimage/public/store/2022/11/21/ad9c772e735b4df399c57d87eaaabe80mmg3wrhwmu.jpg', 3, 0, 0, 0, '2022-11-21 15:46:49', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (469, 458, '桃', 'crmebimage/public/store/2022/11/21/b06ac5a5b97a4188b64dfbcd6f628e16eila2tcr1j.jpg', 3, 0, 0, 0, '2022-11-21 15:46:59', '2022-11-21 16:01:17'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (470, 458, '火龙果', 'crmebimage/public/store/2022/11/21/4240cd6bed7a496b81e425b291ef887ce6niwf4udu.jpg', 3, 0, 0, 0, '2022-11-21 15:47:09', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (471, 458, '哈密瓜', 'crmebimage/public/store/2022/11/21/13aa2e8efd694fcf9cb9604b5492c8371vmfgmc1aj.png', 3, 0, 0, 0, '2022-11-21 15:47:20', '2022-11-21 16:01:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (472, 458, '荔枝', 'crmebimage/public/store/2022/11/21/49ab5304ec7040e3a22c2657532425cdegol2aho7c.jpg', 3, 0, 0, 0, '2022-11-21 15:47:33', '2022-11-21 16:01:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (473, 458, '杨梅', 'crmebimage/public/store/2022/11/21/e69a9316e04d45e7a2d2c0a0c32670c2f3ae4uopgs.jpg', 3, 0, 0, 0, '2022-11-21 15:47:40', '2022-11-21 16:02:07'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (474, 0, '石材', NULL, 1, 0, 0, 0, '2022-11-22 13:48:14', '2022-11-22 13:48:14'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (475, 0, '男装', NULL, 1, 0, 0, 0, '2022-11-28 14:57:04', '2022-11-28 14:57:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (476, 458, '99', NULL, 3, 0, 1, 1, '2022-12-04 22:40:31', '2022-12-04 22:40:31'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (477, 475, '卫衣', 'crmebimage/public/product/2022/12/01/b441836d29194ae9a6529a8ef91fa2d18o7lmb9pxq.png', 2, 0, 0, 0, '2022-12-06 08:49:19', '2022-12-06 08:49:19'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (478, 0, '车子', NULL, 1, 0, 0, 0, '2022-12-18 16:49:35', '2022-12-18 16:49:35'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (479, 458, '123123', NULL, 3, 0, 1, 1, '2022-12-20 20:58:56', '2023-02-14 10:46:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (480, 0, '积分商城', 'crmebimage/public/maintain/2022/12/09/ecef6aa6f54d499bbdc22613c05e421d8n77flyelx.jpg', 1, 0, 0, 0, '2023-01-09 13:18:02', '2023-01-09 13:18:02'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (481, 0, '卡类', 'crmebimage/public/maintain/2022/12/25/d74e30a6ba5c4172bb1c6eeda370ad4crktfi3w8if.jpg', 1, 0, 1, 1, '2023-01-09 13:18:20', '2023-01-09 13:18:20'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (482, 481, '黄金卡', 'crmebimage/public/maintain/2022/12/25/d74e30a6ba5c4172bb1c6eeda370ad4crktfi3w8if.jpg', 2, 0, 1, 1, '2023-01-09 13:20:28', '2023-01-09 13:20:28'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (483, 457, '非处方药', NULL, 2, 0, 0, 0, '2023-01-16 18:29:46', '2023-01-16 18:29:46'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (484, 457, '中药饮片', NULL, 2, 0, 0, 1, '2023-01-16 18:30:59', '2023-01-16 18:30:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (485, 0, '12', NULL, 1, 0, 0, 1, '2023-01-24 08:18:32', '2023-01-24 08:18:32'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (486, 457, '11', NULL, 2, 0, 0, 1, '2023-02-02 21:49:10', '2023-02-02 21:49:10'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (487, 483, '222', NULL, 3, 0, 0, 0, '2023-02-02 21:49:22', '2023-02-02 21:49:22'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (488, 1, 'q', NULL, 2, 1, 1, 0, '2023-02-13 16:12:52', '2023-02-13 16:12:52'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (489, 1, '1233`', 'crmebimage/public/content/2023/01/11/97416bdb328645758baf320e6671090dx23fa2wr92.png', 2, 0, 1, 0, '2023-02-13 16:13:18', '2023-02-13 16:13:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (490, 457, '蔬菜-子', NULL, 2, 0, 1, 0, '2023-02-16 09:32:59', '2023-02-16 09:32:59'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (491, 490, '蔬菜-孙', NULL, 3, 0, 1, 0, '2023-02-16 09:33:25', '2023-02-16 09:33:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (492, 381, '智能家居', NULL, 2, 0, 1, 0, '2023-02-16 10:38:44', '2023-02-16 10:38:44'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (493, 457, '娃娃菜', 'crmebimage/public/maintain/2023/02/16/65c6b4722de841cfad43ad46f9114e47fmbw2wsugd.jpg', 2, 0, 1, 0, '2023-02-17 17:24:27', '2023-02-17 17:24:27'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (494, 493, '大白菜', NULL, 3, 0, 1, 0, '2023-02-17 17:25:08', '2023-02-17 17:25:08'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (495, 493, '小白菜', NULL, 3, 0, 1, 0, '2023-02-17 17:25:25', '2023-02-17 17:25:25'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (496, 492, '电冰箱', NULL, 3, 0, 1, 0, '2023-02-17 17:28:18', '2023-02-17 17:28:18'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (497, 492, '空调', NULL, 3, 0, 1, 0, '2023-02-17 17:28:39', '2023-02-17 17:28:39'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (498, 492, '电视机', NULL, 3, 0, 1, 0, '2023-02-17 17:28:58', '2023-02-17 17:28:58'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (499, 475, '秋衣', NULL, 2, 0, 1, 0, '2023-02-17 17:32:42', '2023-02-17 17:32:42'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (500, 475, '棉衣', NULL, 2, 0, 1, 0, '2023-02-17 17:33:03', '2023-02-17 17:33:03'); INSERT INTO `eb_product_category` (`id`, `pid`, `name`, `icon`, `level`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (501, 475, '夏装', NULL, 2, 0, 1, 0, '2023-02-17 17:33:30', '2023-02-17 17:33:30'); COMMIT; -- ---------------------------- -- Table structure for eb_product_coupon -- ---------------------------- DROP TABLE IF EXISTS `eb_product_coupon`; CREATE TABLE `eb_product_coupon` ( `id` int(10) NOT NULL AUTO_INCREMENT, `product_id` int(10) NOT NULL DEFAULT '0' COMMENT '商品id', `coupon_id` int(10) NOT NULL DEFAULT '0' COMMENT '优惠劵id', `add_time` int(10) NOT NULL DEFAULT '0' COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品优惠券表'; -- ---------------------------- -- Records of eb_product_coupon -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_product_day_record -- ---------------------------- DROP TABLE IF EXISTS `eb_product_day_record`; CREATE TABLE `eb_product_day_record` ( `id` int(11) NOT NULL AUTO_INCREMENT, `date` varchar(20) DEFAULT NULL COMMENT '日期,yyyy-MM-dd', `mer_id` int(11) DEFAULT NULL COMMENT '商户id', `product_id` int(11) DEFAULT NULL COMMENT '商品id', `page_view` int(11) DEFAULT NULL COMMENT '浏览量', `collect_num` int(11) DEFAULT NULL COMMENT '收藏量', `add_cart_num` int(11) DEFAULT NULL COMMENT '加购件数', `order_product_num` int(11) DEFAULT NULL COMMENT '下单商品数(销售件数)', `order_success_product_fee` decimal(8,2) DEFAULT NULL COMMENT '销售额', PRIMARY KEY (`id`) USING BTREE, KEY `date` (`date`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品日记录表'; -- ---------------------------- -- Records of eb_product_day_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_product_description -- ---------------------------- DROP TABLE IF EXISTS `eb_product_description`; CREATE TABLE `eb_product_description` ( `product_id` int(11) NOT NULL DEFAULT '0' COMMENT '商品ID', `description` text NOT NULL COMMENT '商品详情', `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '商品类型 0=商品,1=秒杀,2=砍价,3=拼团', `id` int(10) unsigned NOT NULL AUTO_INCREMENT, PRIMARY KEY (`id`) USING BTREE, KEY `product_id` (`product_id`,`type`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=177 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品描述表'; -- ---------------------------- -- Records of eb_product_description -- ---------------------------- BEGIN; INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (5, '

\"\"

\n

 

\n

 

\n

 

\n

\"\"

', 0, 5); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (6, '

\"\"\"\"

\n

\"\"

\n

\"\"\"\"\"\"\"\"\"\"\"\"\"\"

', 0, 6); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (7, '

VS沙宣洗发水去屑750g止痒清爽去油修护男女士通用轻盈洗发露大瓶洗头膏家庭礼盒装 清盈顺柔洗发露750g

', 0, 7); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (8, '

户户通,链接你我他。

', 0, 8); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (9, '

手表魔板

', 0, 9); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (10, '

\"\"

\n

\"\"

', 0, 10); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (11, '

索尼(SONY)WH-H910N 蓝牙降噪无线耳机 头戴式Hi-Res音质游戏耳机 手机耳机(hear系列 灰绿色 )

', 0, 11); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (12, '

\"\"

\n

\"\"

\n

\"\"

', 0, 13); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (13, '

 

\n

\"\"

\n

\"\"

\n

\"\"

\n

\"\"

\n

\"\"

\n

\"\"

', 0, 14); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (14, '

Apple iPhone 14 Plus (A2888) 128GB 午夜色 支持移动联通电信5G 双卡双待手机

', 0, 15); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (15, '

欧莱雅(LOREAL)精油润养洗发露500ml*2+欧莱雅精油润养润发乳500ml

', 0, 16); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (17, '

百草味香脆红枣片50g 箱规75 香酥脆枣无核免洗酥脆红枣泡水 批发

', 0, 18); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (19, '

山楂果脯20斤空心山楂蜜饯 山楂凉果山楂片零食无核果丹皮

', 0, 21); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (20, '

晋河香 山西特产黑枣1斤装紫晶枣大乌枣长枣紫金枣零食枣散装批发

', 0, 22); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (21, '

\"\"

\n

\"\"\"\"

\n

 

', 0, 23); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (22, '', 0, 24); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (24, '

珠联璧合,一身相爱

', 0, 26); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (25, '

珠联璧合,一身相爱

', 0, 27); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (26, '

相爱一生

', 0, 29); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (27, '

钻石一颗

', 0, 30); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (28, '

红宝石喜气连连

', 0, 31); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (18, '

', 0, 32); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (23, '

\"\"\"\"

\n

 

', 0, 39); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (34, '

 

\n

\"\"  \"\"  \"\"                            \"\"

', 0, 40); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (35, '

\"\"   

\n

\"\"

\n

\"\"

\n

\"\"

\n

 

\n

\"\"

', 0, 41); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (16, '

滋源无患子洗发水 控油轻盈洗发露洗头膏400ml(无硅油 男女士 补水控油 清爽蓬松)

', 0, 56); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (31, '

原创日系复古前进鸭舌帽英伦画家报童八角帽男

', 0, 60); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (47, '

时尚个性贝雷帽男士秋季新款民族风

', 0, 61); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (30, '

1111111

', 0, 68); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (4, '

', 0, 69); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (33, '', 0, 73); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (53, '', 0, 76); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (54, '

冬季新品

', 0, 78); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (55, '

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

', 0, 81); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (56, '

测试商品手机测试商品手机测试商品手机

', 0, 82); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (57, '', 0, 83); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (58, '

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

\n

', 0, 87); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (59, '', 0, 88); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (60, '', 0, 89); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (61, '', 0, 90); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (62, '

ddd

', 0, 91); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (63, '

11

', 0, 92); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (65, '', 0, 94); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (66, '', 0, 95); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (67, '', 0, 96); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (68, '', 0, 97); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (64, '', 0, 98); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (32, '

傻乎乎的季节

', 0, 99); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (1, '

', 0, 100); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (2, '

\n

', 0, 101); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (69, '

的发射点发射点

', 0, 102); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (71, '', 0, 105); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (70, '

是个覅后i阿娇佛艾佛艾佛艾吉欧艾吉欧i发发发

', 0, 106); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (72, '

11111111111111

', 0, 107); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (73, '

qqq

', 0, 108); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (74, '

2222

', 0, 109); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (75, '

123

', 0, 110); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (76, '

huah iahi ahfh uihf a 

', 0, 112); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (78, '

11

', 0, 114); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (79, '

3333

', 0, 115); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (80, '

1122

', 0, 116); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (81, '', 0, 117); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (82, '

2121

', 0, 122); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (83, '', 0, 123); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (3, '

f

', 0, 153); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (84, '

非常好

', 0, 163); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (85, '

1111

', 0, 164); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (86, '

颜色:黑蓝白.

\n

号码:M,L,2L

\n

尺寸:170,175,180,185

\n

 

', 0, 166); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (87, '', 0, 167); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (77, '

详情

\n

详情

\n

详情

\n

详情

\n

详情

', 0, 168); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (1, '

\"\"

\n

\"\"

\n

\"\"

', 1, 169); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (2, '

 

\n

\"\"

\n

\"\"

\n

\"\"

\n

\"\"

\n

\"\"

\n

\"\"

', 1, 170); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (3, '

', 1, 171); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (4, '

\"\"

\n

\"\"\"\"

\n

 

', 1, 172); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (5, '', 1, 173); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (6, '

\"\"\"\"

\n

 

', 1, 174); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (7, '

 

\n

\"\"  \"\"  \"\"                            \"\"

', 1, 175); INSERT INTO `eb_product_description` (`product_id`, `description`, `type`, `id`) VALUES (8, '

\"\"   

\n

\"\"

\n

\"\"

\n

\"\"

\n

 

\n

\"\"

', 1, 176); COMMIT; -- ---------------------------- -- Table structure for eb_product_guarantee -- ---------------------------- DROP TABLE IF EXISTS `eb_product_guarantee`; CREATE TABLE `eb_product_guarantee` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(100) DEFAULT '' COMMENT '保障条款名称', `icon` varchar(255) DEFAULT '' COMMENT '图标', `content` varchar(255) DEFAULT '' COMMENT '条款内容', `sort` int(5) NOT NULL DEFAULT '999' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '显示状态', `is_del` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品保障服务表'; -- ---------------------------- -- Records of eb_product_guarantee -- ---------------------------- BEGIN; INSERT INTO `eb_product_guarantee` (`id`, `name`, `icon`, `content`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (1, '七天无理由', '[\"crmebimage/public/maintain/2022/08/04/b908b2b0034343458ba3649c7d1084383u7xxcc3ji.png\"]', '七天无理由七天无理由七天无理由七天无理由', 0, 1, 0, '2022-08-16 15:11:54', '2023-02-18 17:26:43'); INSERT INTO `eb_product_guarantee` (`id`, `name`, `icon`, `content`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (2, '运费险', '[\"crmebimage/public/maintain/2022/08/04/b908b2b0034343458ba3649c7d1084383u7xxcc3ji.png\"]', '运费险运费险运费险运费险运费险', 0, 1, 0, '2022-08-16 15:12:29', '2023-02-18 17:26:45'); INSERT INTO `eb_product_guarantee` (`id`, `name`, `icon`, `content`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (3, '极速退款', 'crmebimage/public/maintain/2022/08/04/b908b2b0034343458ba3649c7d1084383u7xxcc3ji.png', '用户发起退款,2小时内处理,立即到账。', 0, 1, 0, '2022-08-16 15:22:27', '2022-09-14 16:06:12'); INSERT INTO `eb_product_guarantee` (`id`, `name`, `icon`, `content`, `sort`, `is_show`, `is_del`, `create_time`, `update_time`) VALUES (4, '24小时内发货', 'crmebimage/public/maintain/2022/08/04/5707216876e14bc7ae8ed279d98b330cavyj6drd78.png', '承诺下单后24小时内发货', 0, 1, 0, '2022-08-16 15:22:45', '2022-09-14 16:06:26'); COMMIT; -- ---------------------------- -- Table structure for eb_product_guarantee_group -- ---------------------------- DROP TABLE IF EXISTS `eb_product_guarantee_group`; CREATE TABLE `eb_product_guarantee_group` ( `id` int(11) NOT NULL AUTO_INCREMENT, `mer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID', `name` varchar(100) NOT NULL DEFAULT '' COMMENT '组合名称', `is_del` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品保障服务组合表'; -- ---------------------------- -- Records of eb_product_guarantee_group -- ---------------------------- BEGIN; INSERT INTO `eb_product_guarantee_group` (`id`, `mer_id`, `name`, `is_del`, `create_time`, `update_time`) VALUES (23, 2, '保障包', 0, '2023-02-16 10:39:23', '2023-02-16 10:39:23'); COMMIT; -- ---------------------------- -- Table structure for eb_product_relation -- ---------------------------- DROP TABLE IF EXISTS `eb_product_relation`; CREATE TABLE `eb_product_relation` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id', `uid` int(10) unsigned NOT NULL COMMENT '用户ID', `product_id` int(10) unsigned NOT NULL COMMENT '商品ID', `type` varchar(32) NOT NULL COMMENT '关联类型(收藏(collect)、点赞(like))', `category` int(2) NOT NULL DEFAULT '0' COMMENT '商品类型 0=商品,1=秒杀,2=砍价,3=拼团', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商品点赞和收藏表'; -- ---------------------------- -- Records of eb_product_relation -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_product_reply -- ---------------------------- DROP TABLE IF EXISTS `eb_product_reply`; CREATE TABLE `eb_product_reply` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '评论ID', `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户ID', `mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '店铺id', `order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '订单编号', `order_detail_id` int(11) NOT NULL DEFAULT '0' COMMENT '订单详情id', `product_id` int(11) NOT NULL COMMENT '商品id', `attr_value_id` int(11) NOT NULL COMMENT '商品规格属性id', `sku` varchar(128) NOT NULL DEFAULT '' COMMENT '商品规格属性值,多个,号隔开', `star` tinyint(1) NOT NULL DEFAULT '5' COMMENT '星级', `comment` varchar(512) NOT NULL DEFAULT '' COMMENT '评论内容', `pics` text COMMENT '评论图片', `merchant_reply_content` varchar(300) DEFAULT '' COMMENT '管理员回复内容', `merchant_reply_time` timestamp NULL DEFAULT NULL COMMENT '管理员回复时间', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0未删除1已删除', `is_reply` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0未回复1已回复', `nickname` varchar(64) NOT NULL DEFAULT '' COMMENT '用户名称', `avatar` varchar(255) NOT NULL DEFAULT '' COMMENT '用户头像', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE, KEY `order_detail_id` (`order_detail_id`) USING BTREE, KEY `product_id` (`product_id`) USING BTREE, KEY `star` (`star`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='评论表'; -- ---------------------------- -- Records of eb_product_reply -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_product_rule -- ---------------------------- DROP TABLE IF EXISTS `eb_product_rule`; CREATE TABLE `eb_product_rule` ( `id` int(10) NOT NULL AUTO_INCREMENT, `mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '店铺id,平台为0', `rule_name` varchar(32) NOT NULL COMMENT '规格名称', `rule_value` text NOT NULL COMMENT '规格值', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品规则值(规格)表'; -- ---------------------------- -- Records of eb_product_rule -- ---------------------------- BEGIN; INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (1, 1, '颜色', '[{\"value\":\"粉色\",\"detail\":[\"M3\"]},{\"value\":\"白色\",\"detail\":[\"M3\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (2, 1, '大小', '[{\"value\":\"s\",\"detail\":[\"码\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (3, 6, '颜色', '[{\"value\":\"颜色\",\"detail\":[\"米色\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (4, 8, '大小', '[{\"value\":\"尺码\",\"detail\":[\"S(90-120斤)\",\"M(120-140斤)\"],\"inputVisible\":false}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (5, 2, 'A', '[{\"value\":\"a\",\"detail\":[\"1\",\"2\",\"3\"],\"inputVisible\":false},{\"value\":\"b\",\"detail\":[\"1\",\"2\",\"3\"],\"inputVisible\":false}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (6, 2, 'B', '[{\"value\":\"a\",\"detail\":[\"1\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (7, 9, '925银', '[{\"value\":\"925银\",\"detail\":[\"1\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (8, 2, '尺寸', '[{\"value\":\"35\",\"detail\":[\"80\"],\"inputVisible\":false}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (9, 10, '尺寸', '[{\"value\":\"xl\",\"detail\":[\"125斤-140斤\"]},{\"value\":\"颜色\",\"detail\":[\"黑色\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (10, 2, '878', '[{\"value\":\"787\",\"detail\":[\"87\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (11, 2, '颜色+尺寸', '[{\"value\":\"颜色\",\"detail\":[\"红\"]},{\"value\":\"尺寸\",\"detail\":[\"大\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (12, 2, '长度', '[{\"value\":\"50\",\"detail\":[\"100\",\"2000\"],\"inputVisible\":true}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (13, 2, '重量', '[{\"value\":\"10kg\",\"detail\":[\"100\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (14, 2, '好', '[{\"value\":\"33\",\"detail\":[\"33\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (15, 2, '111', '[{\"value\":\"11\",\"detail\":[\"222\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (16, 2, '箱', '[{\"value\":\"40\",\"detail\":[\"40-45\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (17, 2, '件', '[{\"value\":\"1件\",\"detail\":[\"1\",\"3件\"],\"inputVisible\":false},{\"value\":\"2件\",\"detail\":[\"1\",\"4件\"],\"inputVisible\":false}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (18, 2, '尺码', '[{\"value\":\"x\",\"detail\":[\"x\",\"xl\"],\"inputVisible\":false},{\"value\":\"xl\",\"detail\":[\"xl\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (19, 2, '颜色', '[{\"value\":\"黄\",\"detail\":[\"2\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (20, 2, '卡类', '[{\"value\":\"次\",\"detail\":[\"50\",\"100\"],\"inputVisible\":false}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (21, 2, '连衣裙', '[{\"value\":\"尺码\",\"detail\":[\"SS\"]},{\"value\":\"颜色\",\"detail\":[\"红\",\"橙\",\"黄\"],\"inputVisible\":false}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (22, 2, '11', '[{\"value\":\"111\",\"detail\":[\"11\",\"2323\"],\"inputVisible\":false},{\"value\":\"12321\",\"detail\":[\"123\"]}]'); INSERT INTO `eb_product_rule` (`id`, `mer_id`, `rule_name`, `rule_value`) VALUES (23, 2, '衣服', '[{\"value\":\"S\",\"detail\":[\"10\"]}]'); COMMIT; -- ---------------------------- -- Table structure for eb_recharge_order -- ---------------------------- DROP TABLE IF EXISTS `eb_recharge_order`; CREATE TABLE `eb_recharge_order` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `uid` int(10) DEFAULT NULL COMMENT '充值用户UID', `order_no` varchar(32) NOT NULL DEFAULT '' COMMENT '订单号', `price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '充值金额', `give_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '购买赠送金额', `pay_type` varchar(32) NOT NULL DEFAULT '' COMMENT '支付方式:weixin,alipay', `pay_channel` varchar(20) NOT NULL DEFAULT '' COMMENT '支付渠道:public-公众号,mini-小程序,h5-网页支付,wechatIos-微信Ios,wechatAndroid-微信Android,alipay-支付包,alipayApp-支付宝App', `paid` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否支付', `pay_time` timestamp NULL DEFAULT NULL COMMENT '充值支付时间', `out_trade_no` varchar(32) NOT NULL DEFAULT '' COMMENT '支付服务方订单号', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '充值时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `pay_type` (`pay_type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='充值订单表'; -- ---------------------------- -- Records of eb_recharge_order -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_refund_order -- ---------------------------- DROP TABLE IF EXISTS `eb_refund_order`; CREATE TABLE `eb_refund_order` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '订单ID', `refund_order_no` varchar(32) NOT NULL COMMENT '退款订单号', `order_no` varchar(32) NOT NULL COMMENT '商户订单号', `mer_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商户ID', `uid` int(11) unsigned NOT NULL COMMENT '用户id', `real_name` varchar(32) NOT NULL COMMENT '收货人姓名', `user_phone` varchar(18) NOT NULL COMMENT '收货人电话', `user_address` varchar(100) NOT NULL COMMENT '收货人详细地址', `total_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '退款单商品总数', `refund_reason_wap` varchar(255) NOT NULL DEFAULT '' COMMENT '退款原因', `refund_reason_wap_img` varchar(5000) NOT NULL DEFAULT '' COMMENT '退款图片', `refund_reason_wap_explain` varchar(255) NOT NULL DEFAULT '' COMMENT '退款用户说明', `is_all` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否整单退款', `refund_status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '退款状态:0:待审核 1:审核未通过 2:退款中 3:已退款', `refund_reason` varchar(255) NOT NULL DEFAULT '' COMMENT '拒绝退款说明', `refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额', `merchant_refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商家退款金额', `platform_refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '平台退款金额', `refund_first_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退一级返佣金额', `refund_second_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退二级返佣金额', `is_replace` tinyint(1) unsigned DEFAULT '0' COMMENT '是否平台代扣佣金', `refund_use_integral` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '退还使用积分', `refund_gain_integral` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '扣除赠送积分', `refund_integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款积分抵扣金额', `refund_time` timestamp NULL DEFAULT NULL COMMENT '退款时间', `refund_pay_type` varchar(512) NOT NULL DEFAULT '' COMMENT '退款渠道类型:weixin,alipay,yue', `mer_remark` varchar(512) NOT NULL DEFAULT '' COMMENT '商户备注', `platform_remark` varchar(512) NOT NULL DEFAULT '' COMMENT '平台备注', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `order_no` (`order_no`) USING BTREE, KEY `refund_order_no` (`refund_order_no`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE, KEY `uid` (`uid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='退款单表'; -- ---------------------------- -- Records of eb_refund_order -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_refund_order_info -- ---------------------------- DROP TABLE IF EXISTS `eb_refund_order_info`; CREATE TABLE `eb_refund_order_info` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键', `refund_order_no` varchar(32) NOT NULL COMMENT '退款订单号', `mer_id` int(11) unsigned NOT NULL COMMENT '商户ID', `order_detail_id` int(11) unsigned NOT NULL COMMENT '订单商品表ID', `product_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID', `product_name` varchar(128) NOT NULL COMMENT '商品名称', `image` varchar(256) NOT NULL COMMENT '商品图片', `attr_value_id` int(11) NOT NULL COMMENT '商品规格值 ID', `sku` varchar(128) NOT NULL COMMENT '商品sku', `price` decimal(8,2) unsigned NOT NULL COMMENT '商品单价', `pay_price` decimal(8,2) unsigned NOT NULL COMMENT '支付金额', `pay_num` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '购买数量', `product_type` int(2) NOT NULL DEFAULT '0' COMMENT '商品类型:0-普通,1-秒杀,2-砍价,3-拼团,4-视频号', `apply_refund_num` int(11) unsigned NOT NULL COMMENT '申请退款数量', `refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款金额', `merchant_refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '商家退款金额', `platform_refund_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '平台退款金额', `refund_use_integral` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '退还使用积分', `refund_integral_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退款积分抵扣金额', `refund_gain_integral` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '扣除赠送积分', `refund_first_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退一级返佣金额', `refund_second_brokerage_fee` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '退二级返佣金额', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `refund_order_no` (`refund_order_no`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='退款订单详情表'; -- ---------------------------- -- Records of eb_refund_order_info -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_refund_order_status -- ---------------------------- DROP TABLE IF EXISTS `eb_refund_order_status`; CREATE TABLE `eb_refund_order_status` ( `order_no` varchar(32) NOT NULL COMMENT '订单号', `change_type` varchar(32) NOT NULL COMMENT '操作类型:apply-申请退款,refused-拒绝退款,refund-退款', `change_message` varchar(256) NOT NULL COMMENT '操作备注', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '操作时间', KEY `order_no` (`order_no`) USING BTREE, KEY `change_type` (`change_type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='退款订单操作记录表'; -- ---------------------------- -- Records of eb_refund_order_status -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_schedule_job -- ---------------------------- DROP TABLE IF EXISTS `eb_schedule_job`; CREATE TABLE `eb_schedule_job` ( `job_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '任务id', `bean_name` varchar(200) DEFAULT NULL COMMENT 'spring bean名称', `method_name` varchar(100) DEFAULT NULL COMMENT '方法名', `params` varchar(2000) DEFAULT NULL COMMENT '参数', `cron_expression` varchar(100) DEFAULT NULL COMMENT 'cron表达式', `status` tinyint(4) DEFAULT NULL COMMENT '任务状态 0:正常 1:暂停', `remark` varchar(255) DEFAULT NULL COMMENT '备注', `is_delete` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`job_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='定时任务'; -- ---------------------------- -- Records of eb_schedule_job -- ---------------------------- BEGIN; INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (1, 'BargainStopChangeTask', 'bargainStopChange', '', '0 0 0 */1 * ?', 1, '砍价活动结束状态变化', 1, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (2, 'BrokerageFrozenTask', 'brokerageFrozen', '', '0 0 */1 * * ?', 0, '佣金冻结期解冻处理', 0, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (3, 'CouponOverdueTask', 'couponOverdue', '', '0 */1 * * * ?', 0, '优惠券过期处理', 0, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (4, 'IntegralFrozenTask', 'integralFrozen', '', '0 */1 * * * ?', 0, '积分冻结期解冻处理', 0, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (5, 'OrderAutoCancelTask', 'autoCancel', '', '0 */1 * * * ?', 0, '系统自动取消未支付订单', 0, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (6, 'OrderAutoCompleteTask', 'autoComplete', '', '0 0 */1 * * ?', 0, '订单自动完成处理', 0, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (7, 'OrderCancelTask', 'userCancel', '', '0 */1 * * * ?', 0, '用户取消订单处理', 0, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (8, 'OrderCompleteTask', 'orderComplete', '', '0 */1 * * * ?', 1, '用户订单完成处理', 0, '2021-12-01 10:55:06'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (9, 'OrderPaySuccessTask', 'orderPayAfter', '', '0 */1 * * * ?', 0, '订单支付成功后置处理', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (10, 'OrderReceiptTask', 'orderReceipt', '', '0 */1 * * * ?', 0, '用户确认收货后置处理', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (11, 'OrderRefundTask', 'orderRefund', '', '0 */1 * * * ?', 0, '订单退款处理', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (12, 'AutoUpdateCatTask', 'autoUpdateCat', '', '0 0 1 * * ?', 1, '自动更新自定义交易组件类目', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (13, 'PinkStatusChangeTask', 'pinkStatusChage', '', '0 */1 * * * ?', 1, '拼团状态变化处理', 1, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (14, 'ProductStockTask', 'stockOperation', '', '0 */1 * * * ?', 1, '操作商品库存', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (15, 'StatisticsTask', 'statistics', '', '0 0 0 */1 * ?', 0, '统计定时任务', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (16, 'AsyncWeChatProgramTempMessage', 'init', '', '0 */1 * * * ?', 1, '小程序消费队列消费', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (17, 'AsyncWeChatPublicTempMessage', 'init', '', '0 */1 * * * ?', 1, '公众号消费队列消费', 0, '2021-12-01 10:55:07'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (18, 'AutoDeleteLogTask', 'autoDeleteLog', '', '0 0 0 */1 * ?', 0, '自动删除不需要的历史日志', 0, '2022-01-05 15:03:18'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (19, 'OrderAutoReceiptTask', 'autoTakeDelivery', '', '0 0 0 */1 * ?', 0, '系统自动确认收货Task', 0, '2022-06-25 10:48:48'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (20, 'StatementTask', 'dailyStatement', '', '0 0 0 */1 * ?', 0, '每日帐单定时任务', 0, '2022-04-07 20:46:10'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (21, 'StatementTask', 'monthStatement', '', '0 0 2 1 * ?', 0, '每月帐单定时任务', 0, '2022-04-08 11:06:29'); INSERT INTO `eb_schedule_job` (`job_id`, `bean_name`, `method_name`, `params`, `cron_expression`, `status`, `remark`, `is_delete`, `create_time`) VALUES (22, 'SeckillProductCallbackTask', 'productCallbackTask', '', '0 0 */4 * * ?', 0, '秒杀商品回归库存定时任务', 0, '2022-11-23 16:05:35'); COMMIT; -- ---------------------------- -- Table structure for eb_schedule_job_log -- ---------------------------- DROP TABLE IF EXISTS `eb_schedule_job_log`; CREATE TABLE `eb_schedule_job_log` ( `log_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '任务日志id', `job_id` int(11) NOT NULL COMMENT '任务id', `bean_name` varchar(200) DEFAULT NULL COMMENT 'spring bean名称', `method_name` varchar(100) DEFAULT NULL COMMENT '方法名', `params` varchar(2000) DEFAULT NULL COMMENT '参数', `status` tinyint(4) NOT NULL COMMENT '任务状态 1:成功 0:失败', `error` varchar(2000) DEFAULT NULL COMMENT '失败信息', `times` int(11) NOT NULL COMMENT '耗时(单位:毫秒)', `create_time` datetime DEFAULT NULL COMMENT '创建时间', PRIMARY KEY (`log_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=212 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='定时任务日志'; -- ---------------------------- -- Records of eb_schedule_job_log -- ---------------------------- BEGIN; INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (1, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 496, '2023-03-02 17:43:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (2, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 35, '2023-03-02 17:43:12'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (3, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 34, '2023-03-02 17:43:13'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (4, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 36, '2023-03-02 17:43:14'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (5, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 56, '2023-03-02 17:43:16'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (6, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 33, '2023-03-02 17:43:18'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (7, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 91, '2023-03-02 17:44:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (8, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 92, '2023-03-02 17:44:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (9, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 37, '2023-03-02 17:44:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (10, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 37, '2023-03-02 17:44:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (11, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 36, '2023-03-02 17:44:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (12, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 35, '2023-03-02 17:44:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (13, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 42, '2023-03-02 17:44:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (14, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 79, '2023-03-02 17:45:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (15, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 119, '2023-03-02 17:45:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (16, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 44, '2023-03-02 17:45:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (17, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 41, '2023-03-02 17:45:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (18, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 43, '2023-03-02 17:45:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (19, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 44, '2023-03-02 17:45:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (20, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 65, '2023-03-02 17:45:11'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (21, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 80, '2023-03-02 17:46:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (22, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 82, '2023-03-02 17:46:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (23, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 45, '2023-03-02 17:46:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (24, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 38, '2023-03-02 17:46:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (25, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 40, '2023-03-02 17:46:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (26, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 40, '2023-03-02 17:46:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (27, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 17:46:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (28, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 80, '2023-03-02 17:47:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (29, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 79, '2023-03-02 17:47:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (30, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 42, '2023-03-02 17:47:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (31, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 40, '2023-03-02 17:47:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (32, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 39, '2023-03-02 17:47:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (33, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 42, '2023-03-02 17:47:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (34, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 113, '2023-03-02 17:47:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (35, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 78, '2023-03-02 17:48:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (36, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 74, '2023-03-02 17:48:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (37, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 45, '2023-03-02 17:48:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (38, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 38, '2023-03-02 17:48:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (39, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 42, '2023-03-02 17:48:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (40, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 40, '2023-03-02 17:48:12'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (41, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 39, '2023-03-02 17:48:13'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (42, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 80, '2023-03-02 17:49:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (43, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 88, '2023-03-02 17:49:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (44, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 45, '2023-03-02 17:49:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (45, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 39, '2023-03-02 17:49:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (46, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 39, '2023-03-02 17:49:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (47, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 39, '2023-03-02 17:49:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (48, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 17:49:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (49, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 83, '2023-03-02 17:50:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (50, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 352, '2023-03-02 17:50:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (51, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 38, '2023-03-02 17:50:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (52, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 41, '2023-03-02 17:50:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (53, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 42, '2023-03-02 17:50:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (54, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 40, '2023-03-02 17:50:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (55, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 17:50:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (56, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 93, '2023-03-02 17:51:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (57, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 85, '2023-03-02 17:51:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (58, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 38, '2023-03-02 17:51:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (59, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 39, '2023-03-02 17:51:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (60, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 44, '2023-03-02 17:51:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (61, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 41, '2023-03-02 17:51:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (62, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 43, '2023-03-02 17:51:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (63, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 86, '2023-03-02 17:52:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (64, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 77, '2023-03-02 17:52:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (65, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 46, '2023-03-02 17:52:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (66, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 39, '2023-03-02 17:52:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (67, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 40, '2023-03-02 17:52:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (68, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 42, '2023-03-02 17:52:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (69, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 41, '2023-03-02 17:52:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (70, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 77, '2023-03-02 17:53:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (71, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 77, '2023-03-02 17:53:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (72, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 41, '2023-03-02 17:53:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (73, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 40, '2023-03-02 17:53:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (74, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 41, '2023-03-02 17:53:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (75, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 200, '2023-03-02 17:53:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (76, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 17:53:11'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (77, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 84, '2023-03-02 17:54:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (78, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 80, '2023-03-02 17:54:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (79, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 39, '2023-03-02 17:54:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (80, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 39, '2023-03-02 17:54:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (81, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 40, '2023-03-02 17:54:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (82, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 39, '2023-03-02 17:54:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (83, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 41, '2023-03-02 17:54:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (84, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 76, '2023-03-02 17:55:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (85, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 75, '2023-03-02 17:55:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (86, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 38, '2023-03-02 17:55:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (87, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 39, '2023-03-02 17:55:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (88, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 40, '2023-03-02 17:55:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (89, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 40, '2023-03-02 17:55:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (90, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 39, '2023-03-02 17:55:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (91, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 79, '2023-03-02 17:56:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (92, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 86, '2023-03-02 17:56:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (93, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 42, '2023-03-02 17:56:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (94, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 54, '2023-03-02 17:56:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (95, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 39, '2023-03-02 17:56:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (96, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 40, '2023-03-02 17:56:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (97, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 42, '2023-03-02 17:56:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (98, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 216, '2023-03-02 17:57:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (99, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 79, '2023-03-02 17:57:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (100, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 41, '2023-03-02 17:57:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (101, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 42, '2023-03-02 17:57:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (102, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 40, '2023-03-02 17:57:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (103, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 41, '2023-03-02 17:57:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (104, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 39, '2023-03-02 17:57:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (105, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 85, '2023-03-02 17:58:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (106, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 87, '2023-03-02 17:58:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (107, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 41, '2023-03-02 17:58:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (108, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 45, '2023-03-02 17:58:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (109, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 42, '2023-03-02 17:58:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (110, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 46, '2023-03-02 17:58:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (111, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 73, '2023-03-02 17:58:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (112, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 81, '2023-03-02 17:59:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (113, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 78, '2023-03-02 17:59:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (114, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 41, '2023-03-02 17:59:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (115, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 39, '2023-03-02 17:59:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (116, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 39, '2023-03-02 17:59:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (117, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 43, '2023-03-02 17:59:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (118, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 39, '2023-03-02 17:59:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (119, 2, 'BrokerageFrozenTask', 'brokerageFrozen', '', 1, NULL, 124, '2023-03-02 18:00:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (120, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 79, '2023-03-02 18:00:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (121, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 81, '2023-03-02 18:00:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (122, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 41, '2023-03-02 18:00:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (123, 6, 'OrderAutoCompleteTask', 'autoComplete', '', 1, NULL, 554, '2023-03-02 18:00:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (124, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 38, '2023-03-02 18:00:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (125, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 36, '2023-03-02 18:00:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (126, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 34, '2023-03-02 18:00:12'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (127, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 36, '2023-03-02 18:00:13'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (128, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 125, '2023-03-02 18:01:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (129, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 88, '2023-03-02 18:01:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (130, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 47, '2023-03-02 18:01:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (131, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 268, '2023-03-02 18:01:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (132, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 42, '2023-03-02 18:01:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (133, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 34, '2023-03-02 18:01:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (134, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 18:01:11'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (135, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 75, '2023-03-02 18:02:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (136, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 79, '2023-03-02 18:02:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (137, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 111, '2023-03-02 18:02:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (138, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 35, '2023-03-02 18:02:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (139, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 42, '2023-03-02 18:02:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (140, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 41, '2023-03-02 18:02:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (141, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 34, '2023-03-02 18:02:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (142, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 79, '2023-03-02 18:03:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (143, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 76, '2023-03-02 18:03:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (144, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 37, '2023-03-02 18:03:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (145, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 36, '2023-03-02 18:03:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (146, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 35, '2023-03-02 18:03:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (147, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 35, '2023-03-02 18:03:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (148, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 18:03:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (149, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 80, '2023-03-02 18:04:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (150, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 81, '2023-03-02 18:04:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (151, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 36, '2023-03-02 18:04:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (152, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 39, '2023-03-02 18:04:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (153, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 35, '2023-03-02 18:04:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (154, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 37, '2023-03-02 18:04:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (155, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 35, '2023-03-02 18:04:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (156, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 79, '2023-03-02 18:05:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (157, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 77, '2023-03-02 18:05:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (158, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 36, '2023-03-02 18:05:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (159, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 40, '2023-03-02 18:05:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (160, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 36, '2023-03-02 18:05:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (161, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 38, '2023-03-02 18:05:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (162, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 18:05:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (163, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 89, '2023-03-02 18:06:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (164, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 82, '2023-03-02 18:06:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (165, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 39, '2023-03-02 18:06:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (166, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 36, '2023-03-02 18:06:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (167, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 67, '2023-03-02 18:06:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (168, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 35, '2023-03-02 18:06:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (169, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 38, '2023-03-02 18:06:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (170, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 112, '2023-03-02 18:07:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (171, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 82, '2023-03-02 18:07:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (172, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 37, '2023-03-02 18:07:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (173, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 35, '2023-03-02 18:07:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (174, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 42, '2023-03-02 18:07:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (175, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 36, '2023-03-02 18:07:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (176, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 34, '2023-03-02 18:07:11'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (177, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 92, '2023-03-02 18:08:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (178, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 117, '2023-03-02 18:08:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (179, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 37, '2023-03-02 18:08:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (180, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 37, '2023-03-02 18:08:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (181, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 37, '2023-03-02 18:08:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (182, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 36, '2023-03-02 18:08:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (183, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 35, '2023-03-02 18:08:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (184, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 93, '2023-03-02 18:09:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (185, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 92, '2023-03-02 18:09:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (186, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 38, '2023-03-02 18:09:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (187, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 45, '2023-03-02 18:09:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (188, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 38, '2023-03-02 18:09:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (189, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 39, '2023-03-02 18:09:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (190, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 36, '2023-03-02 18:09:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (191, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 91, '2023-03-02 18:10:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (192, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 80, '2023-03-02 18:10:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (193, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 42, '2023-03-02 18:10:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (194, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 41, '2023-03-02 18:10:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (195, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 42, '2023-03-02 18:10:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (196, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 36, '2023-03-02 18:10:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (197, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 35, '2023-03-02 18:10:10'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (198, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 77, '2023-03-02 18:11:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (199, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 84, '2023-03-02 18:11:02'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (200, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 34, '2023-03-02 18:11:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (201, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 35, '2023-03-02 18:11:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (202, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 36, '2023-03-02 18:11:06'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (203, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 36, '2023-03-02 18:11:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (204, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 35, '2023-03-02 18:11:09'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (205, 3, 'CouponOverdueTask', 'couponOverdue', '', 1, NULL, 97, '2023-03-02 18:12:01'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (206, 4, 'IntegralFrozenTask', 'integralFrozen', '', 1, NULL, 84, '2023-03-02 18:12:03'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (207, 5, 'OrderAutoCancelTask', 'autoCancel', '', 1, NULL, 35, '2023-03-02 18:12:04'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (208, 7, 'OrderCancelTask', 'userCancel', '', 1, NULL, 35, '2023-03-02 18:12:05'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (209, 9, 'OrderPaySuccessTask', 'orderPayAfter', '', 1, NULL, 36, '2023-03-02 18:12:07'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (210, 10, 'OrderReceiptTask', 'orderReceipt', '', 1, NULL, 36, '2023-03-02 18:12:08'); INSERT INTO `eb_schedule_job_log` (`log_id`, `job_id`, `bean_name`, `method_name`, `params`, `status`, `error`, `times`, `create_time`) VALUES (211, 11, 'OrderRefundTask', 'orderRefund', '', 1, NULL, 36, '2023-03-02 18:12:09'); COMMIT; -- ---------------------------- -- Table structure for eb_seckill_activity -- ---------------------------- DROP TABLE IF EXISTS `eb_seckill_activity`; CREATE TABLE `eb_seckill_activity` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '秒杀活动ID', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '秒杀活动名称', `start_date` varchar(20) NOT NULL DEFAULT '' COMMENT '秒杀开始日期', `end_date` varchar(20) NOT NULL DEFAULT '' COMMENT '秒杀结束日期', `one_quota` int(11) NOT NULL DEFAULT '0' COMMENT '活动期间单笔下单购买数量,0不限制', `all_quota` int(11) NOT NULL DEFAULT '0' COMMENT '全部活动期间,用户购买总数限制,0不限制', `mer_stars` int(2) NOT NULL DEFAULT '0' COMMENT '商家星级', `pro_category` varchar(255) NOT NULL DEFAULT '0' COMMENT '商品类型,英文逗号拼接', `is_open` int(2) NOT NULL DEFAULT '0' COMMENT '开启状态: 0=关闭 1=开启', `status` int(2) NOT NULL DEFAULT '0' COMMENT '状态:0未开始,1进行中,2已结束', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '删除标记 0=未删除 1=删除', `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='秒杀活动表'; -- ---------------------------- -- Records of eb_seckill_activity -- ---------------------------- BEGIN; INSERT INTO `eb_seckill_activity` (`id`, `name`, `start_date`, `end_date`, `one_quota`, `all_quota`, `mer_stars`, `pro_category`, `is_open`, `status`, `is_del`, `create_time`, `update_time`) VALUES (1, '欢迎使用CRMEBJava 秒杀功能', '2023-03-02', '2028-04-30', 1, 1, 1, '0', 1, 1, 0, '2023-03-02 18:04:13', '2023-03-02 18:04:13'); COMMIT; -- ---------------------------- -- Table structure for eb_seckill_activity_time -- ---------------------------- DROP TABLE IF EXISTS `eb_seckill_activity_time`; CREATE TABLE `eb_seckill_activity_time` ( `id` int(11) NOT NULL AUTO_INCREMENT, `seckill_id` int(11) NOT NULL COMMENT '秒杀id', `time_interval_id` int(11) NOT NULL COMMENT '秒杀时段id', `start_date` int(11) NOT NULL COMMENT '秒杀开始日期', `end_date` int(11) NOT NULL COMMENT '秒杀结束日期', `start_time` int(11) NOT NULL COMMENT '秒杀开启时间', `end_time` int(11) NOT NULL COMMENT '秒杀结束时间', PRIMARY KEY (`id`) USING BTREE, KEY `sekill_id` (`seckill_id`) USING BTREE, KEY `time_interval_id` (`time_interval_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='秒杀活动时间表'; -- ---------------------------- -- Records of eb_seckill_activity_time -- ---------------------------- BEGIN; INSERT INTO `eb_seckill_activity_time` (`id`, `seckill_id`, `time_interval_id`, `start_date`, `end_date`, `start_time`, `end_time`) VALUES (1, 1, 1, 20230302, 20280430, 0, 800); INSERT INTO `eb_seckill_activity_time` (`id`, `seckill_id`, `time_interval_id`, `start_date`, `end_date`, `start_time`, `end_time`) VALUES (2, 1, 2, 20230302, 20280430, 800, 1000); INSERT INTO `eb_seckill_activity_time` (`id`, `seckill_id`, `time_interval_id`, `start_date`, `end_date`, `start_time`, `end_time`) VALUES (3, 1, 3, 20230302, 20280430, 1000, 1200); INSERT INTO `eb_seckill_activity_time` (`id`, `seckill_id`, `time_interval_id`, `start_date`, `end_date`, `start_time`, `end_time`) VALUES (4, 1, 4, 20230302, 20280430, 1200, 1400); INSERT INTO `eb_seckill_activity_time` (`id`, `seckill_id`, `time_interval_id`, `start_date`, `end_date`, `start_time`, `end_time`) VALUES (5, 1, 5, 20230302, 20280430, 1400, 2359); COMMIT; -- ---------------------------- -- Table structure for eb_seckill_product -- ---------------------------- DROP TABLE IF EXISTS `eb_seckill_product`; CREATE TABLE `eb_seckill_product` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '秒杀商品ID', `activity_id` int(11) NOT NULL COMMENT '活动id', `product_id` int(11) NOT NULL COMMENT '商品id', `mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户Id', `image` varchar(256) NOT NULL DEFAULT '' COMMENT '商品图片', `flat_pattern` varchar(1000) NOT NULL DEFAULT '' COMMENT '展示图', `slider_image` varchar(2000) NOT NULL DEFAULT '' COMMENT '轮播图', `name` varchar(128) NOT NULL DEFAULT '' COMMENT '商品名称', `intro` varchar(256) NOT NULL DEFAULT '' COMMENT '商品简介', `keyword` varchar(256) NOT NULL DEFAULT '' COMMENT '关键字,英文逗号拼接', `brand_id` int(11) NOT NULL DEFAULT '0' COMMENT '品牌id', `category_id` int(11) NOT NULL DEFAULT '0' COMMENT '平台分类id', `guarantee_ids` varchar(64) NOT NULL DEFAULT '0' COMMENT '保障服务ids(英文逗号拼接)', `price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '商品价格', `seckill_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '商品价格', `unit_name` varchar(32) NOT NULL DEFAULT '' COMMENT '单位名', `sales` int(11) NOT NULL DEFAULT '0' COMMENT '销量', `temp_id` int(11) NOT NULL DEFAULT '1' COMMENT '运费模板ID', `sort` smallint(11) NOT NULL DEFAULT '0' COMMENT '排序', `spec_type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '规格 0单 1多', `is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态(0:未上架,1:上架)', `audit_status` int(2) unsigned NOT NULL DEFAULT '1' COMMENT '审核状态:1-待审核,2-审核成功,3-审核拒绝', `reason` varchar(100) NOT NULL DEFAULT '' COMMENT '拒绝原因', `quota_show` int(10) NOT NULL DEFAULT '0' COMMENT '限购总数显示.不变', `quota` int(10) NOT NULL DEFAULT '0' COMMENT '限购总数,随减', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE, KEY `sort` (`sort`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='秒杀商品表'; -- ---------------------------- -- Records of eb_seckill_product -- ---------------------------- BEGIN; INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (1, 1, 12, 1, 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', '', '[\"crmebimage/public/content/2022/11/15/1c318d5e0e6c4869a670449f2a9b7d21qost1si3rj.png\",\"crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png\",\"crmebimage/public/content/2022/11/15/01834a7e91554e30acbf83472213d7747t3y6kdjql.png\",\"crmebimage/public/content/2022/11/15/ff5c891173434bac83a634678f3c6bc7mchtt33wuz.png\",\"crmebimage/public/content/2022/11/15/45021dd86dc84d15ba9e9b4a0db45f5foowo4fjx85.png\",\"crmebimage/public/content/2022/11/15/950435fa2c564791b449d83080e32ab04x4hqngq7y.png\",\"crmebimage/public/content/2022/11/15/a20825afb8d5496281dfcfcd01cafae8k8iuzv39mt.png\",\"crmebimage/public/content/2022/11/15/e029715a03a6471fa058d8f4780726bf9e6s1zoay2.png\",\"crmebimage/public/content/2022/11/15/1cd16b75ca514ead9a6ebf9699e6a7e09bl6wsmhqq.png\"]', 'WeighMax空气炸锅家用小型大容量多功能可视无油电炸锅机智能煎炸烤焙大功率定时定温炸鸡薯条机 触控式小溦粉', 'WeighMax空气炸锅家用小型大容量多功能可视无油电炸锅机智能煎炸烤焙大功率定时定温炸鸡薯条机 触控式小溦粉', 'WeighMax空气炸锅家用小型大容量多功能可视无油电炸锅机智能煎炸烤焙大功率定时定温炸鸡薯条机 触控式小溦粉', 0, 124, '', 111.00, 0.01, '件', 0, 1, 0, 1, 1, 2, '', 5994, 5994, 0, '2022-11-15 14:22:02', '2023-02-17 16:00:00'); INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (2, 1, 13, 1, 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', '', '[\"crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png\",\"crmebimage/public/content/2022/11/15/d3016d2998ea48608450bab2bc7147c9fd5h5jxk6s.png\",\"crmebimage/public/content/2022/11/15/bbc0c0f7254247fb86c54fb92ecc8ffdf79nr321db.png\",\"crmebimage/public/content/2022/11/15/d4de88be47d64b2792d0645211286a797kqkglxchw.png\",\"crmebimage/public/content/2022/11/15/b9c69269f6514978a762aa8818a80858nqlssbzd9b.png\",\"crmebimage/public/content/2022/11/15/1e36c8669bf140298618901b36f0f8ee72z3rh7ul7.png\",\"crmebimage/public/content/2022/11/15/e14b27b960c84072b0b83652146d6702u89hhviw3n.png\",\"crmebimage/public/content/2022/11/15/fe9f49ff3f4845899708fc6cb18374f2r39x60e1ee.png\",\"crmebimage/public/content/2022/11/15/992893705cc6497f85391300a7c7717f7dsc8btxwr.png\"]', '旅行鸭硅胶可爱钥匙链鸭子公仔汽车钥匙挂件卡通小饰品挂饰钥匙扣 奶茶包旅行鸭蓝色', '旅行鸭硅胶可爱钥匙链鸭子公仔汽车钥匙挂件卡通小饰品挂饰钥匙扣 奶茶包旅行鸭蓝色', '旅行鸭硅胶可爱钥匙链鸭子公仔汽车钥匙挂件卡通小饰品挂饰钥匙扣 奶茶包旅行鸭蓝色', 0, 141, '', 10.00, 0.01, '件', 0, 1, 0, 1, 1, 2, '', 10, 10, 0, '2022-11-15 14:34:26', '2023-02-17 16:00:00'); INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (3, 1, 18, 1, 'crmebimage/public/content/2022/11/15/acc22d038bb0435586bebccd5dc53544dpmnjozget.png', '', '[\"crmebimage/public/content/2022/11/15/d23a3a099b644b9ab1b387c4c0c10577i9i2avzjqh.png\",\"crmebimage/public/content/2022/11/15/84800e6f4e9d44f7b925d01814cb29c3ayzpq8cp3k.png\",\"crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png\",\"crmebimage/public/content/2022/11/15/2228808d88994d91b4c072820e864c56lyhtiwq1z4.png\",\"crmebimage/public/content/2022/11/15/acc22d038bb0435586bebccd5dc53544dpmnjozget.png\"]', 'FUSSED 21AW designer plaid shirt 异型拼接纯白衬衫女衬衣上衣', 'FUSSED 21AW designer plaid shirt 异型拼接纯白衬衫女衬衣上衣', '拼接纯白衬衫女衬衣上衣', 0, 124, '3', 0.00, 0.01, '件', 0, 1, 0, 1, 1, 2, '', 2997, 2997, 0, '2022-11-15 17:44:52', '2023-02-18 16:30:06'); INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (4, 1, 21, 1, 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', '', '[\"crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png\",\"crmebimage/public/content/2022/11/15/715a6a9365e044e98c0e7fbe7829fa0ac5pnclaeu4.png\",\"crmebimage/public/content/2022/11/15/5d575c83f06c4106a7ef439c92028d2fr1ajkqmm2j.png\",\"crmebimage/public/content/2022/11/15/69edd1cedf8f4d478a49f7a7844e0983o6x42nj4ig.png\",\"crmebimage/public/content/2022/11/15/19f18776ee414499bbf3cfb33537e68duercui42xq.png\"]', '男鞋AF款篮球鞋减震耐磨百搭板鞋男女冰淇淋小白鞋低帮女运动鞋 6222白色 43', '男鞋AF款篮球鞋减震耐磨百搭板鞋男女冰淇淋小白鞋低帮女运动鞋 6222白色 43', '男鞋AF款篮球鞋减震耐磨百搭板鞋男女冰淇淋小白鞋低帮女运动鞋 6222白色 43', 0, 3, '', 999.00, 0.01, '双', 0, 1, 0, 1, 1, 2, '', 4113, 4113, 0, '2022-11-15 17:52:43', '2023-02-17 16:00:00'); INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (5, 1, 22, 1, 'crmebimage/public/content/2022/11/15/f2b67dfaa03d4c71b5883e73bb5d6b5b2704m3hp5r.png', '', '[\"crmebimage/public/content/2022/11/15/22637bf2d38a40e68bbff2a06bcb63a5hp8ghdo300.png\",\"crmebimage/public/content/2022/11/15/1e16b1701bb54c0787e7a4ae0e3e3e27q2daf1xfi3.png\",\"crmebimage/public/content/2022/11/15/575bb26b6617499191fe6f052b11dba80v1pli1u9s.png\",\"crmebimage/public/content/2022/11/15/c872d333074f437bb7f2f402a2763fediijjxxyg66.png\",\"crmebimage/public/content/2022/11/15/f2b67dfaa03d4c71b5883e73bb5d6b5b2704m3hp5r.png\"]', '鹦鹉YINGWU鹦鹉手风琴120BS4排簧9968黑色红色蓝色41键手风琴专业演奏', '鹦鹉YINGWU鹦鹉手风琴120BS4排簧9968黑色红色蓝色41键手风琴专业演奏', '鹦鹉YINGWU鹦鹉手风琴120BS4排簧9968黑色红色蓝色41键手风琴专业演奏', 0, 3, '', 6360.00, 0.01, '架', 0, 1, 0, 0, 1, 2, '', 9, 9, 0, '2022-11-15 17:58:23', '2023-02-17 23:11:54'); INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (6, 1, 23, 1, 'crmebimage/public/content/2022/11/17/fb1908fae984482aa7fc36eb7f09ae2bjx0q55lfzz.png', '', '[\"crmebimage/public/content/2022/11/16/42bf7b98726547f5ba3647a7de29851dqubcy6j5ix.png\",\"crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png\",\"crmebimage/public/content/2022/11/15/6bfe996a372f47139dd5b64fda046ef7p0v0kwbs2q.png\",\"crmebimage/public/content/2022/11/15/46c82b232d424d099d576c3d243ba1e7c251em40hn.png\",\"crmebimage/public/content/2022/11/15/bcc6d6ba2cc7488a8b0a1aef95131808c8lt757lmc.png\",\"crmebimage/public/content/2022/11/15/eb36cd9ebc364b09a19b55b7239f7bb99f6iwxkdv1.png\"]', 'CAMILA&KORALI品牌包包女包斜挎单肩小包女式', 'CAMILA&KORALI品牌包包女包斜挎单肩小包女式', 'CAMILA&KORALI品牌包包女包斜挎单肩小包女式', 0, 3, '3', 1110.00, 0.01, '件', 0, 1, 0, 1, 1, 2, '', 1026, 1026, 0, '2022-11-15 18:03:33', '2023-02-18 14:59:59'); INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (7, 1, 34, 1, 'crmebimage/public/content/2022/11/17/d86f16015f0244848f49782f1ef499dewenwhebqu3.png', '', '[\"crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png\",\"crmebimage/public/content/2022/11/17/ebec16889e9d49069b33253f113464c4v1uasloj1g.png\",\"crmebimage/public/content/2022/11/17/d9d4d7c6ab7d4b65903cb87eef2d79a7bjajjavdn4.png\",\"crmebimage/public/content/2022/11/17/d86f16015f0244848f49782f1ef499dewenwhebqu3.png\"]', '荣耀20青春版 AMOLED屏幕指纹 4000mAh大电池 20W快充 4800万 手机 6GB+64GB 冰岛幻境', '荣耀20青春版 AMOLED屏幕指纹 4000mAh大电池 20W快充 4800万 手机 6GB+64GB 冰岛幻境', '荣耀20青春版 AMOLED屏幕指纹 4000mAh大电池 20W快充 4800万 手机 6GB+64GB 冰岛幻境', 0, 3, '', 10000.00, 0.01, '件 ', 0, 1, 0, 1, 1, 2, '', 1701, 1701, 0, '2022-11-17 10:33:20', '2023-02-17 20:37:22'); INSERT INTO `eb_seckill_product` (`id`, `activity_id`, `product_id`, `mer_id`, `image`, `flat_pattern`, `slider_image`, `name`, `intro`, `keyword`, `brand_id`, `category_id`, `guarantee_ids`, `price`, `seckill_price`, `unit_name`, `sales`, `temp_id`, `sort`, `spec_type`, `is_show`, `audit_status`, `reason`, `quota_show`, `quota`, `is_del`, `create_time`, `update_time`) VALUES (8, 1, 35, 1, 'crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png', '', '[\"crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png\",\"crmebimage/public/content/2022/11/17/e401f19e158f44afbbb91be7fa55c7368jz5qdm4xy.png\",\"crmebimage/public/content/2022/11/17/bf0c52e7855e4087bf386b1438222a705ymvk1sq41.png\",\"crmebimage/public/content/2022/11/17/d8556ca6acf14795b01ff13134c0d5f6yn6buo1x8z.png\",\"crmebimage/public/content/2022/11/17/ba92c8ed5e104f7eacd2a34235758fd3gqerjhxhkc.png\"]', ' FOMIX 蛋壳椅 进口头层牛皮橙色单人沙发椅Egg chair设计师蛋椅 Egg chair/意大利头层牛皮/单椅', '\nFOMIX 蛋壳椅 进口头层牛皮橙色单人沙发椅Egg chair设计师蛋椅 Egg chair/意大利头层牛皮/单椅\n', ' FOMIX 蛋壳椅 进口头层牛皮橙色单人沙发椅Egg chair设计师蛋椅 Egg chair/意大利头层牛皮/单椅', 0, 3, '3', 1110.00, 0.01, '件', 0, 1, 0, 1, 1, 2, '', 198, 198, 0, '2022-11-17 10:42:28', '2023-02-17 19:58:53'); COMMIT; -- ---------------------------- -- Table structure for eb_seckill_time_interval -- ---------------------------- DROP TABLE IF EXISTS `eb_seckill_time_interval`; CREATE TABLE `eb_seckill_time_interval` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL DEFAULT '' COMMENT '秒杀时段名称', `start_time` int(6) NOT NULL COMMENT '秒杀时段开始时间', `end_time` int(6) NOT NULL COMMENT '秒杀时段结束时间', `status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '状态 0=关闭 1=开启', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '删除标记 0=未删除 1=删除', `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='秒杀时段表'; -- ---------------------------- -- Records of eb_seckill_time_interval -- ---------------------------- BEGIN; INSERT INTO `eb_seckill_time_interval` (`id`, `name`, `start_time`, `end_time`, `status`, `is_del`, `create_time`, `update_time`) VALUES (1, '情人节与你相约', 0, 800, 1, 0, '2023-02-14 10:28:37', '2023-02-14 10:38:07'); INSERT INTO `eb_seckill_time_interval` (`id`, `name`, `start_time`, `end_time`, `status`, `is_del`, `create_time`, `update_time`) VALUES (2, '早茶时间', 800, 1000, 1, 0, '2023-02-14 10:40:47', '2023-02-14 10:40:47'); INSERT INTO `eb_seckill_time_interval` (`id`, `name`, `start_time`, `end_time`, `status`, `is_del`, `create_time`, `update_time`) VALUES (3, '上午时分', 1000, 1200, 1, 0, '2023-02-14 10:44:22', '2023-02-14 10:44:22'); INSERT INTO `eb_seckill_time_interval` (`id`, `name`, `start_time`, `end_time`, `status`, `is_del`, `create_time`, `update_time`) VALUES (4, '午间欢聚', 1200, 1400, 1, 0, '2023-02-14 10:45:38', '2023-02-14 10:45:42'); INSERT INTO `eb_seckill_time_interval` (`id`, `name`, `start_time`, `end_time`, `status`, `is_del`, `create_time`, `update_time`) VALUES (5, '午后魅惑', 1400, 2359, 1, 0, '2023-02-14 14:01:29', '2023-02-14 14:01:29'); COMMIT; -- ---------------------------- -- Table structure for eb_sensitive_method_log -- ---------------------------- DROP TABLE IF EXISTS `eb_sensitive_method_log`; CREATE TABLE `eb_sensitive_method_log` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `mer_id` int(11) NOT NULL COMMENT '商户id,0-平台', `admin_id` int(11) NOT NULL COMMENT '管理员id', `admin_account` varchar(32) DEFAULT '' COMMENT '管理员账号', `description` varchar(50) DEFAULT '' COMMENT '接口描述', `method_type` varchar(30) DEFAULT '' COMMENT '业务类型', `method` varchar(100) DEFAULT '' COMMENT '方法名称', `request_method` varchar(10) DEFAULT '' COMMENT '请求方式', `url` varchar(255) DEFAULT '' COMMENT '请求URL', `ip` varchar(50) DEFAULT '' COMMENT '主机地址', `request_param` varchar(2000) DEFAULT '' COMMENT '请求参数', `result` varchar(2000) DEFAULT '' COMMENT '返回参数', `status` int(1) DEFAULT '0' COMMENT '操作状态(0正常 1异常)', `error_msg` varchar(2000) DEFAULT '' COMMENT '错误消息', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='敏感操作日志表'; -- ---------------------------- -- Records of eb_sensitive_method_log -- ---------------------------- BEGIN; INSERT INTO `eb_sensitive_method_log` (`id`, `mer_id`, `admin_id`, `admin_account`, `description`, `method_type`, `method`, `request_method`, `url`, `ip`, `request_param`, `result`, `status`, `error_msg`, `create_time`) VALUES (1, 0, 1, 'admin', '新增秒杀活动', '增加', 'com.zbkj.admin.controller.platform.SeckillController.createActivity()', 'POST', '/api/admin/platform/seckill/activity/add', '127.0.0.1', '{\"proCategory\":\"0\",\"merStars\":1,\"endDate\":\"2028-04-30\",\"timeIntervals\":\"1,2,3,4,5\",\"oneQuota\":1,\"name\":\"欢迎使用CRMEBJava 秒杀功能\",\"allQuota\":1,\"productList\":[{\"attrValue\":[{\"activityPrice\":0.01,\"attrValueId\":60,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":61,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":62,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":63,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":64,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":65,\"quota\":999}],\"id\":12,\"sort\":0},{\"attrValue\":[{\"activityPrice\":0.01,\"attrValueId\":66,\"quota\":3},{\"activityPrice\":0.01,\"attrValueId\":67,\"quota\":1},{\"activityPrice\":0.01,\"attrValueId\":68,\"quota\":3},{\"activityPrice\":0.01,\"attrValueId\":69,\"quota\":3}],\"id\":13,\"sort\":0},{\"attrValue\":[{\"activityPrice\":0.01,\"attrValueId\":103,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":104,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":105,\"quota\":999}],\"id\":18,\"sort\":0},{\"attrValue\":[{\"activityPrice\":0.01,\"attrValueId\":82,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":83,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":84,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":85,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":86,\"quota\":99},{\"activityPrice\":0.01,\"attrValueId\":87,\"quota\":9},{\"activityPrice\":0.01,\"attrValueId\":88,\"quota\":9}],\"id\":21,\"sort\":0},{\"attrValue\":[{\"activityPrice\":0.01,\"attrValueId\":89,\"quota\":9}],\"id\":22,\"sort\":0},{\"attrValue\":[{\"activityPrice\":0.01,\"attrValueId\":115,\"quota\":9},{\"activityPrice\":0.01,\"attrValueId\":116,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":117,\"quota\":9},{\"activityPrice\":0.01,\"attrValueId\":118,\"quota\":9}],\"id\":23,\"sort\":0},{\"attrValue\":[{\"activityPrice\":0.01,\"attrValueId\":119,\"quota\":9},{\"activityPrice\":0.01,\"attrValueId\":120,\"quota\":999},{\"activityPrice\":0.01,\"attrValueId\":121,\"quota\":99},{\"activityPrice\":0.01,\"attrValueId\":122,\"quota\":99},{\"activityPrice\":0.01,\"attrValueId\":123,\"quota\":99},{\"activityPrice\":0.01,\"attrValueId\":124,\"quota\":99},{\"activityPrice\":0.01,\"attrValueId\":12', '{\"code\":200,\"message\":\"操作成功\"}', 0, '', '2023-03-02 18:04:25'); INSERT INTO `eb_sensitive_method_log` (`id`, `mer_id`, `admin_id`, `admin_account`, `description`, `method_type`, `method`, `request_method`, `url`, `ip`, `request_param`, `result`, `status`, `error_msg`, `create_time`) VALUES (2, 0, 1, 'admin', '秒杀活动开关', '修改', 'com.zbkj.admin.controller.platform.SeckillController.switchActivity()', 'POST', '/api/admin/platform/seckill/activity/switch/1', '127.0.0.1', '1', '{\"code\":200,\"message\":\"操作成功\"}', 0, '', '2023-03-02 18:04:31'); INSERT INTO `eb_sensitive_method_log` (`id`, `mer_id`, `admin_id`, `admin_account`, `description`, `method_type`, `method`, `request_method`, `url`, `ip`, `request_param`, `result`, `status`, `error_msg`, `create_time`) VALUES (3, 0, 1, 'admin', '秒杀活动开关', '修改', 'com.zbkj.admin.controller.platform.SeckillController.switchActivity()', 'POST', '/api/admin/platform/seckill/activity/switch/1', '127.0.0.1', '1', '{\"code\":200,\"message\":\"操作成功\"}', 0, '', '2023-03-02 18:04:31'); COMMIT; -- ---------------------------- -- Table structure for eb_shipping_templates -- ---------------------------- DROP TABLE IF EXISTS `eb_shipping_templates`; CREATE TABLE `eb_shipping_templates` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', `mer_id` int(11) NOT NULL COMMENT '商户id', `name` varchar(255) NOT NULL COMMENT '模板名称', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '计费方式', `appoint` tinyint(1) NOT NULL DEFAULT '0' COMMENT '包邮类型:0-全国包邮,1-部分包邮,2-不包邮', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `mer_id` (`mer_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='运费模板'; -- ---------------------------- -- Records of eb_shipping_templates -- ---------------------------- BEGIN; INSERT INTO `eb_shipping_templates` (`id`, `mer_id`, `name`, `type`, `appoint`, `sort`, `create_time`, `update_time`) VALUES (1, 1, '全国包邮', 0, 0, 0, '2023-02-14 11:39:20', '2023-02-14 11:39:20'); INSERT INTO `eb_shipping_templates` (`id`, `mer_id`, `name`, `type`, `appoint`, `sort`, `create_time`, `update_time`) VALUES (2, 2, '全国包邮', 0, 0, 0, '2023-02-14 11:39:20', '2023-02-14 11:39:20'); INSERT INTO `eb_shipping_templates` (`id`, `mer_id`, `name`, `type`, `appoint`, `sort`, `create_time`, `update_time`) VALUES (3, 3, '全国包邮', 0, 0, 0, '2023-02-14 11:39:20', '2023-02-14 11:39:20'); COMMIT; -- ---------------------------- -- Table structure for eb_shipping_templates_free -- ---------------------------- DROP TABLE IF EXISTS `eb_shipping_templates_free`; CREATE TABLE `eb_shipping_templates_free` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', `temp_id` int(11) NOT NULL DEFAULT '0' COMMENT '模板ID', `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市ID', `title` text COMMENT '描述', `number` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '包邮件数', `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '包邮金额', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '计费方式', `uniqid` varchar(32) NOT NULL DEFAULT '' COMMENT '分组唯一值', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `temp_id` (`temp_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='运费模板包邮'; -- ---------------------------- -- Records of eb_shipping_templates_free -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_shipping_templates_region -- ---------------------------- DROP TABLE IF EXISTS `eb_shipping_templates_region`; CREATE TABLE `eb_shipping_templates_region` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '编号', `temp_id` int(11) NOT NULL DEFAULT '0' COMMENT '模板ID', `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市ID', `title` text COMMENT '描述', `first` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '首件', `first_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '首件运费', `renewal` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '续件', `renewal_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '续件运费', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '计费方式 1按件数 2按重量 3按体积', `uniqid` varchar(32) NOT NULL DEFAULT '' COMMENT '分组唯一值', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `temp_id` (`temp_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='运费模板指定区域费用'; -- ---------------------------- -- Records of eb_shipping_templates_region -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_shopping_product_day_record -- ---------------------------- DROP TABLE IF EXISTS `eb_shopping_product_day_record`; CREATE TABLE `eb_shopping_product_day_record` ( `id` int(11) NOT NULL AUTO_INCREMENT, `date` varchar(20) DEFAULT NULL COMMENT '日期,yyyy-MM-dd', `add_product_num` int(11) DEFAULT NULL COMMENT '新增商品数量', `page_view` int(11) DEFAULT NULL COMMENT '浏览量', `collect_num` int(11) DEFAULT NULL COMMENT '收藏量', `add_cart_num` int(11) DEFAULT NULL COMMENT '加购件数', `order_product_num` int(11) DEFAULT NULL COMMENT '下单商品数', `order_success_product_num` int(11) DEFAULT NULL COMMENT '交易成功商品数', PRIMARY KEY (`id`) USING BTREE, KEY `date` (`date`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商城商品日记录表'; -- ---------------------------- -- Records of eb_shopping_product_day_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_sign_config -- ---------------------------- DROP TABLE IF EXISTS `eb_sign_config`; CREATE TABLE `eb_sign_config` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `day` int(5) NOT NULL DEFAULT '1' COMMENT '连续签到天数,0-每天签到奖励', `is_integral` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否奖励积分', `integral` int(5) NOT NULL DEFAULT '0' COMMENT '签到积分', `is_experience` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否奖励经验', `experience` int(5) NOT NULL DEFAULT '0' COMMENT '签到经验', `mark` varchar(200) NOT NULL DEFAULT '' COMMENT '备注说明', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='签到设置表'; -- ---------------------------- -- Records of eb_sign_config -- ---------------------------- BEGIN; INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (1, 0, 1, 15, 1, 5, '赠送10积分,赠送10经验', 0, '2022-09-06 18:27:59'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (2, 1, 1, 10, 1, 2, '赠送10积分,赠送2经验', 1, '2022-09-07 14:39:30'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (5, 2, 1, 10, 1, 3, '赠送10积分,赠送3经验', 1, '2022-09-07 15:29:29'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (6, 1, 1, 1, 1, 1, '赠送1积分,赠送1经验', 0, '2022-09-07 15:30:33'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (7, 2, 1, 5, 1, 5, '赠送5积分,赠送5经验', 0, '2022-11-02 15:53:21'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (8, 3, 1, 10, 1, 10, '赠送10积分,赠送10经验', 0, '2022-11-07 10:30:26'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (9, 4, 1, 15, 1, 15, '赠送15积分,赠送15经验', 0, '2022-11-07 10:42:57'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (10, 5, 1, 20, 1, 20, '赠送20积分,赠送20经验', 0, '2022-11-22 10:36:46'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (11, 6, 1, 25, 1, 25, '赠送25积分,赠送25经验', 0, '2022-11-22 10:36:56'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (12, 11, 1, 11, 1, 11, '赠送11积分,赠送11经验', 1, '2022-11-22 10:37:07'); INSERT INTO `eb_sign_config` (`id`, `day`, `is_integral`, `integral`, `is_experience`, `experience`, `mark`, `is_del`, `create_time`) VALUES (13, 7, 1, 30, 1, 30, '赠送30积分,赠送30经验', 0, '2023-02-17 15:04:36'); COMMIT; -- ---------------------------- -- Table structure for eb_sms_template -- ---------------------------- DROP TABLE IF EXISTS `eb_sms_template`; CREATE TABLE `eb_sms_template` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id', `temp_id` varchar(20) NOT NULL DEFAULT '0' COMMENT '短信模板id', `temp_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '模板类型', `title` varchar(100) NOT NULL DEFAULT '' COMMENT '模板说明', `type` varchar(20) NOT NULL DEFAULT '' COMMENT '类型', `status` tinyint(2) NOT NULL DEFAULT '1' COMMENT '状态', `content` varchar(500) NOT NULL COMMENT '短息内容', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='短信模板表'; -- ---------------------------- -- Records of eb_sms_template -- ---------------------------- BEGIN; INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (1, '440396', 2, '订单支付成功', '通知', 1, '【CRMEB】您购买的商品已支付成功,支付金额{$pay_price}元,订单号{$order_id},感谢您的光临!', '2021-12-09 19:31:13', '2021-12-09 20:03:34'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (2, '441596', 2, '订单发货通知', '通知', 1, '【CRMEB】亲爱的用户{$nickname}您的商品{$store_name},订单号{$order_id}已发货,请注意查收!', '2021-12-09 20:03:34', '2022-08-24 17:23:12'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (3, '499597', 2, '入驻审核通过通知', '通知', 1, '【CRMEB】您好,您{$date}提交的{$mer}商户入驻申请已通过,商户账号:{$phone}, 密码:{$pwd},请前往{$site_name}商城查看。', '2022-08-25 11:44:42', '2022-08-25 11:44:42'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (4, '499598', 2, '入驻审核未通过通知', '通知', 1, '【CRMEB】您好,您{$date}提交的{$mer}商户入驻申请审核未通过,请前往{$site}商城—个人中心—商户入驻查看。', '2022-08-25 11:45:08', '2022-08-25 11:45:25'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (5, '440405', 2, '管理员下单提醒', '通知', 1, '【CRMEB】{$admin_name}管理员,您有一笔已支付的订单待处理,订单号为{$order_id}!', '2021-12-09 20:49:44', '2022-11-01 20:36:25'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (6, '440406', 2, '管理员支付成功通知', '通知', 1, '【CRMEB】{$admin_name}管理员,您有一笔支付成功的订单待处理,订单号{$order_id}!', '2021-12-09 19:33:38', '2022-11-01 20:36:25'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (7, '440407', 2, '管理员退款通知', '通知', 1, '【CRMEB】{$admin_name}管理员,您有一笔退款订单待处理,订单号{$order_id}!', '2021-12-09 21:07:49', '2022-11-01 20:36:25'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (8, '440408', 2, '管理员确认收货通知', '通知', 1, '【CRMEB】{$admin_name}管理员,您有一笔订单已经确认收货,订单号{$order_id}!', '2021-12-09 20:33:31', '2022-11-01 20:36:25'); INSERT INTO `eb_sms_template` (`id`, `temp_id`, `temp_type`, `title`, `type`, `status`, `content`, `create_time`, `update_time`) VALUES (9, '440410', 2, '订单改价提醒', '通知', 1, '【CRMEB】您的订单{$order_id},实际支付金额已被修改为{$pay_price}。', '2021-12-09 21:12:05', '2022-11-01 20:36:25'); COMMIT; -- ---------------------------- -- Table structure for eb_system_admin -- ---------------------------- DROP TABLE IF EXISTS `eb_system_admin`; CREATE TABLE `eb_system_admin` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT COMMENT '管理员ID', `account` varchar(32) NOT NULL COMMENT '管理员账号', `pwd` char(32) NOT NULL COMMENT '管理员密码', `real_name` varchar(16) NOT NULL COMMENT '管理员姓名', `header_image` varchar(255) NOT NULL DEFAULT '' COMMENT '管理员头像', `roles` varchar(128) NOT NULL COMMENT '管理员角色(menus_id)', `last_ip` varchar(16) DEFAULT NULL COMMENT '管理员最后一次登录ip', `login_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '登录次数', `level` tinyint(3) unsigned NOT NULL DEFAULT '1' COMMENT '管理员级别', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '管理员状态 1有效,0无效', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除:1-删除', `phone` varchar(15) DEFAULT NULL COMMENT '手机号码', `is_sms` tinyint(1) unsigned DEFAULT '0' COMMENT '是否接收短信', `type` int(2) NOT NULL DEFAULT '1' COMMENT '管理员类型:1= 平台超管, 2=商户超管, 3=系统管理员,4=商户管理员', `mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户id,0-平台', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '后台管理员添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '后台管理员最后一次登录时间', PRIMARY KEY (`id`) USING BTREE, KEY `account` (`account`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='系统管理员表'; -- ---------------------------- -- Records of eb_system_admin -- ---------------------------- BEGIN; INSERT INTO `eb_system_admin` (`id`, `account`, `pwd`, `real_name`, `header_image`, `roles`, `last_ip`, `login_count`, `level`, `status`, `is_del`, `phone`, `is_sms`, `type`, `mer_id`, `create_time`, `update_time`) VALUES (1, 'admin', 'L8qdg72wbeQ=', '超级管理员', '', '1', '127.0.0.1', 329, 0, 1, 0, '0', 0, 1, 0, '2022-07-22 15:18:49', '2023-03-02 17:43:18'); INSERT INTO `eb_system_admin` (`id`, `account`, `pwd`, `real_name`, `header_image`, `roles`, `last_ip`, `login_count`, `level`, `status`, `is_del`, `phone`, `is_sms`, `type`, `mer_id`, `create_time`, `update_time`) VALUES (3, '18392723441', 'Q2XY4F/COnQ=', '托罗斯基', '', '2', '124.116.189.70', 19, 1, 1, 0, NULL, 0, 2, 1, '2022-11-15 10:23:05', '2023-02-18 15:04:05'); INSERT INTO `eb_system_admin` (`id`, `account`, `pwd`, `real_name`, `header_image`, `roles`, `last_ip`, `login_count`, `level`, `status`, `is_del`, `phone`, `is_sms`, `type`, `mer_id`, `create_time`, `update_time`) VALUES (4, '18292417675', 'w9LTrURn7xU=', '大粽子商铺', '', '2', '101.80.149.72', 1391, 1, 1, 0, NULL, 0, 2, 2, '2022-11-15 10:26:18', '2023-02-18 14:15:01'); INSERT INTO `eb_system_admin` (`id`, `account`, `pwd`, `real_name`, `header_image`, `roles`, `last_ip`, `login_count`, `level`, `status`, `is_del`, `phone`, `is_sms`, `type`, `mer_id`, `create_time`, `update_time`) VALUES (5, '15829783472', 'ReH5KH5o7Ik=', '陕北特产', '', '2', '124.116.164.18', 10, 1, 1, 0, NULL, 0, 2, 3, '2022-11-15 10:35:59', '2022-11-23 10:01:03'); COMMIT; -- ---------------------------- -- Table structure for eb_system_attachment -- ---------------------------- DROP TABLE IF EXISTS `eb_system_attachment`; CREATE TABLE `eb_system_attachment` ( `att_id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(100) NOT NULL DEFAULT '' COMMENT '附件名称', `att_dir` varchar(200) NOT NULL DEFAULT '' COMMENT '附件路径', `satt_dir` varchar(200) DEFAULT NULL COMMENT '压缩图片路径', `att_size` char(30) NOT NULL DEFAULT '' COMMENT '附件大小', `att_type` char(30) NOT NULL DEFAULT '' COMMENT '附件类型', `pid` int(10) NOT NULL DEFAULT '0' COMMENT '分类ID0编辑器,1商品图片,2拼团图片,3砍价图片,4秒杀图片,5文章图片,6组合数据图, 7前台用户', `image_type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '图片上传类型 1本地 2七牛云 3OSS 4COS ', `owner` int(11) DEFAULT '-1' COMMENT '资源归属方', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`att_id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=790 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='附件管理表'; -- ---------------------------- -- Records of eb_system_attachment -- ---------------------------- BEGIN; INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (1, '1668478227044.png', '', 'crmebimage/public/product/2022/11/15/f6976697823943c0b50ece178d488bd6mjbalm9pxk.png', '5970', 'png', 40, 1, -1, '2022-11-15 10:10:29', '2022-11-15 10:10:29'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (2, '1668478250169.png', '', 'crmebimage/public/product/2022/11/15/de70cbb3183443a9bece9c16804b06fbkghvba2dbu.png', '26740', 'png', 40, 1, -1, '2022-11-15 10:10:52', '2022-11-15 10:10:52'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (3, '1668478268195.png', '', 'crmebimage/public/product/2022/11/15/b0498c1455a24eefafca892a0178c485rl8fd3fzso.png', '3546', 'png', 0, 1, -1, '2022-11-15 10:11:10', '2022-11-15 10:11:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (4, '1668478295127.png', '', 'crmebimage/public/product/2022/11/15/8160be048f6d47da8fe195f5b798c352k1rc6zwhfy.png', '298095', 'png', 40, 1, -1, '2022-11-15 10:11:37', '2022-11-15 10:11:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (5, '1668478315070.png', '', 'crmebimage/public/product/2022/11/15/af569067eb53470b9479ee0e2ea03ff2zexj9790ku.png', '138461', 'png', 40, 1, -1, '2022-11-15 10:11:57', '2022-11-15 10:11:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (6, '1668478391098.png', '', 'crmebimage/public/product/2022/11/15/a0a81124d5564489b73da75d4e23fbb6soavbzvd8b.png', '5970', 'png', 40, 1, -1, '2022-11-15 10:13:13', '2022-11-15 10:13:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (7, '1668478409389.png', '', 'crmebimage/public/product/2022/11/15/52625cbea8dc452fb264ea220ba683f9mmt1arbvlp.png', '26740', 'png', 40, 1, -1, '2022-11-15 10:13:31', '2022-11-15 10:13:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (8, '1668478433370.png', '', 'crmebimage/public/product/2022/11/15/4a642a7725ad45ce903f1af5141aeeaf8zmmdvpr95.png', '3546', 'png', 40, 1, -1, '2022-11-15 10:13:55', '2022-11-15 10:13:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (9, '1668478470096.png', '', 'crmebimage/public/product/2022/11/15/413a81cab1794948a68b56fd6425c804pwxhtr4g05.png', '138461', 'png', 40, 1, -1, '2022-11-15 10:14:32', '2022-11-15 10:14:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (10, '1668478531254.png', '', 'crmebimage/public/product/2022/11/15/8132d8afd6554672a529eff4e7ce954eu4obpedcnx.png', '1967', 'png', 40, 1, -1, '2022-11-15 10:15:33', '2022-11-15 10:15:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (11, '1668478554286.png', '', 'crmebimage/public/product/2022/11/15/277ee787db47426cbe7acd8bec1586eexaq1uqssen.png', '97111', 'png', 40, 1, -1, '2022-11-15 10:15:56', '2022-11-15 10:15:56'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (12, '1668478573370.png', '', 'crmebimage/public/product/2022/11/15/b16e3202e99b44ac891255143cde33ab284uqnm1bs.png', '3861', 'png', 40, 1, -1, '2022-11-15 10:16:15', '2022-11-15 10:16:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (13, '1668478993321.png', '', 'crmebimage/public/product/2022/11/15/f43f49cbed0d4eb18b5ab635b2bb9f973mpd2tzyr7.png', '3318', 'png', 0, 1, -1, '2022-11-15 10:23:12', '2022-11-15 10:23:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (14, '1668479300877.png', '', 'crmebimage/public/content/2022/11/15/f25a2cce43ba41fe94c08fb9f94d5244d950f2v11d.png', '97111', 'png', 46, 1, 2, '2022-11-15 10:28:23', '2022-11-15 10:28:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (15, '吸油纸.jpg', '', 'crmebimage/public/maintain/2022/11/15/7a77e9023efb42a78055e76e86252d3cggaw97e3y6.jpg', '49238', 'jpeg', 66, 1, -1, '2022-11-15 10:31:15', '2022-11-15 10:31:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (16, '抽纸.png', '', 'crmebimage/public/maintain/2022/11/15/c3665241c332481784e0b6fe9465a4bc4fj89cfhaz.png', '8925', 'png', 66, 1, -1, '2022-11-15 10:31:15', '2022-11-15 10:31:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (17, '湿巾.png', '', 'crmebimage/public/maintain/2022/11/15/73fb428b7ca245eca754678a191268dfu6e4d8nf43.png', '21864', 'png', 66, 1, -1, '2022-11-15 10:31:15', '2022-11-15 10:31:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (18, '洗发.jpg', '', 'crmebimage/public/maintain/2022/11/15/9092c00a150c428f8accce4a48fa7289niybxotqdl.jpg', '38240', 'jpeg', 66, 1, -1, '2022-11-15 10:31:16', '2022-11-15 10:31:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (19, '手帕纸.jpg', '', 'crmebimage/public/maintain/2022/11/15/f6292d80b2f74262b0382479998b36731zzmkv7xk2.jpg', '50582', 'jpeg', 66, 1, -1, '2022-11-15 10:31:16', '2022-11-15 10:31:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (20, '厨房纸巾.jpg', '', 'crmebimage/public/maintain/2022/11/15/463d7826246a4191b692cce68aae2216fk4qsxya3y.jpg', '53188', 'jpeg', 66, 1, -1, '2022-11-15 10:31:16', '2022-11-15 10:31:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (21, '卷筒纸.jpg', '', 'crmebimage/public/maintain/2022/11/15/d6532cb43e7a4c2eaa0309225bfe177bvklz388ss4.jpg', '65319', 'jpeg', 66, 1, -1, '2022-11-15 10:31:16', '2022-11-15 10:31:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (22, '湿厕纸.jpg', '', 'crmebimage/public/maintain/2022/11/15/61596229aa9a49c6a6729cec6fe1862csomhlu0zhf.jpg', '131332', 'jpeg', 66, 1, -1, '2022-11-15 10:31:16', '2022-11-15 10:31:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (23, '洗脸巾.jpg', '', 'crmebimage/public/maintain/2022/11/15/545755d5100244db88b80acceea537dbbif29ngmfd.jpg', '141002', 'jpeg', 66, 1, -1, '2022-11-15 10:31:16', '2022-11-15 10:31:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (24, '卫生纸.jpg', '', 'crmebimage/public/maintain/2022/11/15/0d336d6f9d7c453db93d855b2711a8d38mqeli7oki.jpg', '117105', 'jpeg', 66, 1, -1, '2022-11-15 10:31:16', '2022-11-15 10:31:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (25, '地址管理.png', '', 'crmebimage/public/content/2022/11/15/b81a50a7db494205ae84ce6ebf758c417sfwtuf65v.png', '1008', 'png', 63, 1, -1, '2022-11-15 10:33:48', '2022-11-15 10:33:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (26, '个人资料.png', '', 'crmebimage/public/content/2022/11/15/578a8921d5df47e9945573478351bf346509izn9n5.png', '849', 'png', 63, 1, -1, '2022-11-15 10:33:49', '2022-11-15 10:33:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (27, '会员中心.png', '', 'crmebimage/public/content/2022/11/15/8c0ac815f02a4a0588f776a61fcbb8f9bs0clyifun.png', '974', 'png', 63, 1, -1, '2022-11-15 10:33:49', '2022-11-15 10:33:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (28, '积分兑换.png', '', 'crmebimage/public/content/2022/11/15/004091e8a15c4e0f9c84ff02f9d64cd0tp9hfoetmn.png', '976', 'png', 63, 1, -1, '2022-11-15 10:33:49', '2022-11-15 10:33:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (29, '积分中心.png', '', 'crmebimage/public/content/2022/11/15/00ae5379ec7c48d5868ca9389e1d27ebxsy3xhtsai.png', '1066', 'png', 63, 1, -1, '2022-11-15 10:33:50', '2022-11-15 10:33:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (30, '发票管理.png', '', 'crmebimage/public/content/2022/11/15/444ea1ed2125413ca5d9c9505a12008armzsc3006a.png', '1039', 'png', 63, 1, -1, '2022-11-15 10:33:50', '2022-11-15 10:33:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (31, '联系客服.png', '', 'crmebimage/public/content/2022/11/15/ba1d87d5cacb430b985c48e9747d958brrwizl5bep.png', '863', 'png', 63, 1, -1, '2022-11-15 10:33:50', '2022-11-15 10:33:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (32, '客服接待.png', '', 'crmebimage/public/content/2022/11/15/587fae689f6c45699bee630e105e43a2kwqx89c3v2.png', '1056', 'png', 63, 1, -1, '2022-11-15 10:33:50', '2022-11-15 10:33:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (33, '砍价记录.png', '', 'crmebimage/public/content/2022/11/15/00cd146cc3f849ddb6b3fb6a2e3c1709tpv52jzaio.png', '1207', 'png', 63, 1, -1, '2022-11-15 10:33:50', '2022-11-15 10:33:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (34, '签到.png', '', 'crmebimage/public/content/2022/11/15/da960790d1f64c69a7d5f2b76840210cbe5c6gx25f.png', '1017', 'png', 63, 1, -1, '2022-11-15 10:33:50', '2022-11-15 10:33:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (35, '我的收藏.png', '', 'crmebimage/public/content/2022/11/15/8f287489f80e4cae9c170706cb11bdc2ahb3aqsxsn.png', '1054', 'png', 63, 1, -1, '2022-11-15 10:33:53', '2022-11-15 10:33:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (36, '我的等级.png', '', 'crmebimage/public/content/2022/11/15/0137a4c7259548a5b73b56b7fcec7b95fe0fzscn61.png', '1002', 'png', 63, 1, -1, '2022-11-15 10:33:53', '2022-11-15 10:33:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (37, '设置.png', '', 'crmebimage/public/content/2022/11/15/7154926f90234cfaa3cec20d629b5076p709eozb86.png', '942', 'png', 63, 1, -1, '2022-11-15 10:33:53', '2022-11-15 10:33:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (38, '我的推广.png', '', 'crmebimage/public/content/2022/11/15/1d7f940abf2a4c0e87d392e7f6ed1eb9n4x1a4rf87.png', '1009', 'png', 63, 1, -1, '2022-11-15 10:33:53', '2022-11-15 10:33:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (39, '隐私协议.png', '', 'crmebimage/public/content/2022/11/15/e81d745e3f564144b07eea1beac38372keoif075b0.png', '951', 'png', 63, 1, -1, '2022-11-15 10:33:53', '2022-11-15 10:33:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (40, '我的余额.png', '', 'crmebimage/public/content/2022/11/15/c002d90ba7bc4a66bdc100ce9a8e32c7j26l0t7644.png', '909', 'png', 63, 1, -1, '2022-11-15 10:33:53', '2022-11-15 10:33:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (41, '账单明细.png', '', 'crmebimage/public/content/2022/11/15/3afe05899b0e41849c3af160aa16ea5czwleqi6ymt.png', '1022', 'png', 63, 1, -1, '2022-11-15 10:34:02', '2022-11-15 10:34:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (42, '优惠券.png', '', 'crmebimage/public/content/2022/11/15/5a2b76d9580f471592c5159dc3365678g0rh8jwrss.png', '981', 'png', 63, 1, -1, '2022-11-15 10:34:02', '2022-11-15 10:34:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (43, '中奖记录.png', '', 'crmebimage/public/content/2022/11/15/4771013b781141deaa733a05743556ddoohsk6lttj.png', '964', 'png', 63, 1, -1, '2022-11-15 10:34:02', '2022-11-15 10:34:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (44, '佣金记录.png', '', 'crmebimage/public/content/2022/11/15/2db0c1632fc142a88c623107d43324d56sxy0kdaku.png', '1064', 'png', 63, 1, -1, '2022-11-15 10:34:02', '2022-11-15 10:34:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (45, '洗发.jpg', '', 'crmebimage/public/store/2022/11/15/136b58f9ccb6447580be3d59ec163924ltmxabcj05.jpg', '38240', 'jpeg', 0, 1, -1, '2022-11-15 10:34:43', '2022-11-15 10:34:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (46, '1668479704408.png', '', 'crmebimage/public/content/2022/11/15/0f9bb8afd1304e549dd4727216174a2esidoer47iy.png', '9137', 'png', 0, 1, 1, '2022-11-15 10:35:05', '2022-11-15 10:35:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (47, '6.jpg', '', 'crmebimage/public/store/2022/11/15/6ab69ea64a4847c49298aded8e62ea84e2kibun8qk.jpg', '54777', 'jpeg', 0, 1, 1, '2022-11-15 10:42:28', '2022-11-15 10:42:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (48, '4.jpg', '', 'crmebimage/public/store/2022/11/15/d22fa385896a49bcb1576b7d4590523bw9b3vo81rp.jpg', '89287', 'jpeg', 0, 1, 1, '2022-11-15 10:42:42', '2022-11-15 10:42:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (49, '1668480182945.png', '', 'crmebimage/public/store/2022/11/15/489782d2356441eca6a809ee9c2a0b41m6c9qvo8e2.png', '368775', 'png', 0, 1, 1, '2022-11-15 10:43:04', '2022-11-15 10:43:04'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (50, '1668480193378.png', '', 'crmebimage/public/store/2022/11/15/706f486e73c84f3192765e26aa04563aep4fk1xqdq.png', '110157', 'png', 0, 1, 1, '2022-11-15 10:43:14', '2022-11-15 10:43:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (51, '1668480204406.png', '', 'crmebimage/public/store/2022/11/15/756cfe94d22c491688fc569c3d6b9236wg3ylexovp.png', '268719', 'png', 0, 1, 1, '2022-11-15 10:43:25', '2022-11-15 10:43:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (52, '1668480215506.png', '', 'crmebimage/public/store/2022/11/15/ac3df3f166d7465c80278f60700025ff4ncpokt7xx.png', '295081', 'png', 0, 1, 1, '2022-11-15 10:43:36', '2022-11-15 10:43:36'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (53, '1668480244707.png', '', 'crmebimage/public/store/2022/11/15/6fdb936712d34634b35f50badaa03fdab0eftwroc0.png', '224188', 'png', 0, 1, 1, '2022-11-15 10:44:05', '2022-11-15 10:44:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (54, '9.jpg', '', 'crmebimage/public/store/2022/11/15/2b4374a10bec4aaf8a6d44011967d62coib0zofldt.jpg', '12248', 'jpeg', 0, 1, 1, '2022-11-15 10:48:49', '2022-11-15 10:48:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (55, '1668480552919.png', '', 'crmebimage/public/store/2022/11/15/c740e7092daa4414b573c365442e65a3bdji15d480.png', '332452', 'png', 0, 1, 1, '2022-11-15 10:49:14', '2022-11-15 10:49:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (56, '1668480562405.png', '', 'crmebimage/public/store/2022/11/15/881f43e8805b4181b7f588865842b5de5vx3s7npg8.png', '43999', 'png', 0, 1, 1, '2022-11-15 10:49:23', '2022-11-15 10:49:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (57, '1668480572733.png', '', 'crmebimage/public/store/2022/11/15/56513a016e9b44bf802a30be26809696o5jdlvit7a.png', '332452', 'png', 0, 1, 1, '2022-11-15 10:49:33', '2022-11-15 10:49:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (58, '1668480584161.png', '', 'crmebimage/public/store/2022/11/15/c315a19d7a6b4553ba3457f735e711d1yj6ghjzfkm.png', '491399', 'png', 0, 1, 1, '2022-11-15 10:49:45', '2022-11-15 10:49:45'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (59, '1668480594128.png', '', 'crmebimage/public/store/2022/11/15/366ed342a7c648bb90098daf99e3470d2cwwz3qbp4.png', '435366', 'png', 0, 1, 1, '2022-11-15 10:49:55', '2022-11-15 10:49:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (60, '1668480604384.png', '', 'crmebimage/public/store/2022/11/15/132f1ff950e54e269ce808df4ff6a00d9i1zkh5mo8.png', '105728', 'png', 0, 1, 1, '2022-11-15 10:50:05', '2022-11-15 10:50:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (61, 'download-3.jpg', '', 'crmebimage/public/content/2022/11/15/c87a84954fb44eaa8c4b2838575100a9mzv81j5k4b.jpg', '30733', 'jpeg', 67, 1, 2, '2022-11-15 10:52:12', '2022-11-15 10:52:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (62, 'download-5.jpg', '', 'crmebimage/public/content/2022/11/15/db1b93b8201d4cee9bfd868261332aec5lp2nhcylf.jpg', '21848', 'jpeg', 67, 1, 2, '2022-11-15 10:52:12', '2022-11-15 10:52:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (63, 'download-111.jpg', '', 'crmebimage/public/content/2022/11/15/a3bd4146237949809148e796593b7edcbyg8esj424.jpg', '26710', 'jpeg', 67, 1, 2, '2022-11-15 10:52:12', '2022-11-15 10:52:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (64, 'download-6.jpg', '', 'crmebimage/public/content/2022/11/15/34d5c51fa0124ad3a8cb5c3adccc41b6r65mre4nx3.jpg', '22434', 'jpeg', 67, 1, 2, '2022-11-15 10:52:13', '2022-11-15 10:52:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (65, 'download-1.jpg', '', 'crmebimage/public/content/2022/11/15/daf827090e3c4c4cbcd3b30415868cfe2eedwgtc58.jpg', '77865', 'jpeg', 67, 1, 2, '2022-11-15 10:52:13', '2022-11-15 10:52:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (66, 'download1111.jpg', '', 'crmebimage/public/content/2022/11/15/1fe7ceab76cc4255b21b9d22756b686anlyj89btut.jpg', '46133', 'jpeg', 67, 1, 2, '2022-11-15 10:52:13', '2022-11-15 10:52:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (67, 'download.jpg', '', 'crmebimage/public/content/2022/11/15/7f60819cf3fb4c118035984fd37690471ir5i04g5j.jpg', '58027', 'jpeg', 67, 1, 2, '2022-11-15 10:52:13', '2022-11-15 10:52:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (68, 'download-4.jpg', '', 'crmebimage/public/content/2022/11/15/c00766afbae647b9b2c3e9a9cb675a9368z9ntmwvy.jpg', '99141', 'jpeg', 67, 1, 2, '2022-11-15 10:52:14', '2022-11-15 10:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (69, 'download-2.jpg', '', 'crmebimage/public/content/2022/11/15/a464946f4c6e4d65aa172d4aa26f25e7vic0w29cjc.jpg', '176785', 'jpeg', 67, 1, 2, '2022-11-15 10:52:14', '2022-11-15 10:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (70, '1668480890762.png', '', 'crmebimage/public/store/2022/11/15/cbdc078c45114e49a4323b0582796f58fp3af95val.png', '132743', 'png', 0, 1, 1, '2022-11-15 10:54:54', '2022-11-15 10:54:54'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (71, '1668480927551.png', '', 'crmebimage/public/store/2022/11/15/0f93c4ceb25f4bffb893fb96b40ab95by1d96l9cps.png', '224230', 'png', 0, 1, 1, '2022-11-15 10:55:29', '2022-11-15 10:55:29'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (72, '1668480937699.png', '', 'crmebimage/public/store/2022/11/15/f2407fb64f6d4734b196c6330acf72d2xy1sgzc8ok.png', '176913', 'png', 0, 1, 1, '2022-11-15 10:55:38', '2022-11-15 10:55:38'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (73, '1668480946358.png', '', 'crmebimage/public/store/2022/11/15/777c93391b48410e9c30ba5718fb2c84rixwbmosc7.png', '132743', 'png', 0, 1, 1, '2022-11-15 10:55:47', '2022-11-15 10:55:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (74, '1668480955055.png', '', 'crmebimage/public/store/2022/11/15/b11d3334351544cba8bfbac70ab53a91wrngkg4v5w.png', '200557', 'png', 0, 1, 1, '2022-11-15 10:55:57', '2022-11-15 10:55:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (75, '1668480965140.png', '', 'crmebimage/public/store/2022/11/15/458c59b3512640b584a62b5c344092544wfvji4zzo.png', '179989', 'png', 0, 1, 1, '2022-11-15 10:56:06', '2022-11-15 10:56:06'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (76, '1668481243639.png', '', 'crmebimage/public/store/2022/11/15/5f2bcac129854e9b9c48c70ddc52091cvr09hic7r4.png', '50448', 'png', 0, 1, 1, '2022-11-15 11:00:44', '2022-11-15 11:00:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (77, '1668481250798.png', '', 'crmebimage/public/store/2022/11/15/ee9a5c4a16924ccfb5d31e457088be1fq4v56f5h4h.png', '43999', 'png', 0, 1, 1, '2022-11-15 11:00:51', '2022-11-15 11:00:51'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (78, '1668481258641.png', '', 'crmebimage/public/store/2022/11/15/c50656748d0f4cedbcd3fd0babc58c6btcmy7hsnjf.png', '426733', 'png', 0, 1, 1, '2022-11-15 11:00:59', '2022-11-15 11:00:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (79, '1668481271630.png', '', 'crmebimage/public/store/2022/11/15/8080570448be4955a7cedb2171617923mvxzlgj7bs.png', '164783', 'png', 0, 1, 1, '2022-11-15 11:01:12', '2022-11-15 11:01:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (80, '1668481280302.png', '', 'crmebimage/public/store/2022/11/15/b019df029a6241889e6b2958b3bc33a7f6cl3zmkbt.png', '335058', 'png', 0, 1, 1, '2022-11-15 11:01:22', '2022-11-15 11:01:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (81, '1668481288592.png', '', 'crmebimage/public/store/2022/11/15/66100c6d188649929d6c8c7a32582311pe0rl243lj.png', '209353', 'png', 0, 1, 1, '2022-11-15 11:01:29', '2022-11-15 11:01:29'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (82, 'banner1.jpg', '', 'crmebimage/public/content/2022/11/15/d2859f43803e4338b212ac33f463a67bblwspry6fh.jpg', '94459', 'jpeg', 47, 1, -1, '2022-11-15 11:03:28', '2022-11-15 11:03:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (83, 'banner2.jpg', '', 'crmebimage/public/content/2022/11/15/e475d5129f954c998aadd6d05e03cb97cvaodytrvr.jpg', '72414', 'jpeg', 47, 1, -1, '2022-11-15 11:03:28', '2022-11-15 11:03:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (84, 'banner3.jpg', '', 'crmebimage/public/content/2022/11/15/e88b16fe5da3400c877bdc89fa754bc3anw2m6ls9t.jpg', '75536', 'jpeg', 47, 1, -1, '2022-11-15 11:03:28', '2022-11-15 11:03:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (85, '店铺街.png', '', 'crmebimage/public/content/2022/11/15/745d74c58f304a938c5e80e62a03845crjafu1cih0.png', '2101', 'png', 62, 1, -1, '2022-11-15 11:04:31', '2022-11-15 11:04:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (87, '商品分类.png', '', 'crmebimage/public/content/2022/11/15/723997d56046430bab624196391b4b85jmi792nqyq.png', '2431', 'png', 62, 1, -1, '2022-11-15 11:04:31', '2022-11-15 11:04:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (88, '商户入驻.png', '', 'crmebimage/public/content/2022/11/15/447c39c89f894593b0c20389987001660i3wxbi8yj.png', '2162', 'png', 62, 1, -1, '2022-11-15 11:04:31', '2022-11-15 11:04:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (90, 'download-2.png', '', 'crmebimage/public/content/2022/11/15/f71adab2177a42df82f64976f525bbd8okaqw3n47z.png', '34994', 'png', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (91, 'download-3.png', '', 'crmebimage/public/content/2022/11/15/a2c4f7973d424f1696f30e3ab786385341t4pnttqa.png', '39153', 'png', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (92, 'download-1.png', '', 'crmebimage/public/content/2022/11/15/fd6abe9bb33e464f9810f2186c5f5bf7i9r6foljvx.png', '87313', 'png', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (93, 'download-6.png', '', 'crmebimage/public/content/2022/11/15/2fb1bfd332e549fa82feac8f55942b1bf2oeoolvun.png', '32229', 'png', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (94, 'download-9.jpg', '', 'crmebimage/public/content/2022/11/15/4479663f9327462183941edd3988a42cf4x51k04q2.jpg', '23849', 'jpeg', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (95, 'download-4.png', '', 'crmebimage/public/content/2022/11/15/2ded4c1c271048a1bb71dbb3fc2695dccd1uadx934.png', '54319', 'png', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (96, 'download-5.png', '', 'crmebimage/public/content/2022/11/15/fb75d7a485594a65afdda623f55345e2uv8c39j2kf.png', '45762', 'png', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (97, 'download111.jpg', '', 'crmebimage/public/content/2022/11/15/1ba4f281225c4e6bbe81a978f08cffa819mtssjdvm.jpg', '42071', 'jpeg', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (98, 'download.jpg', '', 'crmebimage/public/content/2022/11/15/30cc910d482c44ef9ad20f80e208bdd3rol1cnxi07.jpg', '52805', 'jpeg', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (99, 'download-7.png', '', 'crmebimage/public/content/2022/11/15/c50df977ab9749339157fab78e774ebf6asfiagcj5.png', '67986', 'png', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (100, 'download-8.jpg', '', 'crmebimage/public/content/2022/11/15/9c0a68bc8897451bbd001aa3ba1401b1vdut91uzv2.jpg', '59558', 'jpeg', 68, 1, 2, '2022-11-15 11:05:31', '2022-11-15 11:05:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (101, '1668481637276.png', '', 'crmebimage/public/content/2022/11/15/023c2c2c21cd4cc5ab14a9b29364c5360fkaqnn80e.png', '163370', 'png', 0, 1, 1, '2022-11-15 11:07:23', '2022-11-15 11:07:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (102, '1668481661360.png', '', 'crmebimage/public/content/2022/11/15/8ad795fca85d46c2a86ecbd391d5ec9frj0dk5ovms.png', '451030', 'png', 0, 1, 1, '2022-11-15 11:08:05', '2022-11-15 11:08:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (103, '1668481736343.png', '', 'crmebimage/public/content/2022/11/15/2bdbd7bb21b4460d9d8d26940d7a8965p96wi9uhat.png', '371871', 'png', 0, 1, 1, '2022-11-15 11:08:58', '2022-11-15 11:08:58'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (104, '1668481745614.png', '', 'crmebimage/public/content/2022/11/15/57af5cfbbc89449ba3650bd4fb2b9ef461yggmp14f.png', '262567', 'png', 0, 1, 1, '2022-11-15 11:09:06', '2022-11-15 11:09:06'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (105, '1668481753656.png', '', 'crmebimage/public/content/2022/11/15/a9dc2b496c324c49993f28d957ae23543lmwb4z49y.png', '361973', 'png', 0, 1, 1, '2022-11-15 11:09:15', '2022-11-15 11:09:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (106, '1668481762846.png', '', 'crmebimage/public/content/2022/11/15/9f2b7caa010c4232adb21afc8e18fa22abfi8x98tp.png', '392680', 'png', 0, 1, 1, '2022-11-15 11:09:24', '2022-11-15 11:09:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (107, '1668481770071.png', '', 'crmebimage/public/content/2022/11/15/c02a07474dc146a9b21e4ad687569607yhn1q0qhq5.png', '448586', 'png', 0, 1, 1, '2022-11-15 11:09:31', '2022-11-15 11:09:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (108, '1668481778039.png', '', 'crmebimage/public/content/2022/11/15/10cdb3514b1f46078a9180a7c85745b0kp63d2vmzq.png', '392597', 'png', 0, 1, 1, '2022-11-15 11:09:40', '2022-11-15 11:09:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (109, 'download-3.png', '', 'crmebimage/public/content/2022/11/15/788f0252978e422d9bdf8506510089371l5oqf4897.png', '48287', 'png', 69, 1, 2, '2022-11-15 11:11:55', '2022-11-15 11:11:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (110, 'download-1.png', '', 'crmebimage/public/content/2022/11/15/bddb0fee0fbb490b824284d9083f3d9bnc7svjmaur.png', '26119', 'png', 69, 1, 2, '2022-11-15 11:11:55', '2022-11-15 11:11:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (111, 'download-2.png', '', 'crmebimage/public/content/2022/11/15/d79a7a8777084576870eb80ad0813c887qzezvxlvr.png', '46524', 'png', 69, 1, 2, '2022-11-15 11:11:55', '2022-11-15 11:11:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (112, 'download-4.png', '', 'crmebimage/public/content/2022/11/15/1751b446030f46ba9221230deb354e1auigo1647tp.png', '48801', 'png', 69, 1, 2, '2022-11-15 11:11:55', '2022-11-15 11:11:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (113, 'download-5.png', '', 'crmebimage/public/content/2022/11/15/d27ed504a1714eaabdad0ca9f7b913afy5syxb79qd.png', '43521', 'png', 69, 1, 2, '2022-11-15 11:11:55', '2022-11-15 11:11:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (114, 'download.png', '', 'crmebimage/public/content/2022/11/15/8740303ea78c48d98d1ceadfbd70a2727yx7vfg4g7.png', '35312', 'png', 69, 1, 2, '2022-11-15 11:11:55', '2022-11-15 11:11:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (115, 'download-6.png', '', 'crmebimage/public/content/2022/11/15/d8ee38eade0c4a88a987b7b2f2f64986barenjmo2a.png', '66681', 'png', 69, 1, 2, '2022-11-15 11:11:55', '2022-11-15 11:11:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (116, '1668482023904.png', '', 'crmebimage/public/content/2022/11/15/8786c4282d454d49ad1654a940673eb2lb4q4obznl.png', '733023', 'png', 0, 1, 3, '2022-11-15 11:14:39', '2022-11-15 11:14:39'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (117, '1668482178159.png', '', 'crmebimage/public/content/2022/11/15/a5c4ec2b8ce1480797d38cf6a29a4ddfy6vyqgsj7l.png', '906226', 'png', 0, 1, 3, '2022-11-15 11:16:21', '2022-11-15 11:16:21'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (118, '1668482194253.png', '', 'crmebimage/public/content/2022/11/15/19fbc016aac84337a3ade4486db84ac7gxj95ogmjh.png', '754602', 'png', 0, 1, 3, '2022-11-15 11:16:38', '2022-11-15 11:16:38'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (119, '1668482260680.png', '', 'crmebimage/public/content/2022/11/15/cf01b5c2e6de40089754a42621723a3azda6x25mup.png', '991870', 'png', 0, 1, 3, '2022-11-15 11:17:49', '2022-11-15 11:17:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (120, '1668482621844.png', '', 'crmebimage/public/content/2022/11/15/59d5c2165b134bc894c3678ddb27f5baithxqz4pvi.png', '168857', 'png', 0, 1, 1, '2022-11-15 11:23:42', '2022-11-15 11:23:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (121, '1668482639318.png', '', 'crmebimage/public/content/2022/11/15/f050765e34424e45b527f6ab3637a858umtqs78gl4.png', '164625', 'png', 0, 1, 1, '2022-11-15 11:24:00', '2022-11-15 11:24:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (122, '1668482648742.png', '', 'crmebimage/public/content/2022/11/15/ffd7b57b22b94d478467b864832502b4muuho0wgoo.png', '420348', 'png', 0, 1, 1, '2022-11-15 11:24:09', '2022-11-15 11:24:09'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (123, '1668482656857.png', '', 'crmebimage/public/content/2022/11/15/7f16d49d08d440b4ba03dcd6938b4272f4bbadgae3.png', '233847', 'png', 0, 1, 1, '2022-11-15 11:24:17', '2022-11-15 11:24:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (124, '1668482665270.png', '', 'crmebimage/public/content/2022/11/15/b86dfed1c6f54014b4a061cf44e407dfay7tzrcr6s.png', '321916', 'png', 0, 1, 1, '2022-11-15 11:24:26', '2022-11-15 11:24:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (125, '1668482775984.png', '', 'crmebimage/public/content/2022/11/15/0358fefaa6ef4374a319b9463af4fe5etc5671skop.png', '40660', 'png', 46, 1, 2, '2022-11-15 11:26:18', '2022-11-15 11:26:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (126, '1668482934090.png', '', 'crmebimage/public/content/2022/11/15/6e932f3861e84e0b88c9b879b8ab257cb2n60qg15z.png', '240464', 'png', 46, 1, 2, '2022-11-15 11:28:57', '2022-11-15 11:28:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (127, '1668483005621.png', '', 'crmebimage/public/content/2022/11/15/636c3640fb8245938a1b534c8dd6ccfctiopshpstz.png', '95511', 'png', 46, 1, 2, '2022-11-15 11:30:08', '2022-11-15 11:30:08'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (128, '1668483169851.png', '', 'crmebimage/public/product/2022/11/15/74d6dae204644ac1aa566a242732bd40r3ropvfhl7.png', '101098', 'png', 0, 1, 3, '2022-11-15 11:32:56', '2022-11-15 11:32:56'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (129, '1668483332192.png', '', 'crmebimage/public/content/2022/11/15/4c4c7d2cee6d4d5e8317d9a45f9744c0699doksxyn.png', '8169', 'png', 46, 1, 2, '2022-11-15 11:35:34', '2022-11-15 11:35:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (130, '1668483456336.png', '', 'crmebimage/public/content/2022/11/15/089de8c6448a40b99dcd35cb5b487d4261iawf39tf.png', '234718', 'png', 0, 1, 3, '2022-11-15 11:37:39', '2022-11-15 11:37:39'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (131, '1668483486939.png', '', 'crmebimage/public/content/2022/11/15/0fe05bff033f4462b0c97c629838609dlndg9if4uz.png', '246600', 'png', 0, 1, 3, '2022-11-15 11:38:10', '2022-11-15 11:38:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (132, '1668483518248.png', '', 'crmebimage/public/content/2022/11/15/a1ccc8bf2fd343459116605d1903b068azb9o7xne8.png', '234718', 'png', 0, 1, 3, '2022-11-15 11:38:47', '2022-11-15 11:38:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (133, '1668483615755.png', '', 'crmebimage/public/content/2022/11/15/375c1ce38d034071becb36b6451a3ca7op8zum2x7j.png', '6994', 'png', 46, 1, 2, '2022-11-15 11:40:18', '2022-11-15 11:40:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (134, '1668484512039.png', '', 'crmebimage/public/content/2022/11/15/76877b8ba50f4860b409a1e8f3185179f60o7cm6he.png', '137458', 'png', 0, 1, 1, '2022-11-15 11:55:13', '2022-11-15 11:55:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (135, '1668484521516.png', '', 'crmebimage/public/content/2022/11/15/7a4505e94e384949bcbd35487338093f8jfvwp159g.png', '389452', 'png', 0, 1, 1, '2022-11-15 11:55:23', '2022-11-15 11:55:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (136, '1668484529760.png', '', 'crmebimage/public/content/2022/11/15/bcc1c8f2a54e4a0faf687c6447a42d8crtl5w8vhh1.png', '41178', 'png', 0, 1, 1, '2022-11-15 11:55:30', '2022-11-15 11:55:30'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (137, '1668484541555.png', '', 'crmebimage/public/content/2022/11/15/0d55b85ac5cc475db75e70073455dbf4nysn7awum3.png', '20669', 'png', 0, 1, 1, '2022-11-15 11:55:42', '2022-11-15 11:55:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (138, '1668484551473.png', '', 'crmebimage/public/content/2022/11/15/070692b61f3c4f11924059137a9211c5d7wxwwh3k3.png', '85627', 'png', 0, 1, 1, '2022-11-15 11:55:52', '2022-11-15 11:55:52'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (139, '1668486084540.png', '', 'crmebimage/public/content/2022/11/15/b28480074e4749d689cf3e780817d7a8acardr1rjd.png', '187090', 'png', 0, 1, 1, '2022-11-15 12:21:25', '2022-11-15 12:21:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (140, '1668486093243.png', '', 'crmebimage/public/content/2022/11/15/72f06491c4e2425d9fc694f1f567c50aziqr5jbbfc.png', '198613', 'png', 0, 1, 1, '2022-11-15 12:21:35', '2022-11-15 12:21:35'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (141, '1668486102835.png', '', 'crmebimage/public/content/2022/11/15/5cd875373d2849769912315d16041cc6ddfzhij1pl.png', '334767', 'png', 0, 1, 1, '2022-11-15 12:21:44', '2022-11-15 12:21:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (142, '1668486110375.png', '', 'crmebimage/public/content/2022/11/15/1bcb2046365746a79c5dabe6e5d789ed0s4jp7soh4.png', '274457', 'png', 0, 1, 1, '2022-11-15 12:21:52', '2022-11-15 12:21:52'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (143, '1668486118931.png', '', 'crmebimage/public/content/2022/11/15/505b017e60674932bf89af4ff7cf0188ajcbeq77wl.png', '288151', 'png', 0, 1, 1, '2022-11-15 12:22:00', '2022-11-15 12:22:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (144, '1668486126946.png', '', 'crmebimage/public/content/2022/11/15/90b957841eb64c938e639ce64be85a62hj9e46kgsq.png', '162238', 'png', 0, 1, 1, '2022-11-15 12:22:08', '2022-11-15 12:22:08'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (145, '1668486138242.png', '', 'crmebimage/public/content/2022/11/15/b9b4a2d9f7484dbea1dc2e357b3a0795ng8efpopsm.png', '164173', 'png', 0, 1, 1, '2022-11-15 12:22:19', '2022-11-15 12:22:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (146, '1668486145202.png', '', 'crmebimage/public/content/2022/11/15/12f50c26632743f8b8abbb8481449549glczlgau7z.png', '70219', 'png', 0, 1, 1, '2022-11-15 12:22:26', '2022-11-15 12:22:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (147, '1668486147357.png', '', 'crmebimage/public/store/2022/11/15/1a6af72f3d054ed6816a46bb09380cf3m7xgqaoapc.png', '294617', 'png', 0, 1, 3, '2022-11-15 12:22:28', '2022-11-15 12:22:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (148, 'c1410065b6ca3aa6fd0d588fad1555f9.jpg', '', 'crmebimage/public/content/2022/11/15/c556718bec844292b2b063931ec01e89wg1sp5g396.jpg', '198554', 'jpeg', 0, 1, 3, '2022-11-15 12:25:00', '2022-11-15 12:25:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (149, '3fe5c164c6a1c327d01efb3fe5ad77e3.jpg', '', 'crmebimage/public/content/2022/11/15/4690e80266774c5da2e033f30880a5802ntujmg9gi.jpg', '244789', 'jpeg', 0, 1, 3, '2022-11-15 12:25:00', '2022-11-15 12:25:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (150, 'c6a5989407c518a77b76bf5bee59519c.jpg', '', 'crmebimage/public/content/2022/11/15/9403edc512f54e0da9f20f53d2d131ef5ipt0u4opp.jpg', '246073', 'jpeg', 0, 1, 3, '2022-11-15 12:25:00', '2022-11-15 12:25:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (151, '1668486595478.png', '', 'crmebimage/public/content/2022/11/15/aa0d212ffe4b41719ba80f51af5f229avo51m9sfu0.png', '97225', 'png', 40, 1, -1, '2022-11-15 12:29:58', '2022-11-15 12:29:58'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (152, '1668486644215.png', '', 'crmebimage/public/content/2022/11/15/e4c132816d4346de8bf347ca1576064bh3j16c5nnt.png', '88942', 'png', 40, 1, -1, '2022-11-15 12:30:46', '2022-11-15 12:30:46'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (153, '0b209a475fe7a7118dc964407c98542c.jpg', '', 'crmebimage/public/content/2022/11/15/33d8e5849bb54c848546adc8cb151a460z26k0s4bl.jpg', '185427', 'jpeg', 0, 1, 3, '2022-11-15 12:31:15', '2022-11-15 12:31:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (154, '776a1ee0fb2baed02b0490218a993e5f.jpg', '', 'crmebimage/public/content/2022/11/15/a48c21a6e6a243e8a02687868b8552e15fz44cbzqr.jpg', '196715', 'jpeg', 0, 1, 3, '2022-11-15 12:31:32', '2022-11-15 12:31:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (155, '4dfc50fb97f2c6182f8060b801e254b2.jpg', '', 'crmebimage/public/content/2022/11/15/38018d191a754bcc997f1970c3f75ddb8p1n6pf20e.jpg', '185475', 'jpeg', 0, 1, 3, '2022-11-15 12:31:32', '2022-11-15 12:31:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (156, 'b0d81b7b7d9fe7d3810e308fb38b809e.jpg', '', 'crmebimage/public/content/2022/11/15/c2ebc58b0ddd4c068b56cfc9275ce350ozaog9za0i.jpg', '185427', 'jpeg', 0, 1, 3, '2022-11-15 12:31:32', '2022-11-15 12:31:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (157, '451bbd12598625fe2486517314fb9cf9.jpg', '', 'crmebimage/public/content/2022/11/15/2b5fb89a29184a90b17038ee08877590xlaswityct.jpg', '246158', 'jpeg', 0, 1, 3, '2022-11-15 12:31:32', '2022-11-15 12:31:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (158, 'cfa6943d26c473488c55c05e3f95bc80.jpg', '', 'crmebimage/public/content/2022/11/15/0a16a9856e824855b7838ee8153e260barf921wd8z.jpg', '127941', 'jpeg', 0, 1, 3, '2022-11-15 14:12:11', '2022-11-15 14:12:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (159, '8cbe4208cc4ea4e0b31e6055cd46d63e.jpg', '', 'crmebimage/public/content/2022/11/15/e97f477f554d43a49361f9d9c8c8c7a9tqzdeu4jkd.jpg', '148813', 'jpeg', 0, 1, 3, '2022-11-15 14:12:11', '2022-11-15 14:12:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (160, 'cfa6943d26c473488c55c05e3f95bc80 (1).jpg', '', 'crmebimage/public/content/2022/11/15/4343eb4220524f1586f12a3baa8ec839pnq2h3jehx.jpg', '127941', 'jpeg', 0, 1, 3, '2022-11-15 14:12:11', '2022-11-15 14:12:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (161, 'd028bd2c4cc02646d385995e545796bc.jpg', '', 'crmebimage/public/content/2022/11/15/a4e58ad003f2442983ce60983ee8adb1m9bbeancr3.jpg', '254435', 'jpeg', 0, 1, 3, '2022-11-15 14:12:11', '2022-11-15 14:12:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (162, '1668492975642.png', '', 'crmebimage/public/content/2022/11/15/1c318d5e0e6c4869a670449f2a9b7d21qost1si3rj.png', '367593', 'png', 0, 1, 1, '2022-11-15 14:16:16', '2022-11-15 14:16:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (163, '1668492984409.png', '', 'crmebimage/public/content/2022/11/15/5f028d4400cb4eaab383a94df90369044bhsf4fmtp.png', '142143', 'png', 0, 1, 1, '2022-11-15 14:16:25', '2022-11-15 14:16:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (164, '1668492992230.png', '', 'crmebimage/public/content/2022/11/15/01834a7e91554e30acbf83472213d7747t3y6kdjql.png', '110478', 'png', 0, 1, 1, '2022-11-15 14:16:32', '2022-11-15 14:16:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (165, '1668492999174.png', '', 'crmebimage/public/content/2022/11/15/ff5c891173434bac83a634678f3c6bc7mchtt33wuz.png', '275826', 'png', 0, 1, 1, '2022-11-15 14:16:39', '2022-11-15 14:16:39'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (166, '1668493007605.png', '', 'crmebimage/public/content/2022/11/15/1cd16b75ca514ead9a6ebf9699e6a7e09bl6wsmhqq.png', '381980', 'png', 0, 1, 1, '2022-11-15 14:16:48', '2022-11-15 14:16:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (167, '1668493014253.png', '', 'crmebimage/public/content/2022/11/15/e029715a03a6471fa058d8f4780726bf9e6s1zoay2.png', '160930', 'png', 0, 1, 1, '2022-11-15 14:16:54', '2022-11-15 14:16:54'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (168, '1668493021966.png', '', 'crmebimage/public/content/2022/11/15/a20825afb8d5496281dfcfcd01cafae8k8iuzv39mt.png', '311148', 'png', 0, 1, 1, '2022-11-15 14:17:02', '2022-11-15 14:17:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (169, '1668493029808.png', '', 'crmebimage/public/content/2022/11/15/45021dd86dc84d15ba9e9b4a0db45f5foowo4fjx85.png', '266392', 'png', 0, 1, 1, '2022-11-15 14:17:10', '2022-11-15 14:17:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (170, '1668493037212.png', '', 'crmebimage/public/content/2022/11/15/950435fa2c564791b449d83080e32ab04x4hqngq7y.png', '343875', 'png', 0, 1, 1, '2022-11-15 14:17:17', '2022-11-15 14:17:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (171, '1668493666939.png', '', 'crmebimage/public/content/2022/11/15/1e36c8669bf140298618901b36f0f8ee72z3rh7ul7.png', '489790', 'png', 0, 1, 1, '2022-11-15 14:27:47', '2022-11-15 14:27:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (172, '1668493674211.png', '', 'crmebimage/public/content/2022/11/15/e14b27b960c84072b0b83652146d6702u89hhviw3n.png', '477917', 'png', 0, 1, 1, '2022-11-15 14:27:55', '2022-11-15 14:27:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (173, '1668493680932.png', '', 'crmebimage/public/content/2022/11/15/fe9f49ff3f4845899708fc6cb18374f2r39x60e1ee.png', '515237', 'png', 0, 1, 1, '2022-11-15 14:28:01', '2022-11-15 14:28:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (174, '1668493688010.png', '', 'crmebimage/public/content/2022/11/15/992893705cc6497f85391300a7c7717f7dsc8btxwr.png', '625922', 'png', 0, 1, 1, '2022-11-15 14:28:08', '2022-11-15 14:28:08'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (175, '1668493697279.png', '', 'crmebimage/public/content/2022/11/15/b9c69269f6514978a762aa8818a80858nqlssbzd9b.png', '407847', 'png', 0, 1, 1, '2022-11-15 14:28:17', '2022-11-15 14:28:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (176, '1668493703821.png', '', 'crmebimage/public/content/2022/11/15/d4de88be47d64b2792d0645211286a797kqkglxchw.png', '486593', 'png', 0, 1, 1, '2022-11-15 14:28:24', '2022-11-15 14:28:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (177, '1668493712044.png', '', 'crmebimage/public/content/2022/11/15/bbc0c0f7254247fb86c54fb92ecc8ffdf79nr321db.png', '473670', 'png', 0, 1, 1, '2022-11-15 14:28:32', '2022-11-15 14:28:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (178, '1668493719520.png', '', 'crmebimage/public/content/2022/11/15/d3016d2998ea48608450bab2bc7147c9fd5h5jxk6s.png', '463135', 'png', 0, 1, 1, '2022-11-15 14:28:41', '2022-11-15 14:28:41'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (179, '1668493726909.png', '', 'crmebimage/public/content/2022/11/15/d7346887a7b64c6e8936606bb4f4738crrhc960ctb.png', '156235', 'png', 0, 1, 1, '2022-11-15 14:28:47', '2022-11-15 14:28:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (180, '微信图片_20221031155753.png', '', 'crmebimage/public/user/2022/11/15/1ab60e7dd873460f96f783dcf04209dax1drjnssef.png', '1139', 'png', 0, 1, -1, '2022-11-15 15:54:17', '2022-11-15 15:54:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (181, '1668501174370.png', '', 'crmebimage/public/content/2022/11/15/bc3dd4369c8f4f278f7733a7246c566canj6fyasaw.png', '5916', 'png', 62, 1, -1, '2022-11-15 16:32:09', '2022-11-15 16:46:35'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (182, '1668501561190.png', '', 'crmebimage/public/content/2022/11/15/93fa74936a4e4178914ab6329d7ee4fdd0h8pt004b.png', '4522', 'png', 62, 1, -1, '2022-11-15 16:38:36', '2022-11-15 16:46:35'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (183, '1668501561122.png', '', 'crmebimage/public/content/2022/11/15/5c9103bafc8a4fe39b8d2ba779444b279syhoayn9r.png', '4438', 'png', 0, 1, 1, '2022-11-15 16:39:21', '2022-11-15 16:39:21'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (184, '1668501751382.png', '', 'crmebimage/public/content/2022/11/15/24b72c55e53a46df850230d2344a1b952jyyuvqx69.png', '5087', 'png', 62, 1, -1, '2022-11-15 16:41:46', '2022-11-15 16:46:35'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (185, '1668502180303.png', '', 'crmebimage/public/content/2022/11/15/8124315981e4424896464c13f51096e4rgzxmz69h5.png', '4887', 'png', 0, 1, 1, '2022-11-15 16:49:41', '2022-11-15 16:49:41'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (186, '1668502510899.png', '', 'crmebimage/public/content/2022/11/15/2850fabf7c4044c8997244be155d4200017clvfmsu.png', '91579', 'png', 46, 1, 2, '2022-11-15 16:55:13', '2022-11-15 16:55:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (187, '1668502532237.png', '', 'crmebimage/public/content/2022/11/15/f26a5415d5424932b44a89dde0d23b6b5pe2s9crc5.png', '45138', 'png', 0, 1, 1, '2022-11-15 16:55:33', '2022-11-15 16:55:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (188, '1668502799808.png', '', 'crmebimage/public/content/2022/11/15/b436e2e4dfde4aa2badf8729a30d7471673ujbo71g.png', '36085', 'png', 0, 1, 3, '2022-11-15 17:00:01', '2022-11-15 17:00:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (189, '1668502886026.png', '', 'crmebimage/public/content/2022/11/15/2a707ceffb5c4faf8d1cfef29b4482afmi0argnccx.png', '45633', 'png', 0, 1, 1, '2022-11-15 17:01:26', '2022-11-15 17:01:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (190, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/5551575a86254300884dbd0f94af73a3rhllnuz0c0.jpg', '2427', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (191, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/3a7172ff91a34d8da0dd4ced91850b02929oz31gu2.jpg', '25648', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (192, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/15/aa9e5507e5b84b94a6980a996d14390696f70m4scd.jpg', '13926', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (193, 'download-8.jpg', '', 'crmebimage/public/store/2022/11/15/2e503583451d44df8f3a8503f59b1e426xkjewln7l.jpg', '3815', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (194, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/20ddbb525daa499aa5af1ecfd29d831cz6c7s9j85k.jpg', '35274', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (195, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/de8a9f43f2a74d6c8ba8a0fb6374a4a2cvyftpqwt0.jpg', '20268', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (196, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/15/9a2e9a8017be4cce999ceaaec9cc45e1nx9xfl2ywz.jpg', '23746', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (197, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/e4847fd7a4d34c4780991e81425ad4275snt7wht3m.jpg', '50516', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (198, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/15/24dd409302ed4a57b7c26e4d97c29266tc67ffccpz.jpg', '157347', 'jpeg', 70, 1, -1, '2022-11-15 17:21:12', '2022-11-15 17:21:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (199, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/bceef6e4a0974365be9ed8feebe0a336krwe9068ye.jpg', '2427', 'jpeg', 70, 1, -1, '2022-11-15 17:25:48', '2022-11-15 17:25:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (200, 'download-9.jpg', '', 'crmebimage/public/store/2022/11/15/0cc760dfaa9d41698f5ab1ebed9021c8uaplh3tfe4.jpg', '27918', 'jpeg', 70, 1, -1, '2022-11-15 17:25:49', '2022-11-15 17:25:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (201, 'download-11.jpg', '', 'crmebimage/public/store/2022/11/15/35a2d4fb2e5d44719fbadf923ba2754fw49ajrk9p5.jpg', '28083', 'jpeg', 70, 1, -1, '2022-11-15 17:25:49', '2022-11-15 17:25:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (202, 'download-10.jpg', '', 'crmebimage/public/store/2022/11/15/99e138642a9a4e34b31af12099856105g9nkbrbqqh.jpg', '144625', 'jpeg', 70, 1, -1, '2022-11-15 17:25:51', '2022-11-15 17:25:51'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (203, 'O1CN01aXIDrB22AEWiP1lA4_!!1917047079.png_110x10000.jpg_.webp.jpg', '', 'crmebimage/public/content/2022/11/15/d1a1c6908aec42369a27f54e4ee98fddkzg8spjs55.jpg', '6412', 'jpeg', 0, 1, 3, '2022-11-15 17:26:47', '2022-11-15 17:26:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (204, 'O1CN01cOQfe11IOuunyoaQI_!!2616970884.jpg', '', 'crmebimage/public/content/2022/11/15/4f3af794097b45dfbcca0a437bc0350dj0dwp1953u.jpg', '184824', 'jpeg', 0, 1, 3, '2022-11-15 17:26:47', '2022-11-15 17:26:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (205, '1668504422498.png', '', 'crmebimage/public/content/2022/11/15/f1e03c31adf441e9b5c7659d7131e635nii45o2lxt.png', '78666', 'png', 0, 1, 1, '2022-11-15 17:27:03', '2022-11-15 17:27:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (206, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/ae19036579f6434c9d305dc3df1d1ee7i8naq8ja8k.jpg', '11258', 'jpeg', 71, 1, -1, '2022-11-15 17:28:03', '2022-11-15 17:28:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (207, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/7453fc1b0e2a4ee4bd02fcae3f9b3370zyy8wyzjqu.jpg', '32702', 'jpeg', 71, 1, -1, '2022-11-15 17:28:03', '2022-11-15 17:28:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (208, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/4475071f719349ffabc77931e9cd901ddb7689dqcm.jpg', '35643', 'jpeg', 71, 1, -1, '2022-11-15 17:28:03', '2022-11-15 17:28:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (209, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/7e7e0a782a8e48cc8b30bf8ca0dc592aejffiwzazu.jpg', '133361', 'jpeg', 71, 1, -1, '2022-11-15 17:28:03', '2022-11-15 17:28:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (210, 'download.png', '', 'crmebimage/public/store/2022/11/15/4e723a3f215b47ac837b47f83b6623b6ziiwtuc1zo.png', '11419', 'png', 72, 1, -1, '2022-11-15 17:30:37', '2022-11-15 17:30:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (211, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/3b83fed35fe141798e5525a3c08415abfms57892s2.jpg', '16770', 'jpeg', 72, 1, -1, '2022-11-15 17:30:37', '2022-11-15 17:30:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (212, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/2565d6fad99345dc9e8b81483445aee9wbqxo89lzn.jpg', '43001', 'jpeg', 72, 1, -1, '2022-11-15 17:30:37', '2022-11-15 17:30:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (213, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/68219c06232e40e281a11d2174f4d7b37q54gfzrio.jpg', '40956', 'jpeg', 72, 1, -1, '2022-11-15 17:30:37', '2022-11-15 17:30:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (214, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/10f78c2f4e69418192b7505a0ebf9084phi8pjmr5p.jpg', '26838', 'jpeg', 72, 1, -1, '2022-11-15 17:30:37', '2022-11-15 17:30:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (215, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/a99a7a9e6d8b483b9689c44f9520d0abl6w9qm4yid.jpg', '52250', 'jpeg', 72, 1, -1, '2022-11-15 17:30:37', '2022-11-15 17:30:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (216, 'e9984fe7471c409a92a10f232dc0901c_th.jpg', '', 'crmebimage/public/content/2022/11/15/fbaeb4d56f614f108caa706190c38d1fb7r5qlcphe.jpg', '36704', 'jpeg', 0, 1, 3, '2022-11-15 17:33:43', '2022-11-15 17:33:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (217, 'xifashuihufasuhaibao_10015399.jpg.285.jpg', '', 'crmebimage/public/content/2022/11/15/a22a2ac168c14d01aa15a96a5f14e29dhj46sl4j8u.jpg', '97026', 'jpeg', 0, 1, 3, '2022-11-15 17:33:43', '2022-11-15 17:33:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (218, 'wKgAKVbnvq6IRL3oAAAAPBNeAa0AAAD8gKT84oAAABU235.jpg', '', 'crmebimage/public/content/2022/11/15/2170153082494468a5542fd2f7778c93pzc56vct5x.jpg', '81232', 'jpeg', 0, 1, 3, '2022-11-15 17:33:43', '2022-11-15 17:33:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (219, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/6bceac6c98c24186a88945073ec83aeer34ymkuwyf.jpg', '2427', 'jpeg', 73, 1, -1, '2022-11-15 17:34:42', '2022-11-15 17:34:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (220, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/efaf70c1057740509cca9eec38d5bb88aul68h8md3.jpg', '3447', 'jpeg', 73, 1, -1, '2022-11-15 17:34:42', '2022-11-15 17:34:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (221, 'download.png', '', 'crmebimage/public/store/2022/11/15/44ee8406b44e4f569901b2cf174c9340fy2xxmq2xu.png', '7605', 'png', 73, 1, -1, '2022-11-15 17:34:42', '2022-11-15 17:34:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (222, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/3e86657606d0477d93b99b277b4fae6632ohjh3eod.jpg', '33253', 'jpeg', 73, 1, -1, '2022-11-15 17:34:42', '2022-11-15 17:34:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (223, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/dbfb62ee475f411a9c3c5faf3ecdaf1dpr6eq6mgxf.jpg', '11258', 'jpeg', 73, 1, -1, '2022-11-15 17:34:42', '2022-11-15 17:34:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (224, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/3b76be1266f7406287b091b6316ba92fgo6kspqtwy.jpg', '43423', 'jpeg', 73, 1, -1, '2022-11-15 17:34:42', '2022-11-15 17:34:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (225, '1668505021285.png', '', 'crmebimage/public/content/2022/11/15/49e86f1765ef4ce594a434a2daad897dsisjiq3qbq.png', '40775', 'png', 0, 1, 1, '2022-11-15 17:37:02', '2022-11-15 17:37:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (226, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/4c27c690e9814940a8f2f660623db03ehsc06mjr11.jpg', '12951', 'jpeg', 74, 1, -1, '2022-11-15 17:37:33', '2022-11-15 17:37:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (227, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/7a13878ecae144c2941d23af12f56f0fmgzicx9w10.jpg', '35643', 'jpeg', 74, 1, -1, '2022-11-15 17:37:33', '2022-11-15 17:37:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (228, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/d909de85a8f7414ba68cb1590c544e72kjqqe78hht.jpg', '45636', 'jpeg', 74, 1, -1, '2022-11-15 17:37:33', '2022-11-15 17:37:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (229, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/a1f63bb3f3fb43848421f68430c9620cs2edbg2343.jpg', '6124', 'jpeg', 75, 1, -1, '2022-11-15 17:39:05', '2022-11-15 17:39:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (230, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/ac95228954114fa58acdce89f1862c727sdzowwekr.jpg', '29564', 'jpeg', 75, 1, -1, '2022-11-15 17:39:05', '2022-11-15 17:39:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (231, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/38619934d0b84044b7cb891a801e59702ezdovhyf6.jpg', '55512', 'jpeg', 75, 1, -1, '2022-11-15 17:39:05', '2022-11-15 17:39:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (232, 'download.png', '', 'crmebimage/public/store/2022/11/15/84213f9334ac44de9119889eb2b30329y03cwkaof2.png', '65357', 'png', 75, 1, -1, '2022-11-15 17:39:05', '2022-11-15 17:39:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (233, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/54a9c78f1a174e6aa3c75602a2165d46z7aihz7bpm.jpg', '135854', 'jpeg', 75, 1, -1, '2022-11-15 17:39:05', '2022-11-15 17:39:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (234, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/8b68338d1c4643859e36a88597de818a224tgtbj8m.jpg', '154550', 'jpeg', 75, 1, -1, '2022-11-15 17:39:05', '2022-11-15 17:39:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (235, 'O1CN01popzMv1FhHxHguBW3_!!2209995300518-0-cib.jpg', '', 'crmebimage/public/content/2022/11/15/cd43ae26e0ed491a8163c05716eba80fq1th07frqu.jpg', '105541', 'jpeg', 0, 1, 3, '2022-11-15 17:40:46', '2022-11-15 17:40:46'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (236, 'O1CN01QT0PfJ1FhHxBbQiCt_!!2209995300518-0-cib.jpg', '', 'crmebimage/public/content/2022/11/15/06fa6d4f0cc04c31a77653eade4340a68v0kf7myjy.jpg', '107534', 'jpeg', 0, 1, 3, '2022-11-15 17:40:46', '2022-11-15 17:40:46'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (237, '1668505251038.png', '', 'crmebimage/public/store/2022/11/15/765519855146453981bef604b29cc3bdiefo0zm0v0.png', '113484', 'png', 75, 1, -1, '2022-11-15 17:40:53', '2022-11-15 17:40:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (238, '1668505259687.png', '', 'crmebimage/public/content/2022/11/15/d23a3a099b644b9ab1b387c4c0c10577i9i2avzjqh.png', '215425', 'png', 0, 1, 1, '2022-11-15 17:41:00', '2022-11-15 17:41:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (239, '1668505265762.png', '', 'crmebimage/public/content/2022/11/15/84800e6f4e9d44f7b925d01814cb29c3ayzpq8cp3k.png', '193970', 'png', 0, 1, 1, '2022-11-15 17:41:06', '2022-11-15 17:41:06'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (240, '1668505271840.png', '', 'crmebimage/public/content/2022/11/15/c8522bb97a474a9ea95ffa68ec8b90b8o13khc2jof.png', '209398', 'png', 0, 1, 1, '2022-11-15 17:41:12', '2022-11-15 17:41:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (241, '1668505278112.png', '', 'crmebimage/public/content/2022/11/15/2228808d88994d91b4c072820e864c56lyhtiwq1z4.png', '488636', 'png', 0, 1, 1, '2022-11-15 17:41:19', '2022-11-15 17:41:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (242, '1668505285180.png', '', 'crmebimage/public/content/2022/11/15/acc22d038bb0435586bebccd5dc53544dpmnjozget.png', '72220', 'png', 0, 1, 1, '2022-11-15 17:41:26', '2022-11-15 17:41:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (243, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/192cbd8f2c85452cb8897578fd7a88a5q8l2dud805.jpg', '20984', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (244, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/15/e1f813da05434b91a0e59ab5cb1775e0yl588ui1ea.jpg', '13249', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (245, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/05b8824133e94c25976957f6850b354fctb0fr9cqx.jpg', '46415', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (246, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/15/c75b84a15fba4dadb1b937adedc8c18ahdp32239km.jpg', '17789', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (247, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/15/04a5fe78e3344cbc9091eb3bea91c9f436x8v47mhk.jpg', '16286', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (248, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/b5f2436b04e740169dd4182432ba1f6dpgc952pf20.jpg', '40428', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (249, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/61c448790ff64fe59f1f6353e88f858bqud9xaa4fp.jpg', '25707', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (250, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/77e8006e897d412898f94d2191b25bffomrgyu5qxb.jpg', '57064', 'jpeg', 76, 1, -1, '2022-11-15 17:43:44', '2022-11-15 17:43:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (251, 'O1CN01fTv3XJ1Tu1SDJf0pe_!!2208008632441-0-cib.jpg', '', 'crmebimage/public/content/2022/11/15/f9a847289f4443268b828435a2b361539v16e1jop6.jpg', '158721', 'jpeg', 0, 1, 3, '2022-11-15 17:44:33', '2022-11-15 17:44:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (252, 'O1CN012MsAKN1Tu1S9wMaSc_!!2208008632441-0-cib.jpg', '', 'crmebimage/public/content/2022/11/15/9ade12887ca04850b0fc15f3037c3897y3cee1mrz0.jpg', '101006', 'jpeg', 0, 1, 3, '2022-11-15 17:44:33', '2022-11-15 17:44:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (253, 'O1CN01zWbKGX1Tu1S9wLVuI_!!2208008632441-0-cib.jpg', '', 'crmebimage/public/content/2022/11/15/61a490f88b4e499894c0568e27f97eecr1hrwezns0.jpg', '178873', 'jpeg', 0, 1, 3, '2022-11-15 17:44:33', '2022-11-15 17:44:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (254, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/b4b8777bd9834573861fb8ff27fac83apgfcgu5n4g.jpg', '12659', 'jpeg', 77, 1, -1, '2022-11-15 17:48:03', '2022-11-15 17:48:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (255, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/15/d7cedcb32d6b4afcbe6d000f63ce4558z20r2h6opu.jpg', '14011', 'jpeg', 77, 1, -1, '2022-11-15 17:48:03', '2022-11-15 17:48:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (256, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/2ec1176fdee8471b8a68b3766a659393ponwl5b0wp.jpg', '23810', 'jpeg', 77, 1, -1, '2022-11-15 17:48:03', '2022-11-15 17:48:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (257, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/7bca38c219044ef7b23e2fb67f73e5fdpgzj9gaslx.jpg', '53260', 'jpeg', 77, 1, -1, '2022-11-15 17:48:03', '2022-11-15 17:48:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (258, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/ec858ceb68bf45abb2769fa5b46f3a31fu2eb7eoeh.jpg', '45717', 'jpeg', 77, 1, -1, '2022-11-15 17:48:03', '2022-11-15 17:48:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (259, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/32b628288ff84c4ba2bd6729a89017a5z7kpxbcplt.jpg', '36347', 'jpeg', 77, 1, -1, '2022-11-15 17:48:03', '2022-11-15 17:48:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (260, '1668505721208.png', '', 'crmebimage/public/content/2022/11/15/19f18776ee414499bbf3cfb33537e68duercui42xq.png', '287458', 'png', 0, 1, 1, '2022-11-15 17:48:43', '2022-11-15 17:48:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (261, '1668505729853.png', '', 'crmebimage/public/content/2022/11/15/69edd1cedf8f4d478a49f7a7844e0983o6x42nj4ig.png', '366813', 'png', 0, 1, 1, '2022-11-15 17:48:51', '2022-11-15 17:48:51'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (262, '1668505738133.png', '', 'crmebimage/public/content/2022/11/15/5d575c83f06c4106a7ef439c92028d2fr1ajkqmm2j.png', '402067', 'png', 0, 1, 1, '2022-11-15 17:48:59', '2022-11-15 17:48:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (263, '12264646653_394346284.jpg', '', 'crmebimage/public/content/2022/11/15/958ca9e8f0aa4a90839eaa3bb943ddafwymecj5cjm.jpg', '213643', 'jpeg', 0, 1, 3, '2022-11-15 17:49:07', '2022-11-15 17:49:07'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (264, '12264688435_394346284.jpg', '', 'crmebimage/public/content/2022/11/15/00d5abe4e4374ce4a9a6f86598e90165zploz1lfhc.jpg', '270253', 'jpeg', 0, 1, 3, '2022-11-15 17:49:07', '2022-11-15 17:49:07'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (265, '12264649424_394346284.jpg', '', 'crmebimage/public/content/2022/11/15/26099a8de7c54f9c8fda8f8d25e7828bbk3pdq8huh.jpg', '286989', 'jpeg', 0, 1, 3, '2022-11-15 17:49:07', '2022-11-15 17:49:07'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (266, '1668505745404.png', '', 'crmebimage/public/content/2022/11/15/715a6a9365e044e98c0e7fbe7829fa0ac5pnclaeu4.png', '513239', 'png', 0, 1, 1, '2022-11-15 17:49:07', '2022-11-15 17:49:07'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (267, '1668505753463.png', '', 'crmebimage/public/content/2022/11/15/27252711888943049da71e75f9a1c0b9l4m28x4a26.png', '150013', 'png', 0, 1, 1, '2022-11-15 17:49:14', '2022-11-15 17:49:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (268, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/b68a3789ec5542cd975d2d8740df0d71jzv3tkk50y.jpg', '16213', 'jpeg', 78, 1, -1, '2022-11-15 17:50:19', '2022-11-15 17:50:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (269, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/d0b3ff7d1d7641a18eb630dece971fbfd1p1554czl.jpg', '13008', 'jpeg', 78, 1, -1, '2022-11-15 17:50:19', '2022-11-15 17:50:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (270, 'download.png', '', 'crmebimage/public/store/2022/11/15/00a033ffd4ac4f2780221a292ad89d5ctkky1s2vtr.png', '236245', 'png', 78, 1, -1, '2022-11-15 17:50:19', '2022-11-15 17:50:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (271, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/48a40af027ac46e5af616ad529e478434jiuarojh3.jpg', '62972', 'jpeg', 80, 1, -1, '2022-11-15 17:53:47', '2022-11-15 17:53:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (272, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/9f7569cda9764f739ff26db6d5b1e516e9oqn8ta3e.jpg', '24233', 'jpeg', 80, 1, -1, '2022-11-15 17:53:47', '2022-11-15 17:53:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (273, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/0ffad14234674df7953fdf5bdfd7fb84e86hljsa5a.jpg', '76670', 'jpeg', 80, 1, -1, '2022-11-15 17:53:47', '2022-11-15 17:53:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (274, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/15/9022fc42e0e14cbfb975d6f4813144d3smqej6nhrp.jpg', '30511', 'jpeg', 80, 1, -1, '2022-11-15 17:53:47', '2022-11-15 17:53:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (275, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/6fd0f64db89b418fbeeb92b1f589784fkjwx3mvqf9.jpg', '60489', 'jpeg', 80, 1, -1, '2022-11-15 17:53:48', '2022-11-15 17:53:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (276, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/08b11d8ae4a741998af3062dd127acabc40toi1fno.jpg', '77976', 'jpeg', 80, 1, -1, '2022-11-15 17:53:48', '2022-11-15 17:53:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (277, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/15/bb9883f38d6f4e2ca62b0d36f928442cbwa7eksjtq.jpg', '69192', 'jpeg', 80, 1, -1, '2022-11-15 17:53:48', '2022-11-15 17:53:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (278, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/15/61212b72a891433d9a8dca6b39b01d42qpc61nze93.jpg', '135720', 'jpeg', 80, 1, -1, '2022-11-15 17:53:48', '2022-11-15 17:53:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (279, '1668506184344.png', '', 'crmebimage/public/content/2022/11/15/f2b67dfaa03d4c71b5883e73bb5d6b5b2704m3hp5r.png', '309551', 'png', 0, 1, 1, '2022-11-15 17:56:25', '2022-11-15 17:56:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (280, '1668506193610.png', '', 'crmebimage/public/content/2022/11/15/c872d333074f437bb7f2f402a2763fediijjxxyg66.png', '546849', 'png', 0, 1, 1, '2022-11-15 17:56:34', '2022-11-15 17:56:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (281, '1668506199765.png', '', 'crmebimage/public/content/2022/11/15/575bb26b6617499191fe6f052b11dba80v1pli1u9s.png', '415362', 'png', 0, 1, 1, '2022-11-15 17:56:40', '2022-11-15 17:56:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (282, '1668506207280.png', '', 'crmebimage/public/content/2022/11/15/1e16b1701bb54c0787e7a4ae0e3e3e27q2daf1xfi3.png', '348704', 'png', 0, 1, 1, '2022-11-15 17:56:48', '2022-11-15 17:56:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (283, '1668506213415.png', '', 'crmebimage/public/content/2022/11/15/22637bf2d38a40e68bbff2a06bcb63a5hp8ghdo300.png', '363986', 'png', 0, 1, 1, '2022-11-15 17:56:54', '2022-11-15 17:56:54'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (284, '1668506462527.png', '', 'crmebimage/public/content/2022/11/15/eb36cd9ebc364b09a19b55b7239f7bb99f6iwxkdv1.png', '178963', 'png', 0, 1, 1, '2022-11-15 18:01:03', '2022-11-15 18:01:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (285, '1668506472923.png', '', 'crmebimage/public/content/2022/11/15/bcc6d6ba2cc7488a8b0a1aef95131808c8lt757lmc.png', '276424', 'png', 0, 1, 1, '2022-11-15 18:01:13', '2022-11-15 18:01:13'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (286, '1668506479145.png', '', 'crmebimage/public/content/2022/11/15/46c82b232d424d099d576c3d243ba1e7c251em40hn.png', '320119', 'png', 0, 1, 1, '2022-11-15 18:01:20', '2022-11-15 18:01:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (287, '1668506485953.png', '', 'crmebimage/public/content/2022/11/15/6bfe996a372f47139dd5b64fda046ef7p0v0kwbs2q.png', '122443', 'png', 0, 1, 1, '2022-11-15 18:01:26', '2022-11-15 18:01:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (288, '1668506493646.png', '', 'crmebimage/public/content/2022/11/15/98f0b0eb946b4b318d8c0f49053776eb6w3okwovl9.png', '98012', 'png', 0, 1, 1, '2022-11-15 18:01:34', '2022-11-15 18:01:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (289, '1668508226181.png', '', 'crmebimage/public/content/2022/11/15/e4a6d129b7c94c84b1d177843ac22927tgnx4pgwbs.png', '122637', 'png', 0, 1, 3, '2022-11-15 18:30:28', '2022-11-15 18:30:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (290, '1668508236533.png', '', 'crmebimage/public/content/2022/11/15/8a78f560585342ebaad8888ae005b0baf9j3ngghec.png', '111000', 'png', 0, 1, 2, '2022-11-15 18:30:38', '2022-11-15 18:30:38'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (291, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/8ab3277c1fce445092056b2468120107b2v0he1zdw.jpg', '8622', 'jpeg', 81, 1, -1, '2022-11-15 18:35:31', '2022-11-15 18:35:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (292, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/58df46d8af3b49158ab42dca89dcb588ssrqp7boyl.jpg', '16924', 'jpeg', 81, 1, -1, '2022-11-15 18:35:31', '2022-11-15 18:35:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (293, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/874ce611af134a1f9307ab44692fc52bynx283xfio.jpg', '13237', 'jpeg', 81, 1, -1, '2022-11-15 18:35:31', '2022-11-15 18:35:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (294, '1668508539827.png', '', 'crmebimage/public/content/2022/11/15/1656475353b648e887bdb97343cea1a5mj5rp1oxgb.png', '97858', 'png', 0, 1, 1, '2022-11-15 18:35:41', '2022-11-15 18:35:41'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (295, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/f76e27723761496bad502d25b4728e7bswv0iudpjq.jpg', '35390', 'jpeg', 82, 1, -1, '2022-11-15 18:37:18', '2022-11-15 18:37:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (296, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/26c597a8a8924fd99c9e45710dc5a58f5ryxkcogji.jpg', '36391', 'jpeg', 82, 1, -1, '2022-11-15 18:37:18', '2022-11-15 18:37:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (297, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/2848e8bf4ac84d648b3084a680c2eb875535u6d1pu.jpg', '64811', 'jpeg', 82, 1, -1, '2022-11-15 18:37:18', '2022-11-15 18:37:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (298, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/20ec362029da4ea7bca5344f49c608c94vrs9jwut8.jpg', '5630', 'jpeg', 83, 1, -1, '2022-11-15 18:38:26', '2022-11-15 18:38:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (299, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/a4250b43fe95480d9034103e8f309d3eu1yxdd6j9r.jpg', '8229', 'jpeg', 83, 1, -1, '2022-11-15 18:38:26', '2022-11-15 18:38:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (300, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/9bf21bd482fd428c8c823401a8b29104i3b03vpuho.jpg', '40831', 'jpeg', 84, 1, -1, '2022-11-15 18:40:19', '2022-11-15 18:40:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (301, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/f6c9a753757a433caf67fa5f3b35eec7jmdnv6th9y.jpg', '55630', 'jpeg', 84, 1, -1, '2022-11-15 18:40:19', '2022-11-15 18:40:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (302, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/0bf590a304e440fb9bebde085ff9c8e3k18k0o0s4u.jpg', '75673', 'jpeg', 84, 1, -1, '2022-11-15 18:40:19', '2022-11-15 18:40:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (303, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/a98f0dd7352742f3bbf631c17fceff0527habucuqq.jpg', '5659', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (304, 'download-1.png', '', 'crmebimage/public/store/2022/11/15/52d9abc2c509453cb3fc7e613ee6cf5ead3ti0t8v8.png', '14100', 'png', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (305, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/0291aa0967c94396918f0865478274b7l572iu59rj.jpg', '7214', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (306, 'download-2.png', '', 'crmebimage/public/store/2022/11/15/58ba815d4fe948819e93549837e754berus9i046v9.png', '6782', 'png', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (307, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/d9f24d9c8f87455f8e46718c4b02e666apy5lpcvtx.jpg', '5410', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (308, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/d57215c675184bfe9b46b4fd7ae1a9a60jo56cxwei.jpg', '6819', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (309, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/15/88780cb519394b13a359cefa05f2bbe7nt2xpt20za.jpg', '6520', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (310, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/15/441ce7ecb0ad4aa3b952c74485b5bc6cjjtg33ibmx.jpg', '10170', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (311, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/15/4ea2c1ee16f74edbbe5d229ffa1bf885bi04kgomv2.jpg', '4528', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (312, 'download-3.png', '', 'crmebimage/public/store/2022/11/15/d818c7c574b747c3a3ba30cad49016b5ko0p4un3kw.png', '57440', 'png', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (313, 'download-8.jpg', '', 'crmebimage/public/store/2022/11/15/35823f6d9d6d42ddb7aa96c6c117ea12qr0ayuxaz5.jpg', '7252', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (314, 'download-10.jpg', '', 'crmebimage/public/store/2022/11/15/de06506d53694c3ab80f4276eec2368b4kl0hd7rdn.jpg', '3497', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (315, 'download-9.jpg', '', 'crmebimage/public/store/2022/11/15/666419a6a7ae4347b99e0f37127ce47dyvodl9bpac.jpg', '8917', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (316, 'download-11.jpg', '', 'crmebimage/public/store/2022/11/15/65a3e7376ddb4aae8c018665fea7519bwg9tnuyik8.jpg', '12070', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (317, 'download.png', '', 'crmebimage/public/store/2022/11/15/e742771b498f4b468dc1743f6b26cfe8j4wghm864x.png', '2577', 'png', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (318, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/42d41107db2246058b62df0473e0f531k67aqg3jfu.jpg', '6620', 'jpeg', 85, 1, -1, '2022-11-15 18:47:11', '2022-11-15 18:47:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (319, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/15/be002258ccdc46b980794c1dede4572eoi4onvfeb6.jpg', '14774', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (320, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/48dff0e884ba4bacad49bb6fdd89987c3ukb5se2yd.jpg', '4773', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (321, 'download-10.jpg', '', 'crmebimage/public/store/2022/11/15/6e8806af08304a1a9565cf46ea4943c15ztzehukc2.jpg', '4535', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (322, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/15/aa941a10c38445ed8068a88824627259bpzyuqvf7g.jpg', '29090', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (323, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/15/1e8e0a9ff1794e78bba2478074a86b1esk4arvma5t.jpg', '27605', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (324, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/91e1f3d21aaa492380349e21c414061fa8dxvc1oup.jpg', '74320', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (325, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/ec525f4290594f9e954b7117cbdc3443lz45wi5ral.jpg', '52202', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (326, 'download-9.jpg', '', 'crmebimage/public/store/2022/11/15/2c6614c1dbcb4a3d9cf60e75f5fe9f8959n5lvgpue.jpg', '41381', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (327, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/15/b47ba21af2d44e9ea9c1634400282ea2f9j638djr6.jpg', '63134', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (328, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/15/a553e518593c454e855f8193e5d50922ctslk2g8nv.jpg', '85105', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (329, 'download-8.jpg', '', 'crmebimage/public/store/2022/11/15/714131373f824df69f833b90edc1ab74hh2i3bt53c.jpg', '146156', 'jpeg', 86, 1, -1, '2022-11-15 19:19:59', '2022-11-15 19:19:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (330, 'download-11.jpg', '', 'crmebimage/public/store/2022/11/15/5624a160db3d44129ac98a82e89268c0cnmrqnutgf.jpg', '63013', 'jpeg', 86, 1, -1, '2022-11-15 19:20:57', '2022-11-15 19:20:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (331, 'download-12.jpg', '', 'crmebimage/public/store/2022/11/15/cf93883b386b484496370e412deda5cf24jufye02g.jpg', '52830', 'jpeg', 86, 1, -1, '2022-11-15 19:20:57', '2022-11-15 19:20:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (332, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/15/f11101062d9140f1bf3509722b54770bea7x1ekuwh.jpg', '16202', 'jpeg', 87, 1, -1, '2022-11-15 19:25:17', '2022-11-15 19:25:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (333, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/15/02b8c5a0adff40ca9f76448b81b8f1a5fkryldsm8f.jpg', '15823', 'jpeg', 87, 1, -1, '2022-11-15 19:25:17', '2022-11-15 19:25:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (334, 'download.jpg', '', 'crmebimage/public/store/2022/11/15/bebf8362bd28444b99bdc96cb1ed90063znvksd1xz.jpg', '13910', 'jpeg', 87, 1, -1, '2022-11-15 19:25:17', '2022-11-15 19:25:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (335, '1668511580302.png', '', 'crmebimage/public/store/2022/11/15/91dc1bcc4f75453d95500f1bbac76f54091se5h8nm.png', '124158', 'png', 87, 1, -1, '2022-11-15 19:26:22', '2022-11-15 19:26:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (336, 't01cc87051f61539c5a.jpg', '', 'crmebimage/public/store/2022/11/16/7deffe5498524cb19a8171bc0fa061e2s5t5fmp0c5.jpg', '10408', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (337, 't01474732ebde5df41c.jpg', '', 'crmebimage/public/store/2022/11/16/41fc4b63c1b2422ebbd8871732022179dx8sk9a14b.jpg', '13588', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (338, '21734748669311406990.jpg_344c344.jpg', '', 'crmebimage/public/store/2022/11/16/5f3e7b92628c4e768b1c81c2dd261a43kvrffmeeiv.jpg', '18885', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (339, '20161009101818341834.jpg', '', 'crmebimage/public/store/2022/11/16/2ba868fda9fe4dab943034ad19fffa8alyheoh7xrd.jpg', '62953', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (340, 'true.jpg', '', 'crmebimage/public/store/2022/11/16/e2ba0651d8a144b982164535d481ae8d8at14mwrqa.jpg', '71101', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (341, '019fac5b7c36eda80120577d527169.jpg@1280w_1l_2o_100sh.jpg', '', 'crmebimage/public/store/2022/11/16/8a7103bed5e34fad814c7a88b6e824f83v2wvfl57e.jpg', '192296', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (342, '1ad462c2c0cd464ba38eae89660bf374.jpeg', '', 'crmebimage/public/store/2022/11/16/4663eecfc4fa4298bf6000e41f7d05f1qyucqigrq2.jpeg', '199788', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (343, '22cfe35cbe034b0a73ceaa24f019734ebc33ddd529cfa-pDTeTc_fw658.webp.jpg', '', 'crmebimage/public/store/2022/11/16/f4891ae440bb4d10aa04e749a828ef16uwk5ms3y6v.jpg', '274558', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (344, '0106595cc9a127a801208f8b72c384.jpg@2o.jpg', '', 'crmebimage/public/store/2022/11/16/8609c34f0dab45aa93d4bc1ec038eb459j1h2t3ggg.jpg', '315540', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (345, '010bb55dedcae0a801209568d2b17f.jpg@1280w_1l_2o_100sh.jpg', '', 'crmebimage/public/store/2022/11/16/afba8fd147ba4a47a729a451c05eaefe9broipzge0.jpg', '404463', 'jpeg', 0, 1, 3, '2022-11-16 09:52:14', '2022-11-16 09:52:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (346, '01842f5dc92313a801209e1fc0141b.jpg@2o.jpg', '', 'crmebimage/public/store/2022/11/16/fab6a1e278404ef6b10c4d06ae2f9bd195snq2qzka.jpg', '977476', 'jpeg', 0, 1, 3, '2022-11-16 09:52:15', '2022-11-16 09:52:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (347, '1668564044086.png', '', 'crmebimage/public/content/2022/11/16/42bf7b98726547f5ba3647a7de29851dqubcy6j5ix.png', '255772', 'png', 0, 1, 1, '2022-11-16 10:00:46', '2022-11-16 10:00:46'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (349, '380665631606046739.jpg', '', 'crmebimage/public/store/2022/11/16/08f8d86c9d7d401ba391be96f1a01aa4cz1jnkc552.jpg', '77259', 'jpeg', 0, 1, 3, '2022-11-16 17:34:57', '2022-11-16 17:34:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (350, '248640742083527064.jpg', '', 'crmebimage/public/store/2022/11/16/062554fe8773484aa8ea315f948e7c4b5v6f8g1f6k.jpg', '93505', 'jpeg', 0, 1, 3, '2022-11-16 17:34:57', '2022-11-16 17:34:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (351, '372405954229305495.jpg', '', 'crmebimage/public/store/2022/11/16/07fc00659c3c45ce9a20e3527af86db3xna4qrxa3w.jpg', '137348', 'jpeg', 0, 1, 3, '2022-11-16 17:34:57', '2022-11-16 17:34:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (352, '260452366003994915.jpg', '', 'crmebimage/public/store/2022/11/16/394cca01640f44b19bdcbff3524b39620qgxxppsgu.jpg', '145340', 'jpeg', 0, 1, 3, '2022-11-16 17:34:57', '2022-11-16 17:34:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (353, 'veer-129253178.jpg', '', 'crmebimage/public/store/2022/11/16/d41ba0764290412eb945b21cd315515fpt0q8388vs.jpg', '139042', 'jpeg', 0, 1, 3, '2022-11-16 17:34:57', '2022-11-16 17:34:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (354, '382478228064043060.jpg', '', 'crmebimage/public/store/2022/11/16/9665dad7573c485ab8c3b1c472f08cffjd0l7aa995.jpg', '107888', 'jpeg', 0, 1, 3, '2022-11-16 17:34:57', '2022-11-16 17:34:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (355, '372405945639370915.jpg', '', 'crmebimage/public/store/2022/11/16/a408364246ff4be7a599324b0b45cfe7y04o448fxm.jpg', '135484', 'jpeg', 0, 1, 3, '2022-11-16 17:34:57', '2022-11-16 17:34:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (356, '377449113418203142.jpg', '', 'crmebimage/public/store/2022/11/16/590cf53e8f0a4e269a746c4b57e159b2yhkvdyzkqn.jpg', '172211', 'jpeg', 0, 1, 3, '2022-11-16 17:34:58', '2022-11-16 17:34:58'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (357, '372405937049436209.jpg', '', 'crmebimage/public/store/2022/11/16/c97566dc471f4885bf6659abd6b7b7b8spmpickxvz.jpg', '176552', 'jpeg', 0, 1, 3, '2022-11-16 17:34:58', '2022-11-16 17:34:58'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (358, '374439947661476016.jpg', '', 'crmebimage/public/store/2022/11/16/82965a964b6147bbb1109948973f16f7vovsuhxld4.jpg', '221202', 'jpeg', 0, 1, 3, '2022-11-16 17:34:58', '2022-11-16 17:34:58'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (359, '255336364169756699.jpg', '', 'crmebimage/public/store/2022/11/16/77716879406644149d5902ef8c6533462kewq14zju.jpg', '279988', 'jpeg', 0, 1, 3, '2022-11-16 17:34:58', '2022-11-16 17:34:58'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (360, 'tmp_7d0691526b94b67c6fb309a6f527c4be.jpg', '', 'crmebimage/public/maintain/2022/11/16/84681b2761c445faa9ec8d2111c1e0d0l0qevlt54i.jpg', '616170', 'jpeg', 0, 1, -1, '2022-11-16 18:27:02', '2022-11-16 18:27:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (361, 'mf0gCRiZHGc783118a9c770ae4c5b4ac3ccd3661356f.jpeg', '', 'crmebimage/public/maintain/2022/11/16/0d94e2cafcdf447abea87c2ccc55567c2i8uxomzdm.jpeg', '3188', 'jpeg', 0, 1, -1, '2022-11-16 19:15:29', '2022-11-16 19:15:29'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (362, 'sLJ3AMFa8s8U1f1215da2dd0eb1423180c1e21c0223d.jpeg', '', 'crmebimage/public/maintain/2022/11/16/9aa6dde352c14afcbf6778d8e8c9991cc7fgmzw2pe.jpeg', '3188', 'jpeg', 0, 1, -1, '2022-11-16 19:17:32', '2022-11-16 19:17:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (363, '0pZaImYFz69379a5b8d53ac5e132106bcef3e0e3df7c.jpeg', '', 'crmebimage/public/maintain/2022/11/16/8da6bb7da2c24a95b4af5074af9f9b11izybdurpwk.jpeg', '3188', 'jpeg', 0, 1, -1, '2022-11-16 19:18:40', '2022-11-16 19:18:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (364, 'yOIrebGrbjpF3d9f7802c0a16017fbdc9016ec0db37e.jpg', '', 'crmebimage/public/maintain/2022/11/16/f3e50dde31974384968d4f59a114d2efijew9bnupo.jpg', '53672', 'jpeg', 0, 1, -1, '2022-11-16 19:19:07', '2022-11-16 19:19:07'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (365, 'k8TPnmQRhC7e3d9f7802c0a16017fbdc9016ec0db37e.jpg', '', 'crmebimage/public/maintain/2022/11/16/466bb571f62740228716429f659725a8imonlh1rz7.jpg', '53672', 'jpeg', 0, 1, -1, '2022-11-16 19:21:01', '2022-11-16 19:21:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (366, 'tmp_4e184a13dbbd6e78c92c0d04f7f27c7e.jpg', '', 'crmebimage/public/user/2022/11/16/272c1ecbcce24119b8eca5f24c0d3018z89g2zgo96.jpg', '173149', 'jpeg', 0, 1, -1, '2022-11-16 21:42:31', '2022-11-16 21:42:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (367, 'tmp_f3184a428d9620421a5fe0bc56fffc23.jpg', '', 'crmebimage/public/user/2022/11/16/12e3d24351e5404292c8b69620c898d70lb67z17kr.jpg', '390214', 'jpeg', 0, 1, -1, '2022-11-16 21:42:43', '2022-11-16 21:42:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (368, 'tmp_d75aaf1a4da66e41748e075f23c6149c.jpg', '', 'crmebimage/public/user/2022/11/16/23de801d6cfd40edbb54f4dc0db9692fzc0sf78u0v.jpg', '495542', 'jpeg', 0, 1, -1, '2022-11-16 21:42:55', '2022-11-16 21:42:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (369, 'tmp_8f969c21db7dba72d7c610b489b6c251.jpg', '', 'crmebimage/public/user/2022/11/16/67bc863dfe494ec6809b2f3646d7e7e5xeq5xwvwff.jpg', '359019', 'jpeg', 0, 1, -1, '2022-11-16 21:53:42', '2022-11-16 21:53:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (370, '企业微信截图_16685800385012.png', '', 'crmebimage/public/maintain/2022/11/17/98c3488d76da4de487400ca8083b2dcfh8par1hk71.png', '113670', 'png', 0, 1, -1, '2022-11-17 09:35:53', '2022-11-17 09:35:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (371, '企业微信截图_16685800385012.png', '', 'crmebimage/public/maintain/2022/11/17/6a8546d21a9d43499dd88ee44a415217i0frd3v8bu.png', '113670', 'png', 0, 1, -1, '2022-11-17 09:37:11', '2022-11-17 09:37:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (372, '企业微信截图_16685800385012.png', '', 'crmebimage/public/maintain/2022/11/17/edcfbd81a9734a948f4118443c4b2f3e4cb7mmt06g.png', '113670', 'png', 0, 1, -1, '2022-11-17 09:37:47', '2022-11-17 09:37:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (373, '企业微信截图_16685800385012.png', '', 'crmebimage/public/maintain/2022/11/17/d5bab6fffa304b21a41d733ae80dacf6g3j76t96yp.png', '113670', 'png', 0, 1, -1, '2022-11-17 09:39:10', '2022-11-17 09:39:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (374, '企业微信截图_16685800385012.png', '', 'crmebimage/public/maintain/2022/11/17/32d3bd9b0fbe451692cdcb32c9c3624fl9662x8z4d.png', '113670', 'png', 0, 1, -1, '2022-11-17 09:40:18', '2022-11-17 09:40:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (375, '企业微信截图_16685800385012.png', '', 'crmebimage/public/maintain/2022/11/17/d52789ac4b3b4adaac557370d41bada6z1n31g5cvw.png', '113670', 'png', 0, 1, -1, '2022-11-17 09:42:09', '2022-11-17 09:42:09'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (376, '1668649371085.png', '', 'crmebimage/public/content/2022/11/17/fb1908fae984482aa7fc36eb7f09ae2bjx0q55lfzz.png', '95593', 'png', 0, 1, 1, '2022-11-17 09:42:52', '2022-11-17 09:42:52'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (377, '企业微信截图_16685800385012.png', '', 'crmebimage/public/maintain/2022/11/17/d48d343878fe41cfa2f6c692d9db549e36prs5oq4x.png', '113670', 'png', 0, 1, -1, '2022-11-17 09:42:55', '2022-11-17 09:42:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (378, 'IGFGa5j96w3gf2347337b34dd810c7c697a07f8515ba.jpeg', '', 'crmebimage/public/maintain/2022/11/17/c22751f482f9461dabbfe378ab4b4eaf9dniygk1sk.jpeg', '3186', 'jpeg', 0, 1, -1, '2022-11-17 09:44:43', '2022-11-17 09:44:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (379, 'tmp_13ab318871b351a00934cd0211964b78.jpg', '', 'crmebimage/public/maintain/2022/11/17/7b431b785e4040f398f8594005d2b730a5s2q890qt.jpg', '616170', 'jpeg', 0, 1, -1, '2022-11-17 09:49:05', '2022-11-17 09:49:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (380, '微信图片_20221009162917.jpg', '', 'crmebimage/public/maintain/2022/11/17/c22357a362b54ac7908e7fd544a7f888hbv7n5taef.jpg', '53672', 'jpeg', 0, 1, -1, '2022-11-17 09:51:40', '2022-11-17 09:51:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (381, 'tmp_977a1ef3ae7a60bf77ab968b02a9ebb695480134f3fbb02c.jpg', '', 'crmebimage/public/user/2022/11/17/d2b53a9b70464e85b7d7797385dd24ae0yfgq5389i.jpg', '46998', 'jpeg', 0, 1, -1, '2022-11-17 10:03:28', '2022-11-17 10:03:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (382, '1668651953990.png', '', 'crmebimage/public/content/2022/11/17/d86f16015f0244848f49782f1ef499dewenwhebqu3.png', '366561', 'png', 0, 1, 1, '2022-11-17 10:25:55', '2022-11-17 10:25:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (383, '1668651964429.png', '', 'crmebimage/public/content/2022/11/17/d9d4d7c6ab7d4b65903cb87eef2d79a7bjajjavdn4.png', '223325', 'png', 0, 1, 1, '2022-11-17 10:26:05', '2022-11-17 10:26:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (384, '1668651971813.png', '', 'crmebimage/public/content/2022/11/17/ebec16889e9d49069b33253f113464c4v1uasloj1g.png', '203850', 'png', 0, 1, 1, '2022-11-17 10:26:14', '2022-11-17 10:26:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (385, '1668651981944.png', '', 'crmebimage/public/content/2022/11/17/d26e822681444ab5a3e7614162ba1793thw9tut2dz.png', '188371', 'png', 0, 1, 1, '2022-11-17 10:26:23', '2022-11-17 10:26:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (386, '1668652540590.png', '', 'crmebimage/public/content/2022/11/17/dfe13616d4904db5ae09ecafab3c05e18pmx6us2l1.png', '140195', 'png', 0, 1, 1, '2022-11-17 10:35:41', '2022-11-17 10:35:41'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (387, '1668652546921.png', '', 'crmebimage/public/content/2022/11/17/e401f19e158f44afbbb91be7fa55c7368jz5qdm4xy.png', '438853', 'png', 0, 1, 1, '2022-11-17 10:35:47', '2022-11-17 10:35:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (388, '1668652554070.png', '', 'crmebimage/public/content/2022/11/17/bf0c52e7855e4087bf386b1438222a705ymvk1sq41.png', '355033', 'png', 0, 1, 1, '2022-11-17 10:35:55', '2022-11-17 10:35:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (389, '1668652562744.png', '', 'crmebimage/public/content/2022/11/17/d8556ca6acf14795b01ff13134c0d5f6yn6buo1x8z.png', '459727', 'png', 0, 1, 1, '2022-11-17 10:36:04', '2022-11-17 10:36:04'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (390, '1668652569066.png', '', 'crmebimage/public/content/2022/11/17/ba92c8ed5e104f7eacd2a34235758fd3gqerjhxhkc.png', '278557', 'png', 0, 1, 1, '2022-11-17 10:36:10', '2022-11-17 10:36:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (391, '1.png', '', 'crmebimage/public/user/2022/11/17/10e0529198694bd088f843edaf372eb7vcdz2clikn.png', '867245', 'png', 0, 1, -1, '2022-11-17 10:53:53', '2022-11-17 10:53:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (422, '1668656963954.png', '', 'crmebimage/public/content/2022/11/17/fb535142b9654f2e8ec73dcfe851d54dr4v258g26w.png', '63648', 'png', 0, 1, 3, '2022-11-17 11:49:27', '2022-11-17 11:49:27'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (426, '1668657211859.png', '', 'crmebimage/public/content/2022/11/17/350e93cc71ee4fcd94a5f3e7b244b404h78ai1ek60.png', '62146', 'png', 0, 1, 3, '2022-11-17 11:53:32', '2022-11-17 11:53:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (433, '1668657950696.png', '', 'crmebimage/public/content/2022/11/17/638ec859385f4353970b09dbc570a70543g5f00l8z.png', '10267', 'png', 0, 1, 3, '2022-11-17 12:05:53', '2022-11-17 12:05:53'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (443, 'tmp_7d466240899a1696768d880297cad66c17ebb91bd9a4d6f2.jpg', '', 'crmebimage/public/user/2022/11/17/876d2f6387d44759aad212ab924035d0z3qejyf1qi.jpg', '31550', 'jpeg', 0, 1, -1, '2022-11-17 14:19:25', '2022-11-17 14:19:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (500, '14.png', '', 'crmebimage/public/user/2022/11/17/c33deeb7c82e42fb951d852eb1c191a1xtluea1617.png', '59228', 'png', 0, 1, -1, '2022-11-17 15:36:34', '2022-11-17 15:36:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (535, '1668681182559.png', '', 'crmebimage/public/product/2022/11/17/b173373c8eac409aafdd110fc8f85f3ac0e6q4izjm.png', '275817', 'png', 40, 1, -1, '2022-11-17 18:33:02', '2022-11-17 18:33:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (536, '1668735042813.png', '', 'crmebimage/public/content/2022/11/18/bcd69dcaf1be4dfea85ed1d03a9db776rplyfz8mex.png', '3349', 'png', 0, 1, 3, '2022-11-18 09:30:46', '2022-11-18 09:30:46'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (537, '1668736166557.png', '', 'crmebimage/public/content/2022/11/18/97bcfc3241af4928831927072fed49cd255quvwdjm.png', '2964', 'png', 0, 1, 1, '2022-11-18 09:49:26', '2022-11-18 09:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (543, 'tmp_a0a1f0178c518fc82609ac1c4f47545d57f25f70561450b7.jpg', '', 'crmebimage/public/user/2022/11/21/44b8b22d490c42fc97a6ea3494d39db0ufc531suc7.jpg', '1290469', 'jpeg', 0, 1, -1, '2022-11-21 00:01:09', '2022-11-21 00:01:09'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (544, 'tmp_f0c0437a2bf900f4c65945e86d6452e2c46f8043c54038f5.jpg', '', 'crmebimage/public/user/2022/11/21/f618d76b36ea43e18a4e425af2b16d89bw0eeovxlk.jpg', '3653158', 'jpeg', 0, 1, -1, '2022-11-21 00:01:46', '2022-11-21 00:01:46'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (545, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/ebb3a273d4c444da9bb9ae19d39de18c5w4b178vbc.jpg', '42263', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (546, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/0b0ccdc2439940bd80d7dd44a2b3a5274i65kv4f3j.jpg', '55460', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (547, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/21/deec24be37f14234ad0997d92ead730chdmelob46r.jpg', '78938', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (548, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/2f86a66859034d37b83f089e907e71c71d20psj8mj.jpg', '99543', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (549, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/397606dde55d4bb98ecf56e09e291fc67z1znkbaab.jpg', '133700', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (550, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/60e10037d62d4cfc8430023ed67359f1gvftyq0z9e.jpg', '148942', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (551, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/389439bd014948fab48f4f17111dd5f5rce8g764jf.jpg', '233310', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (552, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/c10d8416767f4269ab32d7353f9205a9xthbtsm2qc.jpg', '174469', 'jpeg', 90, 1, -1, '2022-11-21 14:46:03', '2022-11-21 14:46:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (553, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/a390dfe578ec43bb924a2f3fb87b0ab98fxk4efvql.jpg', '19930', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (554, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/f0d6f36bf8e547739ff316cc70afcb64xuxb7ylmzj.jpg', '36730', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (555, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/26f2406a3d184f0d8c35622599f88b950as11i5eu1.jpg', '38594', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (556, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/8d9528aadfab44808561e95fe7b44165dol6p0t448.jpg', '80297', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (557, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/21/8bec29fedd2444818f984125c3867056sbmc17rnb5.jpg', '56014', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (558, 'download.png', '', 'crmebimage/public/store/2022/11/21/0f1ef7fe4d934a8496aa5536c8199be87ymvusu1be.png', '65357', 'png', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (559, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/2a6f1afc523f406fb06a555e47447c28t6rckdfzdf.jpg', '101391', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (560, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/02a85a719af54ff3bd7eb391d722cbdf3v9u5nbl6x.jpg', '208570', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (561, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/848ac2371b5440b0bd141af23439e3afbrnzqs6n3v.jpg', '265211', 'jpeg', 91, 1, -1, '2022-11-21 14:52:26', '2022-11-21 14:52:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (562, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/d9ea371403f54692b13d55a7fdc7fb023nyvdpqa4y.jpg', '11053', 'jpeg', 93, 1, -1, '2022-11-21 15:02:19', '2022-11-21 15:02:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (563, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/22d9fb2adc5f49fcbd2c2b8b8e914c67cib1pcnp7x.jpg', '15711', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (564, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/7d9d6f3d5e0a42b9a54d3ded047610b9euuhlilt8o.jpg', '14139', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (565, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/8091bb2dbe6245e59f6b37a5308723b6lqso76i2p6.jpg', '12932', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (566, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/46fa4da152c344eb99bb7129497bc956ky255icg3z.jpg', '27572', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (567, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/3541e60644b842bc803f7ba06539d0eeuzkzyc1uhv.jpg', '10015', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (568, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/8de90b8645574538a4643c044b9a83b5t7tzpunwmi.jpg', '40298', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (569, 'download-8.jpg', '', 'crmebimage/public/store/2022/11/21/f39131915b1f42bb9669ff11216d7024hjbh75vy37.jpg', '23576', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (570, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/21/d11ba40104914de0bca8df42918eb0cckf14ocmlkq.jpg', '23060', 'jpeg', 93, 1, -1, '2022-11-21 15:02:20', '2022-11-21 15:02:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (571, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/5a98ef47930b4c62add60b0a7d967a213g026mkgyl.jpg', '6009', 'jpeg', 94, 1, -1, '2022-11-21 15:07:22', '2022-11-21 15:07:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (572, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/3e3e82788ace467bb47c79ce419e4a86krtu181zgg.jpg', '35366', 'jpeg', 94, 1, -1, '2022-11-21 15:07:22', '2022-11-21 15:07:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (573, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/8fa5ade60bde46909b259e13d7e32aade0i65tnkb8.jpg', '35021', 'jpeg', 94, 1, -1, '2022-11-21 15:07:22', '2022-11-21 15:07:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (574, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/4d3fad8a430748fea6e2e3651c004832rp4m7yi90o.jpg', '48152', 'jpeg', 94, 1, -1, '2022-11-21 15:07:22', '2022-11-21 15:07:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (575, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/4b17a27e0c584de2a0405e1ca01eb38ai21jgpr9nz.jpg', '92013', 'jpeg', 94, 1, -1, '2022-11-21 15:07:22', '2022-11-21 15:07:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (576, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/e4d15892052c4764b58d034224a9d8e8f2uga0qdye.jpg', '93792', 'jpeg', 94, 1, -1, '2022-11-21 15:07:22', '2022-11-21 15:07:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (577, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/ac3195ba909f4d4a993d80c53143b949wkuhk8jrh2.jpg', '246521', 'jpeg', 94, 1, -1, '2022-11-21 15:07:23', '2022-11-21 15:07:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (578, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/96d04df338334536a2e0a8e2e99a8098q10n8i3jvd.jpg', '21051', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (579, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/7e3cfd74fe134df985d1aac69d5dc05dtb4k5qdtnn.jpg', '32172', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (580, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/3babd23a904d43f39c1ba75a95120805jdwe7rfj4w.jpg', '38694', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (581, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/b81525cbb4974e84bb3765802056f7f5uk94vkdhy8.jpg', '24747', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (582, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/aa64e86f9649438abb58fca8ab9adc6aywuc8p77bf.jpg', '26506', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (583, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/21/4085a87f25654776904efb950ebb6afc0ad5fof6d8.jpg', '46035', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (584, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/0a7629a851d44f6e8c8810c3e1e0f86f7f2zhey5j6.jpg', '54832', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (585, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/e13fc82c56434afb91e80aa1779cbb9aax7xrbokwn.jpg', '80916', 'jpeg', 95, 1, -1, '2022-11-21 15:14:15', '2022-11-21 15:14:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (586, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/909f69798e234c18aa632322147cec68vdtjpqknn7.jpg', '6119', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (587, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/ed100d397f904d4a805a97bbff8322cd55cqvbn4il.jpg', '20506', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (588, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/6f89390f1c2641ec8e6c220fe88e2a0acutsqw0vg3.jpg', '5467', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (589, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/75a4092c703a452c8b7c055047421852use7t62oi5.jpg', '11070', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (590, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/9a4bd5b4163d4ebcbc4e23aaa21b616d5dww4inkmi.jpg', '13735', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (591, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/c168a021b3a74bdfa307146f11982776ly6tl73gpe.jpg', '29038', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (592, 'download-9.jpg', '', 'crmebimage/public/store/2022/11/21/7329d93f733e4a959aead0e3efb8be19qx8ifi9w2q.jpg', '30566', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (593, 'download-10.jpg', '', 'crmebimage/public/store/2022/11/21/6c2c6b8752324b29b3d0dfccb1887b55yx6mto5ge8.jpg', '18995', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (594, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/e656d75f28cf4c349c9b6b269f3c7927sq9p4relk0.jpg', '34433', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (595, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/21/f6ed610962e7414087ae64592be1d613aoa62j9wx9.jpg', '34712', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (596, 'download-8.jpg', '', 'crmebimage/public/store/2022/11/21/cd83c3d7a5ab4212ad8713b852156510koqr5z4qjs.jpg', '216963', 'jpeg', 97, 1, -1, '2022-11-21 15:23:01', '2022-11-21 15:23:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (597, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/8cea0c36df814d9b9f635cb2d3207ef0ypdhi1nujk.jpg', '24889', 'jpeg', 99, 1, -1, '2022-11-21 15:29:22', '2022-11-21 15:29:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (598, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/22cd9a6dc2204126904f85c67baeab6ebxhorkypbl.jpg', '47454', 'jpeg', 99, 1, -1, '2022-11-21 15:29:22', '2022-11-21 15:29:22'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (599, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/5ab458c9016249f58e0f783ffe54f98duv9a9jguh6.jpg', '208092', 'jpeg', 99, 1, -1, '2022-11-21 15:29:23', '2022-11-21 15:29:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (600, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/4f9c7a74b24842ada6679b100cba570fugi9h5soav.jpg', '258564', 'jpeg', 99, 1, -1, '2022-11-21 15:29:23', '2022-11-21 15:29:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (601, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/8cfad23e4fb643bf862f9da041f6c31an25qf7wrci.jpg', '19598', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (602, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/674f27c317264a09ba76a0d6110b6081mifw94g20t.jpg', '81265', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (603, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/c1d0c5ce09564c4d967f54d32931876b6sk5htdre4.jpg', '30120', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (604, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/21/398adca37a3d4051b336b4c091c126b5cjpwuvo4i5.jpg', '59205', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (605, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/e0059bb89609413ca9cf2eda0b65726aeo0e955oig.jpg', '77216', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (606, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/d7ef62be519a48978fcfedcf1edbb549l9br6iqaps.jpg', '155858', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (607, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/eaca92c4edf546618fd22363d48cac4b2md050ng45.jpg', '268690', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (608, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/2113dcc529b143e1a7bdecb73ebaaad39x49lubw5j.jpg', '268440', 'jpeg', 100, 1, -1, '2022-11-21 15:41:34', '2022-11-21 15:41:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (609, 'download-12.jpg', '', 'crmebimage/public/store/2022/11/21/e69a9316e04d45e7a2d2c0a0c32670c2f3ae4uopgs.jpg', '48324', 'jpeg', 102, 1, -1, '2022-11-21 15:49:24', '2022-11-21 15:49:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (610, 'download.png', '', 'crmebimage/public/store/2022/11/21/13aa2e8efd694fcf9cb9604b5492c8371vmfgmc1aj.png', '50808', 'png', 102, 1, -1, '2022-11-21 15:49:24', '2022-11-21 15:49:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (611, 'download-11.jpg', '', 'crmebimage/public/store/2022/11/21/49ab5304ec7040e3a22c2657532425cdegol2aho7c.jpg', '48087', 'jpeg', 102, 1, -1, '2022-11-21 15:49:25', '2022-11-21 15:49:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (612, 'download-1.jpg', '', 'crmebimage/public/store/2022/11/21/84b3cb3fab194c3aac8d55ebb13773d9bgvhn55w4m.jpg', '100963', 'jpeg', 102, 1, -1, '2022-11-21 15:49:25', '2022-11-21 15:49:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (613, 'download-7.jpg', '', 'crmebimage/public/store/2022/11/21/b69f77d0160f4339b2c55b003aae3976e0hbwd6vp5.jpg', '81658', 'jpeg', 102, 1, -1, '2022-11-21 15:49:25', '2022-11-21 15:49:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (614, 'download-9.jpg', '', 'crmebimage/public/store/2022/11/21/b06ac5a5b97a4188b64dfbcd6f628e16eila2tcr1j.jpg', '107869', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (615, 'download-5.jpg', '', 'crmebimage/public/store/2022/11/21/3a089a7c8e5c4e11a1a336918438c055rpy5b1ca86.jpg', '105604', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (616, 'download-6.jpg', '', 'crmebimage/public/store/2022/11/21/5a6f780237e240a9956c2278cbe9005fxfv65e1qow.jpg', '132605', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (617, 'download.jpg', '', 'crmebimage/public/store/2022/11/21/d42937ce0a7e426bbfc5b088bb84344cq64woebwgd.jpg', '151648', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (618, 'download-8.jpg', '', 'crmebimage/public/store/2022/11/21/ad9c772e735b4df399c57d87eaaabe80mmg3wrhwmu.jpg', '159235', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (619, 'download-3.jpg', '', 'crmebimage/public/store/2022/11/21/a841931f0ef54fe6bacc8ff4f326608a77zvpi8scx.jpg', '148209', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (620, 'download-10.jpg', '', 'crmebimage/public/store/2022/11/21/4240cd6bed7a496b81e425b291ef887ce6niwf4udu.jpg', '230399', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (621, 'download-2.jpg', '', 'crmebimage/public/store/2022/11/21/a8af853aa05445bc89572192b86fd774ceuoa88ity.jpg', '245924', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (622, 'download-4.jpg', '', 'crmebimage/public/store/2022/11/21/df688fc5a1874a97922bc692e57386e9q8hxxm7fc8.jpg', '335009', 'jpeg', 102, 1, -1, '2022-11-21 15:49:26', '2022-11-21 15:49:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (623, '1669017226513.png', '', 'crmebimage/public/store/2022/11/21/20a8670034114c1faf744259ffa31abey0v31y88wd.png', '283354', 'png', 102, 1, -1, '2022-11-21 15:53:47', '2022-11-21 15:53:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (629, 'CRMEB.png', '', 'crmebimage/public/user/2022/11/21/24fd5d3f3cf74a6cb6bf1fd50c9b9437esu5as9p9o.png', '211690', 'png', 0, 1, -1, '2022-11-21 17:46:31', '2022-11-21 17:46:31'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (633, '1669088905872.png', '', 'crmebimage/public/product/2022/11/22/29514a5893f94b739bd48124cf330a0arvok9k0vnf.png', '33695', 'png', 47, 1, -1, '2022-11-22 11:48:25', '2022-11-22 11:48:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (634, 'tmp_be1f79b756290d169e34eef0152b2753.jpg', '', 'crmebimage/public/user/2022/11/22/e77549f2e4b94ea1928369a0851020f3bzbtlkdzie.jpg', '219933', 'jpeg', 0, 1, -1, '2022-11-22 12:18:30', '2022-11-22 12:18:30'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (637, '1669169749314.png', '', 'crmebimage/public/content/2022/11/23/74065955347742dcb4f88fbb91ff3962kwcxiqyqhy.png', '13592', 'png', 0, 1, 3, '2022-11-23 10:15:49', '2022-11-23 10:15:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (638, '1669171614826.png', '', 'crmebimage/public/content/2022/11/23/7fef70524c0f4533aecb961cbade0aa6cmlyzk3wew.png', '2738', 'png', 46, 1, 2, '2022-11-23 10:46:57', '2022-11-23 10:46:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (639, '1669171658360.png', '', 'crmebimage/public/content/2022/11/23/5f9b44bde92c4de88c67ee7f4b3b5382xych7msjr1.png', '1697', 'png', 46, 1, 2, '2022-11-23 10:47:40', '2022-11-23 10:47:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (643, '1669172646958.png', '', 'crmebimage/public/content/2022/11/23/a373c41282e3407e96c0741bd0dd2cdcd6hay4f5p3.png', '2553', 'png', 0, 1, 1, '2022-11-23 11:04:23', '2022-11-23 11:04:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (644, 'tmp_72d79a26c6ee338b484ca3123332512a4baa7381afee9500.jpg', '', 'crmebimage/public/user/2022/11/24/5058630f337d4b23a57ae87a6f375dfdqfek6i1rg9.jpg', '3074866', 'jpeg', 0, 1, -1, '2022-11-24 21:13:40', '2022-11-24 21:13:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (645, '1669337355401.png', '', 'crmebimage/public/content/2022/11/25/7f656eaf28f842daa7dac0ba651acf8e5won38419y.png', '1669', 'png', 0, 1, 2, '2022-11-25 08:49:14', '2022-11-25 08:49:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (646, '1669562900430.png', '', 'crmebimage/public/content/2022/11/27/2ed83650c10c4dddbb0048d745b869afimr2wfqs0f.png', '579211', 'png', 0, 1, 2, '2022-11-27 23:28:20', '2022-11-27 23:28:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (647, '1669562954420.png', '', 'crmebimage/public/content/2022/11/27/0313da29855b41d281da71f9b523eb0bmugjq8l43o.png', '234490', 'png', 0, 1, 2, '2022-11-27 23:29:14', '2022-11-27 23:29:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (649, '1669618789803.png', '', 'crmebimage/public/product/2022/11/28/1825f69154bc459e9ed8890356e16aa2chrz21hnb0.png', '16238', 'png', 0, 1, -1, '2022-11-28 14:59:50', '2022-11-28 14:59:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (650, '待付款.gif', '', 'crmebimage/public/maintain/2022/11/29/e8aaf303a01f41a79603eb5b40b057c8emnvt6tij5.gif', '32996', 'gif', 0, 1, -1, '2022-11-29 12:14:44', '2022-11-29 12:14:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (651, '待发货.gif', '', 'crmebimage/public/maintain/2022/11/29/eefcfb47d649492e97706ded29594823n7rcx4izno.gif', '39552', 'gif', 0, 1, -1, '2022-11-29 12:15:14', '2022-11-29 12:15:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (652, '待收货.gif', '', 'crmebimage/public/maintain/2022/11/29/bc71f47a0dcd401d84918db66458a857m0zig5roqs.gif', '35511', 'gif', 0, 1, -1, '2022-11-29 12:15:52', '2022-11-29 12:15:52'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (653, '待评价.gif', '', 'crmebimage/public/maintain/2022/11/29/a8f3e048adaf44eea0778e47aa03ff14jp8lnyhk7j.gif', '34399', 'gif', 0, 1, -1, '2022-11-29 12:16:14', '2022-11-29 12:16:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (654, '已完成.gif', '', 'crmebimage/public/maintain/2022/11/29/4607e32cb4b445a397adc185451e3519bxxg0j9de1.gif', '35080', 'gif', 0, 1, -1, '2022-11-29 12:16:37', '2022-11-29 12:16:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (655, 'tmp_615c0b084ec8e028b0eea75bb8b8b2de58fa86e564a1dcb2.jpg', '', 'crmebimage/public/maintain/2022/11/30/9602982bf6874479a29496c1605a67aaqcgb27otbd.jpg', '2842', 'jpeg', 0, 1, -1, '2022-11-30 10:04:35', '2022-11-30 10:04:35'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (656, 'tmp_7879a3a41adf6441d922cef395604b0b27d642e282f77bf0.jpg', '', 'crmebimage/public/maintain/2022/11/30/c82a692161fb422199ed04144b277aa61ge0onaaz0.jpg', '2842', 'jpeg', 0, 1, -1, '2022-11-30 10:05:43', '2022-11-30 10:05:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (657, 'tmp_0425a6ada5d6e0c73ff3ebd665e15dcf.jpg', '', 'crmebimage/public/maintain/2022/11/30/147741c232ed413a86723f356be2b47bs54hy4jid6.jpg', '4852', 'jpeg', 0, 1, -1, '2022-11-30 21:58:21', '2022-11-30 21:58:21'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (658, '1669857967641.png', '', 'crmebimage/public/product/2022/12/01/b441836d29194ae9a6529a8ef91fa2d18o7lmb9pxq.png', '246378', 'png', 0, 1, -1, '2022-12-01 09:26:04', '2022-12-01 09:26:04'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (659, 'tmp_5371177f80f81da10bd385a371edaa0c.jpg', '', 'crmebimage/public/maintain/2022/12/01/b4b674c9b9c14357bb4a47dd2efbf428a3jexfkwya.jpg', '237114', 'jpeg', 0, 1, -1, '2022-12-01 09:46:48', '2022-12-01 09:46:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (660, 'tmp_8e917ab74bb22737cd2c70433518ac12.jpg', '', 'crmebimage/public/maintain/2022/12/01/aa1145c0493b4d79908b64311ccd7bafve5joewhw8.jpg', '3023', 'jpeg', 0, 1, -1, '2022-12-01 11:38:32', '2022-12-01 11:38:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (661, 'tmp_47766beccd3a4077adb6c83ee93131fb7cd363afdfaaa941.jpg', '', 'crmebimage/public/maintain/2022/12/01/453c2f6733654931a681eeaf73006f5egf46v77x9v.jpg', '3462', 'jpeg', 0, 1, -1, '2022-12-01 12:29:23', '2022-12-01 12:29:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (662, 'tmp_20374b36d5b37824f32ef8ff751064ea4eb6a46b59ca1589.jpg', '', 'crmebimage/public/product/2022/12/01/71d1660d0e6543db91e599f1ed183c3d0t49go5tvc.jpg', '146489', 'jpeg', 1, 1, -1, '2022-12-01 16:26:42', '2022-12-01 16:26:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (663, 'tmp_3080b8d571e0ffc417eabaade8a4f5172d1d8cab07d7a670.jpg', '', 'crmebimage/public/maintain/2022/12/01/acbd68fa1eb8424598403f22f2d0a823637jyhh1fp.jpg', '2960', 'jpeg', 0, 1, -1, '2022-12-01 17:19:43', '2022-12-01 17:19:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (664, 'tmp_bb9d5d498527da5010a7079c450338267e591e14b298a1b8.jpg', '', 'crmebimage/public/user/2022/12/01/0f966f790bb84862965b37993b7ad6b77ifqaee2uc.jpg', '917410', 'jpeg', 0, 1, -1, '2022-12-01 17:26:14', '2022-12-01 17:26:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (665, 'tmp_4a4cb61bde630900d9b9d86a5753559af6daa08dbbc96212.jpg', '', 'crmebimage/public/user/2022/12/01/f602cea8680248f9a7b338da1840c38drx2sgve79d.jpg', '69027', 'jpeg', 0, 1, -1, '2022-12-01 17:26:33', '2022-12-01 17:26:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (666, 'tmp_f87bfcc0689b36825081a4ebc24d35a39f3d6876d6d88d28.jpg', '', 'crmebimage/public/maintain/2022/12/02/be944f5bec7f4bd5a623c6c88f10df86mio8n4wdyc.jpg', '1417', 'jpeg', 0, 1, -1, '2022-12-02 20:51:37', '2022-12-02 20:51:37'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (667, '1670164337000.png', '', 'crmebimage/public/content/2022/12/04/54be1740c22743a6b1f78d122576e563u1azf8a2rw.png', '281545', 'png', 0, 1, -1, '2022-12-04 22:32:17', '2022-12-04 22:32:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (668, '1670213987280.png', '', 'crmebimage/public/product/2022/12/05/53aaef8b028f4769becad1e7cf880c02da38d19rne.png', '71676', 'png', 0, 2, -1, '2022-12-05 12:19:48', '2022-12-05 12:19:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (669, 'tmp_d03d70060713950c26a1ebdfd7b5de44.jpg', '', 'crmebimage/public/maintain/2022/12/05/4d06c8c74da24207b08a09ab03500fab4qmog0wsrx.jpg', '2340', 'jpeg', 0, 2, -1, '2022-12-05 14:48:10', '2022-12-05 14:48:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (670, 'tmp_027005d81ef4e303f3738ab5ba79f5c6.jpg', '', 'crmebimage/public/maintain/2022/12/05/50cb61da2e4e40c198dff9c142bcc9d0axrp8qklka.jpg', '2340', 'jpeg', 0, 2, -1, '2022-12-05 14:48:44', '2022-12-05 14:48:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (671, 'tmp_d34da2d2492f795365bf4ce75bd06562.jpg', '', 'crmebimage/public/maintain/2022/12/06/ecf1c18a8fef421ab449bfaec8c16e296ms1v1l94x.jpg', '6995', 'jpeg', 0, 2, -1, '2022-12-06 02:18:32', '2022-12-06 02:18:32'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (672, 'tmp_0a73f91a8d71a463c6e721a61f2401a42f27bc15e1742b81.jpg', '', 'crmebimage/public/maintain/2022/12/06/33b494222cfb46ee9eff2eb711e5018dr3jjlvj7jy.jpg', '5175', 'jpeg', 0, 2, -1, '2022-12-06 22:08:41', '2022-12-06 22:08:41'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (673, 'tmp_a64be817386e3345d7ff83373db88f9b6562c67291f6f228.jpg', '', 'crmebimage/public/maintain/2022/12/06/977d4e5aee94415f985afdf477725a696eizzgsqmu.jpg', '5175', 'jpeg', 0, 2, -1, '2022-12-06 22:09:24', '2022-12-06 22:09:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (674, 'WechatIMG4194.jpeg', '', 'crmebimage/public/user/2022/12/08/b6d7d140ba2245e084a978db6b79a3dca8ym3jfvz2.jpeg', '221357', 'jpeg', 0, 2, -1, '2022-12-08 16:34:21', '2022-12-08 16:34:21'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (675, 'WechatIMG4194.jpeg', '', 'crmebimage/public/user/2022/12/08/216739523f2f47e395150924bef890b0pdiv2b57bc.jpeg', '221357', 'jpeg', 0, 2, -1, '2022-12-08 16:34:25', '2022-12-08 16:34:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (676, 'WechatIMG4194.jpeg', '', 'crmebimage/public/user/2022/12/08/cc8c021ffa4045b581055c4ffb41c1954oe7eory7k.jpeg', '221357', 'jpeg', 0, 2, -1, '2022-12-08 16:34:30', '2022-12-08 16:34:30'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (677, 'WechatIMG4194.jpeg', '', 'crmebimage/public/user/2022/12/08/8baa8edbbd2b4bd6b078df6013bc03a5wen09jd1zq.jpeg', '221357', 'jpeg', 0, 2, -1, '2022-12-08 16:34:35', '2022-12-08 16:34:35'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (678, 'WechatIMG4194.jpeg', '', 'crmebimage/public/user/2022/12/08/27a970596a7c486e9de0a0dcaf7392c66um9u71st3.jpeg', '221357', 'jpeg', 0, 2, -1, '2022-12-08 16:34:40', '2022-12-08 16:34:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (679, 'WechatIMG4194.jpeg', '', 'crmebimage/public/user/2022/12/08/a95c3ee6be524a1a87c11d6a89b576c1nnmh2dpgpm.jpeg', '221357', 'jpeg', 0, 2, -1, '2022-12-08 16:34:44', '2022-12-08 16:34:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (680, 'WechatIMG4194.jpeg', '', 'crmebimage/public/user/2022/12/08/21f70a4dcec440a8b15b2345811db23eibbbsb4n68.jpeg', '221357', 'jpeg', 0, 2, -1, '2022-12-08 16:34:49', '2022-12-08 16:34:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (681, 'tmp_d5f7a21dac17c204a40d587f22c017491919cde9e3c25f1b.jpg', '', 'crmebimage/public/maintain/2022/12/09/ecef6aa6f54d499bbdc22613c05e421d8n77flyelx.jpg', '4906', 'jpeg', 0, 2, -1, '2022-12-09 02:10:56', '2022-12-09 02:10:56'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (682, 'tmp_156fc1b35cff2e165211bca502ae0ea22289100569dbdae1.jpg', '', 'crmebimage/public/maintain/2022/12/09/4d621aafa5964462afdc2e819d4e5d83f6utnh03gt.jpg', '3805', 'jpeg', 0, 2, -1, '2022-12-09 02:11:26', '2022-12-09 02:11:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (683, 'gh_93826171c311_258.jpg', '', 'crmebimage/public/finance/2022/12/09/f51ee6151bce48ac9046637c564726e0t844vpjj9v.jpg', '50672', 'jpeg', 0, 2, -1, '2022-12-09 11:58:54', '2022-12-09 11:58:54'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (684, 'tmp_356770233ac38aa7171c9abbd3c62146.jpg', '', 'crmebimage/public/maintain/2022/12/12/96a7b4092f304c28b6a92bf758e8bebcoho19yjz90.jpg', '4651', 'jpeg', 0, 2, -1, '2022-12-12 10:51:17', '2022-12-12 10:51:17'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (685, 'tmp_f58332a39baad15ea4b031b6848554b70ae6cc80287c4c5d.jpg', '', 'crmebimage/public/maintain/2022/12/13/2aa24bfbe9c24e5fb29c5635bf7395a96xb0xvh3sp.jpg', '2800', 'jpeg', 0, 2, -1, '2022-12-13 17:05:12', '2022-12-13 17:05:12'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (686, '1669366919-compressed-IMG_1805.JPG', '', 'crmebimage/public/maintain/2022/12/14/582ad135eeb9430792ae1400aeb0de2bhgu1epq1rm.JPG', '166637', 'jpeg', 0, 2, -1, '2022-12-14 11:15:15', '2022-12-14 11:15:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (687, '406d729b84ed4ec9a2171bfcf6fd0634ughzbz9kfi.jpg', '', 'crmebimage/public/maintain/2022/12/14/ed585a4eb28d4bf0b7ee143e31fa2bd6xyy6ececdl.jpg', '73725', 'jpeg', 105, 2, -1, '2022-12-14 14:17:34', '2022-12-14 14:17:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (688, 'efb1e4e7fe604fe1988b4213ce08cb11tdsyijtd2r.jpg', '', 'crmebimage/public/maintain/2022/12/14/d779d8da0b5341448ac4de1e3bd06f1awjp2bo8u95.jpg', '80741', 'jpeg', 105, 2, -1, '2022-12-14 14:17:34', '2022-12-14 14:17:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (689, '755bf516b1ca4b6db3bfeaa4dd5901cdh71kob20re.jpg', '', 'crmebimage/public/maintain/2022/12/14/26d77b4617e04431984e98cadd9c127ccz76143bje.jpg', '129708', 'jpeg', 105, 2, -1, '2022-12-14 14:17:34', '2022-12-14 14:17:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (690, 'tmp_9b95a120416f85f1b9a1472b6b6291a64baa9e1d1318ba0e.jpg', '', 'crmebimage/public/maintain/2022/12/18/07328ef37b4b4d629949e324c82b4cadmeo8gh45yu.jpg', '2122', 'jpeg', 0, 2, -1, '2022-12-18 15:27:26', '2022-12-18 15:27:26'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (691, 'tmp_e216ecfdcc0703284a00d21ab0a5fad3d5068bad89d9fc21.jpg', '', 'crmebimage/public/maintain/2022/12/18/ae190061593d4226b6dfc9d5e6322d7cl580kz2w9i.jpg', '2123', 'jpeg', 0, 2, -1, '2022-12-18 15:27:43', '2022-12-18 15:27:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (692, 'tmp_664c8804edd56ab8fa8ef39b7c17b476.jpg', '', 'crmebimage/public/maintain/2022/12/25/d74e30a6ba5c4172bb1c6eeda370ad4crktfi3w8if.jpg', '5874', 'jpeg', 0, 2, -1, '2022-12-25 10:25:27', '2022-12-25 10:25:27'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (693, 'tmp_9066c9c34d94bbaebf0da44127fa8d4e1cffcf714fe2ee42.jpg', '', 'crmebimage/public/maintain/2022/12/26/34486a43eed745098ffffb7cb97d57bey7jc983uzt.jpg', '7188', 'jpeg', 0, 2, -1, '2022-12-26 21:08:38', '2022-12-26 21:08:38'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (694, 'tmp_ac4179b0b1d44eeacefdbaed9c88ac6025c2ecbfb411547b.jpg', '', 'crmebimage/public/maintain/2022/12/26/5fe2128f3e154a31bef82adbe27eb49dcwkyultl5y.jpg', '7189', 'jpeg', 0, 2, -1, '2022-12-26 21:09:27', '2022-12-26 21:09:27'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (695, 'tmp_11ebfed8b9675b5d5c999dd51d321a0e.jpg', '', 'crmebimage/public/user/2022/12/29/d2c375486b6f42e6b4c3088c9362669bm3co8613r9.jpg', '501830', 'jpeg', 0, 2, -1, '2022-12-29 19:38:42', '2022-12-29 19:38:42'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (696, '1672315203149.png', '', 'crmebimage/public/product/2022/12/29/c24690c9a04844df9ac9afe307ec047cv9hq0obs13.png', '66570', 'png', 0, 2, 2, '2022-12-29 20:00:03', '2022-12-29 20:00:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (697, 'tmp_160d89bb4d473b29d978011076327ab0eead69f92eb93f27.jpg', '', 'crmebimage/public/maintain/2022/12/31/d40d272212254bbea9e16076b75e8e34irux12j1sq.jpg', '6076', 'jpeg', 0, 2, -1, '2022-12-31 14:45:24', '2022-12-31 14:45:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (698, 'tmp_b2f72e2ab80b8f3894c53e5fdfe5e7ce94fc9a16e7f2b472.jpg', '', 'crmebimage/public/maintain/2022/12/31/a27f516f51ec49c3b5c681697b91525bso27oafpvw.jpg', '6076', 'jpeg', 0, 2, -1, '2022-12-31 14:46:01', '2022-12-31 14:46:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (699, 'tmp_7d9bb058bd2b940b976cef81c26873571964126cc2260205.jpg', '', 'crmebimage/public/maintain/2023/01/07/9e49a8b5530a4e37916bff9643f833c9030ml7g3xt.jpg', '6332', 'jpeg', 0, 2, -1, '2023-01-07 19:34:33', '2023-01-07 19:34:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (700, '1673400402286.png', '', 'crmebimage/public/content/2023/01/11/cd26003e6edd40b09d0486e5bb74c7c1wqltgbb205.png', '971614', 'png', 0, 2, -1, '2023-01-11 09:27:01', '2023-01-11 09:27:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (701, '1673400707431.png', '', 'crmebimage/public/content/2023/01/11/bcd7d76b3ac947ddb8374edb106126985nxurw8m9w.png', '7881', 'png', 0, 2, -1, '2023-01-11 09:31:50', '2023-01-11 09:31:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (702, '1673400743179.png', '', 'crmebimage/public/content/2023/01/11/d23b4196d3b54de1b9c5547e19115d0d7wsyl8vy7c.png', '9062', 'png', 0, 2, -1, '2023-01-11 09:32:25', '2023-01-11 09:32:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (703, '1673400770079.png', '', 'crmebimage/public/content/2023/01/11/69ece325d44a4957ae6e10d70530143cwmegq12ldc.png', '11253', 'png', 0, 2, -1, '2023-01-11 09:33:03', '2023-01-11 09:33:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (704, '1673400821448.png', '', 'crmebimage/public/content/2023/01/11/b64565e0610f4f568d555923c950cedc35jnf1cu8x.png', '3922', 'png', 0, 2, -1, '2023-01-11 09:33:43', '2023-01-11 09:33:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (705, '1673400841346.png', '', 'crmebimage/public/content/2023/01/11/97416bdb328645758baf320e6671090dx23fa2wr92.png', '11098', 'png', 0, 2, -1, '2023-01-11 09:34:04', '2023-01-11 09:34:04'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (706, '1.png', '', 'crmebimage/public/content/2023/01/13/a839e2751f864888a24ba06b6ecbf1cefjckuujlzd.png', '919377', 'png', 0, 2, 2, '2023-01-13 10:11:56', '2023-01-13 10:11:56'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (707, '2.png', '', 'crmebimage/public/content/2023/01/13/410c2e46e04b46c2ae92adadea44949ci6hprdd7au.png', '743305', 'png', 0, 2, 2, '2023-01-13 10:11:57', '2023-01-13 10:11:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (708, 'tmp_ec81237fe69e051b2aad224b92cd3243.jpg', '', 'crmebimage/public/maintain/2023/01/14/4e113d43954247618b8432685a0425670ypx8bnbo3.jpg', '2675', 'jpeg', 0, 2, -1, '2023-01-14 12:20:35', '2023-01-14 12:20:35'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (709, 'tmp_650040511598647a6601f004c8a8ec5d.jpg', '', 'crmebimage/public/maintain/2023/01/14/dec286ddcafa47fdbbea5e4bf5b38f32p6ecx56ucq.jpg', '2675', 'jpeg', 0, 2, -1, '2023-01-14 12:24:03', '2023-01-14 12:24:03'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (710, 'tmp_eb0e25631d65d4c8402692f463349028.jpg', '', 'crmebimage/public/maintain/2023/01/14/718475e1cb7b4c12b78c2954f877559ev8848db6uw.jpg', '2675', 'jpeg', 0, 2, -1, '2023-01-14 12:27:50', '2023-01-14 12:27:50'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (711, '185af21540f_9bf.jpeg', '', 'crmebimage/public/maintain/2023/01/14/c3fd8534d2054500be4bba7384d0d802tw6z9ec03m.jpeg', '2698', 'jpeg', 0, 2, -1, '2023-01-14 15:14:36', '2023-01-14 15:14:36'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (712, '1673863151001.png', '', 'crmebimage/public/content/2023/01/16/8f625a2f2db54fbf90932cdf53b3070coj8u5b85at.png', '138457', 'png', 0, 2, 2, '2023-01-16 17:59:06', '2023-01-16 17:59:06'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (713, 'IMG_3139 (2).JPG', '', 'crmebimage/public/maintain/2023/01/19/66e3c10ab2bd426b8838245af30d14a3jbblmbfs69.JPG', '134640', 'jpeg', 0, 2, -1, '2023-01-19 15:34:15', '2023-01-19 15:34:15'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (714, '1674886971305.png', '', 'crmebimage/public/store/2023/01/28/a0e077c0ff59421cb332dbaa971e7193wr9l0v2s5l.png', '386002', 'png', 0, 2, -1, '2023-01-28 14:22:55', '2023-01-28 14:22:55'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (715, '[奋斗].mp4', '', 'crmebimage/public/maintain/2023/01/30/6e992e7e7503477081a316d2987d3a72iyp5sbdwh7.mp4', '5010678', 'video/mp4', 0, 2, -1, '2023-01-30 10:00:08', '2023-01-30 10:00:08'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (716, 'tmp_98dff60e26234a16df19c16b4260d16f950098564a4dd13d.jpg', '', 'crmebimage/public/user/2023/02/05/390cf5966f534ac28ace4f91ead5f34cxyn3wmri22.jpg', '65976', 'jpeg', 0, 2, -1, '2023-02-05 22:35:41', '2023-02-05 22:35:41'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (717, '奔腾.png', '', 'crmebimage/public/maintain/2023/02/10/3a789eda727b4023b32f7182cdfbf5c0hl2w730c5p.png', '1130448', 'png', 0, 2, -1, '2023-02-10 14:11:02', '2023-02-10 14:11:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (718, '1676086097778.png', '', 'crmebimage/public/product/2023/02/11/8c965494539e4b16b1045071f4762e3fa7qy7b1ce1.png', '49423', 'png', 0, 2, 2, '2023-02-11 11:28:18', '2023-02-11 11:28:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (719, 'tmp_70aa016f31c57b370974eb056f17ca4f.jpg', '', 'crmebimage/public/maintain/2023/02/11/484928e652fa44878482560c460f8c7f9syhmff2ng.jpg', '3393', 'jpeg', 0, 2, -1, '2023-02-11 20:34:07', '2023-02-11 20:34:07'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (720, 'tmp_ead861b9d09e57a2595f233434381890.jpg', '', 'crmebimage/public/maintain/2023/02/11/9d794542903349a08e4e624bfcebc96c7riac4q2l8.jpg', '3393', 'jpeg', 0, 2, -1, '2023-02-11 20:34:11', '2023-02-11 20:34:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (721, 'tmp_754d22ed32151e71fc8de26f6a736d3adf6016797c5a238d.jpg', '', 'crmebimage/public/user/2023/02/12/ad11083ada02423badebe22dccce1d7brgufghvpg7.jpg', '80909', 'jpeg', 0, 2, -1, '2023-02-12 08:54:46', '2023-02-12 08:54:46'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (732, 'fenwei.png', '', 'crmebimage/public/content/2023/02/14/4dfd6b5f75934cf9b726a21399a198ff651mykj5i1.png', '1412', 'png', 68, 2, -1, '2023-02-14 10:03:00', '2023-02-14 10:03:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (733, 'shouwei.png', '', 'crmebimage/public/content/2023/02/14/5f1a0ce90fc84bc8ac410a9292a45ff94eiitroe6v.png', '1661', 'png', 68, 2, -1, '2023-02-14 10:03:00', '2023-02-14 10:03:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (734, 'wowei.png', '', 'crmebimage/public/content/2023/02/14/5f86be996de9460cb23ca4e4ce53a4ec9eicdiud3q.png', '1328', 'png', 68, 2, -1, '2023-02-14 10:03:00', '2023-02-14 10:03:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (735, 'gouxuan.png', '', 'crmebimage/public/content/2023/02/14/dd27dd6a45724b49b33d819474583258yggg0m2hzv.png', '2121', 'png', 68, 2, -1, '2023-02-14 10:03:00', '2023-02-14 10:03:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (736, 'merchantwei.png', '', 'crmebimage/public/content/2023/02/14/f245e9e3ae0d472fbef59eb86e95f8a6e577iwqyet.png', '1684', 'png', 68, 2, -1, '2023-02-14 10:03:00', '2023-02-14 10:03:00'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (737, 'woxuan.png', '', 'crmebimage/public/content/2023/02/14/a76f3b898dea4ba0b02442e408cd78ac59rpra88sx.png', '1335', 'png', 68, 2, -1, '2023-02-14 10:03:01', '2023-02-14 10:03:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (738, 'gouwei.png', '', 'crmebimage/public/content/2023/02/14/aaf95be4c58e4eac952a9f47bb392c341ev09rfjzx.png', '1941', 'png', 68, 2, -1, '2023-02-14 10:03:01', '2023-02-14 10:03:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (739, 'shouxuan.png', '', 'crmebimage/public/content/2023/02/14/5baf5cbb58c64d26b306d06921760139j31sel0snj.png', '2392', 'png', 68, 2, -1, '2023-02-14 10:03:01', '2023-02-14 10:03:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (740, 'merchantxuan.png', '', 'crmebimage/public/content/2023/02/14/7cf9e941969547559bec99dddead6442l0q4oxwnth.png', '1600', 'png', 68, 2, -1, '2023-02-14 10:03:01', '2023-02-14 10:03:01'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (741, 'fenxuan.png', '', 'crmebimage/public/content/2023/02/14/9f6cb582f5504ae98000fa149c4ce726vdzk7v7o3y.png', '1387', 'png', 68, 2, -1, '2023-02-14 10:03:36', '2023-02-14 10:03:36'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (742, '1676345064576.png', '', 'crmebimage/public/activitystyle/2023/02/14/9e2682b4d1bf4562b217e9740161c1bf9uflcwvaot.png', '70312', 'png', 0, 2, -1, '2023-02-14 11:24:25', '2023-02-14 11:24:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (743, '1676345073437.png', '', 'crmebimage/public/activitystyle/2023/02/14/8b057c5d0492463ab554e45b78e3e7e92oslodde9j.png', '66887', 'png', 0, 2, -1, '2023-02-14 11:24:34', '2023-02-14 11:24:34'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (744, '1676345281941.png', '', 'crmebimage/public/activitystyle/2023/02/14/f00ef0b3e10c4a3fae7e4fae0e978106ldukkxjeis.png', '58823', 'png', 0, 2, -1, '2023-02-14 11:28:02', '2023-02-14 11:28:02'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (746, '1676348727961.png', '', 'crmebimage/public/activitystyle/2023/02/14/84647c31e74940e2a4749f774990a785oe5hdvtp4z.png', '99558', 'png', 0, 2, -1, '2023-02-14 12:25:28', '2023-02-14 12:25:28'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (747, '1676348737361.png', '', 'crmebimage/public/activitystyle/2023/02/14/39a164ca64654e4db1ee1383ba24db4eryzku8fhoa.png', '104471', 'png', 0, 2, -1, '2023-02-14 12:25:40', '2023-02-14 12:25:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (748, '1676348775944.png', '', 'crmebimage/public/activitystyle/2023/02/14/9bed6d7c920f49dbb50cb796f7faf631xxzukf8m4r.png', '58348', 'png', 0, 2, -1, '2023-02-14 12:26:16', '2023-02-14 12:26:16'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (749, '1676348784861.png', '', 'crmebimage/public/activitystyle/2023/02/14/2e149e3b38ae4c9e9cd7af4c2002fc2ebbhqlf0dp6.png', '48889', 'png', 0, 2, -1, '2023-02-14 12:26:25', '2023-02-14 12:26:25'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (750, '1676348859734.png', '', 'crmebimage/public/activitystyle/2023/02/14/ac58ea192cbf4ad6a56c8d4f3c69ae02brmiteiesc.png', '30091', 'png', 0, 2, -1, '2023-02-14 12:27:40', '2023-02-14 12:27:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (751, '1676348867543.png', '', 'crmebimage/public/activitystyle/2023/02/14/7c7cd02e6c3c4e1f85b8ee174364e1c4ghbvr0qahg.png', '51098', 'png', 0, 2, -1, '2023-02-14 12:27:48', '2023-02-14 12:27:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (752, '1676348876158.png', '', 'crmebimage/public/activitystyle/2023/02/14/8dd7050008884f2ca5869338fe419014h85uft7itw.png', '53976', 'png', 0, 2, -1, '2023-02-14 12:27:56', '2023-02-14 12:27:56'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (753, '1676348885830.png', '', 'crmebimage/public/activitystyle/2023/02/14/2f7199393aed4f7c8ce33fc710b11979i2ld4dsn1o.png', '36131', 'png', 0, 2, -1, '2023-02-14 12:28:06', '2023-02-14 12:28:06'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (754, '1676348891276.png', '', 'crmebimage/public/activitystyle/2023/02/14/21309873afc24d90a760bd90aebe771azthx0bwssd.png', '19274', 'png', 0, 2, -1, '2023-02-14 12:28:11', '2023-02-14 12:28:11'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (755, 'tmp_eec37895d5c255679db2d2d5bf8909cc79823710efa5c5ce.jpg', '', 'crmebimage/public/user/2023/02/14/e8fc88d527174f3abe6793b350ab1ecejdsax6u6qy.jpg', '213893', 'jpeg', 0, 2, -1, '2023-02-14 14:44:29', '2023-02-14 14:44:29'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (756, '1676362918514_image_editor_1676303548079.jpg', '', 'crmebimage/public/maintain/2023/02/14/c6c733df792e4d49981dc2b9cbd2246bt8xdneb4w1.jpg', '80879', 'jpeg', 0, 2, -1, '2023-02-14 16:21:59', '2023-02-14 16:21:59'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (757, 'tmp_4a4442048a7d2562703dd757b35e3bd606ca1a7acb8b71a7.jpg', '', 'crmebimage/public/maintain/2023/02/14/077902504dcc44f99ed3c5347b324928zzchxl7wwy.jpg', '4003', 'jpeg', 0, 2, -1, '2023-02-14 16:56:48', '2023-02-14 16:56:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (758, '1676425102996_IMG_20230205_200053.jpg', '', 'crmebimage/public/maintain/2023/02/15/5a366a4d716846e3b9620675500ffb037oy880m371.jpg', '105739', 'jpeg', 0, 2, -1, '2023-02-15 09:38:24', '2023-02-15 09:38:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (759, 'photo_001.jpg', '', 'crmebimage/public/user/2023/02/15/f94c8183f64b41bcb2a0ab9ba8e332bczmib2s9mz6.jpg', '235027', 'jpeg', 0, 2, -1, '2023-02-15 10:30:21', '2023-02-15 10:30:21'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (760, 'tmp_2b794032722e7bf8d9f32d39bdc92da4.jpg', '', 'crmebimage/public/user/2023/02/15/16c5de3c3b8b4043aa2220fe7ae82f21qrcjzgatmb.jpg', '211672', 'jpeg', 0, 2, -1, '2023-02-15 14:16:24', '2023-02-15 14:16:24'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (761, 'tmp_2f090c3e2d23d28cb36aabe4accffa07f10f8d76b8d3b50c.jpg', '', 'crmebimage/public/maintain/2023/02/15/1051115f265b4e01a1f766a89fac79cdhdjx5h63ap.jpg', '3811', 'jpeg', 0, 2, -1, '2023-02-15 15:12:29', '2023-02-15 15:12:29'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (762, 'tmp_c2751ed8a7bba40b0d1704f772f931758d7c7c89512cd974.jpg', '', 'crmebimage/public/maintain/2023/02/15/43d81dc1e7314e09bf47ffed3a76d814aw90l36g46.jpg', '3813', 'jpeg', 0, 2, -1, '2023-02-15 15:12:43', '2023-02-15 15:12:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (763, '1676448523653_IMG_20230205_200053.jpg', '', 'crmebimage/public/user/2023/02/15/c9d80faca4b540b297641a3651befdb94ny48evpiu.jpg', '105739', 'jpeg', 0, 2, -1, '2023-02-15 16:08:44', '2023-02-15 16:08:44'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (764, '1676519050167.png', '', 'crmebimage/public/product/2023/02/16/0a4361bc09814c98b5d9cf189652f0f0jlpjvf91oq.png', '9347', 'png', 0, 2, -1, '2023-02-16 11:44:10', '2023-02-16 11:44:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (765, '微信图片_20230210102516.jpg', '', 'crmebimage/public/maintain/2023/02/16/cba10a77abf2404fb90f157400e08c3bfilukfrtah.jpg', '121483', 'jpeg', 51, 2, -1, '2023-02-16 11:47:52', '2023-02-16 11:47:52'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (766, '微信截图_20230215165110.png', '', 'crmebimage/public/maintain/2023/02/16/ec0503c2d95a4d51ba5abab20a29cbbf5fw6iygjj6.png', '9334', 'png', 51, 2, -1, '2023-02-16 11:48:19', '2023-02-16 11:48:19'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (767, '微信截图_20230215165110.png', '', 'crmebimage/public/maintain/2023/02/16/afee4073410546e7980db4af26f4597177w65dkj7d.png', '9334', 'png', 51, 2, -1, '2023-02-16 11:48:30', '2023-02-16 11:48:30'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (768, '微信图片_20230210102516.jpg', '', 'crmebimage/public/maintain/2023/02/16/b5cbb17054134d27b2749ac7b151387921jt54w4z0.jpg', '121483', 'jpeg', 51, 2, -1, '2023-02-16 11:48:30', '2023-02-16 11:48:30'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (769, 'tmp_519f1e0db5f9878c7696a806954342a007cf91d11afadd2b.jpg', '', 'crmebimage/public/user/2023/02/16/71c83eecc509466ea5ebf45719175fcfcvcqb8yb61.jpg', '155242', 'jpeg', 0, 2, -1, '2023-02-16 11:48:49', '2023-02-16 11:48:49'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (770, 'tmp_d9636f2cf04c0cf33ca0e03416f2c97b.jpg', '', 'crmebimage/public/maintain/2023/02/16/62421110a5cf4a20abe9ef0507a114b1xw0g5esh2t.jpg', '3391', 'jpeg', 0, 2, -1, '2023-02-16 17:30:47', '2023-02-16 17:30:47'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (771, 'tmp_02e6db6616552c1a6b02a650bc2d1c29.jpg', '', 'crmebimage/public/maintain/2023/02/16/94e76bff6af24e3788ee38d9135c93c7rx0kda17oj.jpg', '8142', 'jpeg', 0, 2, -1, '2023-02-16 17:31:07', '2023-02-16 17:31:07'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (772, 'tmp_6adfcda2c811211770838edffea98728.jpg', '', 'crmebimage/public/maintain/2023/02/16/65c6b4722de841cfad43ad46f9114e47fmbw2wsugd.jpg', '8118', 'jpeg', 0, 2, -1, '2023-02-16 17:31:20', '2023-02-16 17:31:20'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (773, 'tmp_e60ee060f3269992f11a4039fe90860e.jpg', '', 'crmebimage/public/maintain/2023/02/16/53b065074e9d418c87393c550f5fe132byqf2a47lt.jpg', '3393', 'jpeg', 0, 2, -1, '2023-02-16 17:31:45', '2023-02-16 17:31:45'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (774, 'tmp_b97c8e842287b7fd59be07101736fa41.jpg', '', 'crmebimage/public/maintain/2023/02/16/94f88755943340948005b873cf9f12ecjnu1mxuq8v.jpg', '3391', 'jpeg', 0, 2, -1, '2023-02-16 17:31:48', '2023-02-16 17:31:48'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (775, 'tmp_693fb5f4eb8e4e604e994d601e55b4e3.jpg', '', 'crmebimage/public/maintain/2023/02/18/dacb4f44e0a04b6f99d1c995c179335bkjm710ab9a.jpg', '4833', 'jpeg', 0, 2, -1, '2023-02-18 10:00:57', '2023-02-18 10:00:57'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (776, '1676689882409_microMsg.tmp.1671507590116.jpg', '', 'crmebimage/public/maintain/2023/02/18/3a80f059aa7c4bbd89909b58605741dcq2pklurjv2.jpg', '37944', 'jpeg', 0, 2, -1, '2023-02-18 11:11:21', '2023-02-18 11:11:21'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (777, '1676689924836_Camera_XHS_16714219829191000g0081oek1o1mdc03g5o8e6hog97a397p658o.jpg', '', 'crmebimage/public/maintain/2023/02/18/fe7413ac41554bf88bc40057925a1100wuxpb1lukk.jpg', '50692', 'jpeg', 0, 2, -1, '2023-02-18 11:12:04', '2023-02-18 11:12:04'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (778, '1676689943703_Camera_XHS_16714216367621000g0081mkel42odc02g4burese6afrlbqt5b70.jpg', '', 'crmebimage/public/maintain/2023/02/18/89a62bd8a94341aab53c92e4729e11252lzaoigury.jpg', '68401', 'jpeg', 0, 2, -1, '2023-02-18 11:12:23', '2023-02-18 11:12:23'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (779, '1676689960536_Camera_XHS_16714219662591000g0081oek1o1mdc06g5o8e6hog97a3j1updi8.jpg', '', 'crmebimage/public/maintain/2023/02/18/ace93cbb04254e5dba32ca41ea75d640ww5e0tmb8l.jpg', '57677', 'jpeg', 0, 2, -1, '2023-02-18 11:12:40', '2023-02-18 11:12:40'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (780, '1676689985837_Camera_XHS_16714219662591000g0081oek1o1mdc06g5o8e6hog97a3j1updi8.jpg', '', 'crmebimage/public/maintain/2023/02/18/4eae99f9b1ad481a8a694850ad92c06eizehx80ckf.jpg', '57677', 'jpeg', 0, 2, -1, '2023-02-18 11:13:05', '2023-02-18 11:13:05'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (781, 'photo_001.jpg', '', 'crmebimage/public/maintain/2023/02/18/2af54ef08cbd48ea8980ccd0f0ac828dvmue3lmi28.jpg', '272624', 'jpeg', 0, 2, -1, '2023-02-18 11:13:18', '2023-02-18 11:13:18'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (782, '1676690083213_Camera_XHS_16714216367621000g0081mkel42odc02g4burese6afrlbqt5b70.jpg', '', 'crmebimage/public/maintain/2023/02/18/bdce445b3c1845d68332edded5be475dewa6bns65s.jpg', '68401', 'jpeg', 0, 2, -1, '2023-02-18 11:14:43', '2023-02-18 11:14:43'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (783, 'WechatIMG4765.jpeg', '', 'crmebimage/public/maintain/2023/02/18/8437b8b54fd3487f8e0a77c47bf30e62ti0h6y7d1d.jpeg', '35482', 'jpeg', 0, 2, -1, '2023-02-18 11:17:33', '2023-02-18 11:17:33'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (784, 'CRMEB 集体更新中的待处理任务表.png', '', 'crmebimage/public/maintain/2023/02/18/c2633e749a184e36983664242ec3af60gph8lrxbz3.png', '216282', 'png', 0, 2, -1, '2023-02-18 11:19:36', '2023-02-18 11:19:36'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (785, 'tmp_4e36c3ca7ad81293ded6ee212b25fb00.jpg', '', 'crmebimage/public/maintain/2023/02/18/65ab41b9246f421ab86dad17c0f475507id927d6r4.jpg', '2873', 'jpeg', 0, 2, -1, '2023-02-18 13:50:54', '2023-02-18 13:50:54'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (786, 'tmp_4861b26292577914c4f6467b62c969d6d9322a1fef272ae3.jpg', '', 'crmebimage/public/maintain/2023/02/18/ded5919e465f4f14a5e3822d084ebdcbbtciv6h8zg.jpg', '4882', 'jpeg', 0, 2, -1, '2023-02-18 14:58:04', '2023-02-18 14:58:04'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (787, 'tmp_883b33865d6c2ceba5f4d674e5a3faea159ff561af7a1de6.jpg', '', 'crmebimage/public/maintain/2023/02/18/1bd47cc4e8224491abf7e64fd0868e29vwq380t7c0.jpg', '4881', 'jpeg', 0, 2, -1, '2023-02-18 14:58:10', '2023-02-18 14:58:10'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (788, 'tmp_872019bccf4a65165b12e1694c60aaa17ea1b22dabbf64c2.jpg', '', 'crmebimage/public/maintain/2023/02/18/f5b9e834bf2a4316a265336d60950677nna3j1ds4s.jpg', '4882', 'jpeg', 0, 2, -1, '2023-02-18 14:58:14', '2023-02-18 14:58:14'); INSERT INTO `eb_system_attachment` (`att_id`, `name`, `att_dir`, `satt_dir`, `att_size`, `att_type`, `pid`, `image_type`, `owner`, `create_time`, `update_time`) VALUES (789, 'tmp_af29b2ea91982fba7bf37b302ac5ab20fdeac74c231743f3.jpg', '', 'crmebimage/public/maintain/2023/02/18/5ba850bbc37442f1965084bd51c059c6d1livkfcyb.jpg', '4882', 'jpeg', 0, 2, -1, '2023-02-18 14:58:51', '2023-02-18 14:58:51'); COMMIT; -- ---------------------------- -- Table structure for eb_system_config -- ---------------------------- DROP TABLE IF EXISTS `eb_system_config`; CREATE TABLE `eb_system_config` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '配置id', `name` varchar(255) NOT NULL DEFAULT '' COMMENT '字段名称', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '字段提示文字', `form_id` int(10) DEFAULT '0' COMMENT '表单id', `value` longtext COMMENT '值', `status` tinyint(1) DEFAULT '0' COMMENT '是否隐藏', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `name` (`name`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1078 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='配置表'; -- ---------------------------- -- Records of eb_system_config -- ---------------------------- BEGIN; INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1, 'authHost', 'authHost', 0, 'java.crmeb.net', 0, '2022-08-16 15:31:54', '2022-08-16 15:31:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (14, 'sms_account', 'sms_account', 0, '18211111111', 0, '2022-08-24 10:54:46', '2022-12-07 10:44:38'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (15, 'sms_token', 'sms_token', 0, '1qa2', 0, '2022-08-24 10:54:46', '2022-12-07 10:44:33'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (16, 'integral_deduction_switch', 'integral_deduction_switch', 0, 'true', 0, '2022-09-05 16:52:37', '2022-09-29 11:25:22'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (17, 'integral_deduction_start_money', 'integral_deduction_start_money', 0, '10', 0, '2022-09-05 16:52:52', '2022-09-05 16:53:28'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (18, 'integral_deduction_money', 'integral_deduction_money', 0, '1', 0, '2022-09-05 16:52:59', '2022-09-05 16:53:32'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (19, 'integral_deduction_ratio', 'integral_deduction_ratio', 0, '80', 0, '2022-09-05 16:53:04', '2022-09-05 16:53:44'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (20, 'order_give_integral', 'order_give_integral', 0, '1', 0, '2022-09-05 16:53:09', '2022-09-05 16:53:51'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (21, 'freeze_integral_day', 'freeze_integral_day', 0, '1', 0, '2022-09-05 16:53:14', '2022-09-05 16:53:14'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (22, 'sign_rule_description ', '', 0, '1.每天签到可以获得每天签到奖励\n2.连续签到积分翻倍', 0, '2022-09-06 18:34:09', '2022-09-06 18:34:09'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (32, 'change_color_config', 'change_color_config', 0, '3', 0, '2022-09-08 10:04:41', '2022-09-08 10:09:57'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (55, 'merLoginAgreement', '', 0, '{\"agreement\":\"

一、注册协议条款的确认和接受

\\n

***网(以下亦称“本网站”)同意按照本协议的规定及其不定时发布的操作规则提供基于互联网和移动互联网的相关服务(以下称“网络服务”)。

\\n

为获得网络服务, 申请人应当认真阅读、充分理解本《协议》中各条款, 包括免除或者限制文都责任的免责条款及对用户的权利限制条款。审慎阅读并选择接受或不接受本《协议》(未成年人应在法定监护人陪同下阅读)。

\\n

同意接受本协议的全部条款的, 申请人应当按照页面上的提示完成全部的注册程序, 并在注册程序过程中点击“同意”按钮, 否则视为不接受本《协议》全部条款, 申请人应当终止并退出申请。

\\n

本《协议》可由文都定期更新, 更新后的协议条款一旦公布即代替原来的协议条款, 恕不再另行通知, 用户可在文都查阅最新版协议条款。在文都修改《协议》条款后, 如果用户不接受修改后的条款, 请立即停止使用文都提供的网络服务, 继续使用的用户将被视为已接受了修改后的协议。

\\n

二、服务内容

\\n

1、网络服务的具体内容由文都根据实际情况提供, 包括学习资讯、学习工具、文都社群、文都问答、SIS在线测评、文都直播、文都网校、文都中小学、文都国际教育、文都考研集训营、泉题库及其旗下APP相关应用等服务。

\\n

2、提供的网络服务包括收费和免费。收费服务包括但不限于文都网、文都网校和APP的部分收费课程, 用户使用收费网络服务需要支付约定费用。对于收费服务, 文都会在用户使用之前给予用户明确的提示, 只有用户根据提示确认同意支付相关费用, 用户才能使用该等收费服务。如用户未支付相关费用, 则文都有权不向用户提供该等收费服务。

\\n

3、用户理解, 文都仅提供文都明确承诺的网络服务, 除此之外与相关网络服务有关的设备(如个人电脑、手机、及其他与接入互联网或移动网有关的装置)及所需的费用(如为接入互联网而支付的电话费及上网费、为使用移动网络而支付的手机费)均应由用户自行负担。

\\n

4、用户理解,文都网/文都网校/文都直播平台提供并提请用户在购买课程前先完整试听。用户可按《文都网校退班政策说明》除特别说明外,包括但不限于PC端和移动端下载课件在内的所有服务均附期限,到期终止。用户应在截止日期前享受其购买的服务。

\\n

三、用户帐号

\\n

1、经本网站注册系统完成注册程序并通过身份认证的用户即为正式用户。

\\n

2、如发现用户帐号中含有不雅文字或不恰当名称的, 文都保留注销其用户帐号的权利。

\\n

3、用户帐号的所有权归文都, 用户完成申请注册手续后, 用户享有使用权。3个月未使用的用户账号, 文都保留收回的权利。

\\n

4、用户有义务保证密码和帐号的安全, 用户利用该帐号所进行的一切活动引起的任何损失或损害, 由用户自行承担全部责任, 文都不承担任何责任。如用户发现帐号遭到未授权的使用或发生其他任何安全问题, 应立即修改账号密码并妥善保管。因黑客行为或用户的保管疏忽导致帐号非法使用, 文都不承担任何责任。

\\n

5、用户帐号和密码仅由初始申请注册人使用,用户不得将自己用户账户或密码有偿或无偿以转让、出借、授权等方式提供给第三人操作和使用, 否则用户应当自行承担因违反此要求而遭致的任何损失。违反本项约定的,文都并保留收回账号的权利。若因违反本约定对他人造成损害的,用户应与实际使用人承担连带赔偿责任,同时文都保留追究用户违约责任的权利。

\\n

6、用户帐号在丢失、遗忘密码及因合用产生使用权归属纠纷后, 须遵照文都的申诉途径请求找回帐号。用户可以凭初始注册资料向文都申请找回帐号。文都的账户恢复机制仅负责识别申请用户所提资料与系统记录资料是否一致, 而无法识别申诉人是否系帐号的真正使用权人。对用户因被他人冒名申请而致的任何损失, 文都不承担任何责任, 用户知晓帐号及密码保管责任在于用户, 文都并不承诺帐号丢失或遗忘密码后用户一定能通过申诉找回帐号。用户应当谨慎填写初始手机号或注册邮箱作为确认接收争议帐号的指定邮箱。

\\n

7、文都建议用户应当使用本人名义为用户账户充值或行使付款行为。若用户存在使用第三人的名义进行充值或付款,或委托第三人代为充值或付款之行为的,则以上行为被视作本人的行为,若由于该第三人行为导致充值或付款行为失败或成功后又被撤销的,均被认为是用户本人真实意思的表示和用户本人实施的行为,由此所造成的一切法律后果均由用户自行承担。

\\n

四、使用规则

\\n

1、用户在使用文都网络服务过程中, 必须遵循国家的相关法律法规, 不得发布危害国家安全、色情、暴力、侵犯版权等任何合法权利等非法内容; 也不得利用文都平台发布含有虚假、有害、胁迫、侵害他人隐私、骚扰、侵害、中伤、粗俗、或其它道德上令人反感的内容。

\\n

2、本网站可依其合理判断, 对违反有关法律法规或本协议约定; 或侵犯、妨害、威胁任何人权利或安全的内容, 或者假冒他人的行为, 文都有权停止传输任何前述内容, 并有权依其自行判断对违反本条款的任何用户采取适当的法律行动, 包括但不限于, 删除具有违法性、侵权性、不当性等内容, 阻止其使用文都全部或部分网络服务, 并且依据法律法规保存有关信息并向有关部门报告等。

\\n

3、对于经由本网络服务而传送的内容, 文都不保证前述内容的正确性、完整性或品质。用户在接受本服务时, 有可能会接触到令人不快、不适当或令人厌恶的内容。在任何情况下, 文都均不对任何内容负责, 包括但不限于任何内容发生任何错误或纰漏以及衍生的任何损失或损害。文都有权(但无义务)自行拒绝或删除经由文都网络服务提供的任何内容。用户使用上述内容, 应自行承担风险。

\\n

4、对于用户通过本网络服务(包括但不限于文都网、文都社群、文都中小学、文都国际教育、文都网校、泉题库、SIS在线测评及对应APP、相关应用等服务)上传到文都上可公开获取区域的任何内容, 用户同意文都在全世界范围内具有免费的、永久性的、不可撤销的、非独 家的和完全再许可的权利和许可, 以使用、复制、修改、改编、出版、翻译、据以创作衍生作品、传播、表演和展示此等内容(整体或部分), 和/或将此等内容编入当前已知的或以后开发的其他任何形式的作品、媒体或技术中。

\\n

5、用户通过文都网络服务所发布的任何内容并不反映文都的观点或政策, 文都对此不承担任何责任。用户须对上述内容的真实性、合法性、无害性、有效性等全权负责, 与用户所发布信息相关的任何法律责任由用户自行承担, 与文都无关。

\\n

五、版权声明

\\n

本网站提供的网络服务中包含的任何文本、图片、图形、音频和/或视频资料均受版权、商标和/或其它财产所有权法律的保护, 未经相关权利人同意, 上述资料均不得在任何媒体直接或间接发布、播放、出于播放或发布目的而改写或再发行, 或者被用于其他任何商业目的。所有以上资料或资料的任何部分仅可作为私人和非商业用途保存。文都不就由上述资料产生或在传送或递交全部或部分上述资料过程中产生的延误、不准确、错误和遗漏或从中产生或由此产生的任何损害赔偿, 以任何形式, 向用户或任何第三方负责。

\\n

六、隐私保护

\\n

1、保护用户隐私是文都的一项基本政策, 本网站保证不对外公开或向第三方提供用户的注册资料及用户在使用网络服务时存储在文都内的非公开内容, 但下列情况除外:

\\n

(1)事先获得用户的书面明确授权;

\\n

(2)根据有关的法律法规要求;

\\n

(3)按照相关政府主管部门的要求;

\\n

(4)为维护社会公众的利益;

\\n

(5)为维护本网站的合法权益;

\\n

2、为了更好地为用户提供全面服务,用户同意文都可将用户注册资料及使用信息提供文都关联公司使用。文都保证前述关联公司同等级地严格遵循本协议第六条第1款之隐私保护责任。

\\n

3、用户同意:文都或文都运营商的关联公司在必要时有权根据用户注册时或接受服务时所提供的联系信息(包括但不限于电子邮件地址、联系电话、联系地址、即时聊天工具账号等),通过电子邮件、电话、短信、邮寄、即时聊天、弹出页面等方式向用户发送如下信息:

\\n

(1)各类重要通知信息,可能包括但不限于订单、交易单、修改密码提示等重要信息。此类信息可能对用户的权利义务产生重大的有利或不利影响,用户务必及时关注。

\\n

(2)商品和服务广告、促销优惠等商业性信息。若用户不愿意接收此类信息,则可通过告知(口头或书面)的方式通知文都或文都运营商的关联公司取消发送,亦可通过文都或文都运营商关联公司所提供的相应退订功能(若有)进行退订。

\\n

七、协议的用途、更新和效力

\\n

1、本协议之服务条款用以规范用户使用文都提供的服务,本协议与文都社区行为准则构成完整的协议。

\\n

2、鉴于国家法律法规不时变化及文都运营之需要,文都有权对本协议条款不时地进行修改,修改后的协议一旦被公布于文都上即告生效,并替代原来的协议。 用户有义务不时关注并阅读最新版的协议及网站公告。如用户不同意更新后的协议,则应立即停止接受文都依据本协议提供的服务;若用户继续使用文都提供的服务的,即视为同意更新后的协议。 如果本协议中任何一条被视为废止、无效或因任何理由不可执行,该条应视为可分的且并不影响任何其余条款的有效性和可执行性。

\\n

八、联系方式

\\n

当您有个人信息相关问题或其他的投诉、建议等,可以通过如下方式与文都联系,文都将尽快审核所涉及内容,并于15个工作日内对于您的问题、投诉、建议进行回复;

\\n

 

\\n

 

\\n

 

\\n

 

\"}', 0, '2022-09-14 14:47:20', '2022-09-14 14:47:20'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (92, 'userAboutAgreement', '', 0, '{\"agreement\":\"

      CRMEB系统就是集客户关系管理+营销电商系统,能够真正帮助企业基于微信公众号、小程序、wap、pc等,实现会员管理、数据分析,精准营销的电子商务管理系统。可满足企业新零售、批发、分销、预约、O2O、多店、商铺入驻等各种业务需求。

\\n

1、B2B2C商城系统自营+招商多模式运营

\\n

多商户的核心是B2B2C,支持企业自营模式及商家入驻模式等;

\\n

商家可整合行业资源,联系商户入驻商城,实现商城产品和服务类目的多样性,打造综合购物商圈,轻松拥有专属自己的“京东商城”

\\n

2、打通分销系统,构建移动社交电商

\\n

用户购买礼包成为推广员后,可通过微信邀请好友下单赚取佣金,降低人工营销宣传成本,实现人人分享赚钱的乐趣,促进商城社交化推广

\\n

3、多种盈利模式

\\n

B2B2C商城平台手续费、自营收入、资金沉淀、广告资源等多种平台盈利模式

\\n

4、界面美观的商城UI

\\n

优秀的UI设计让商城系统变得有个性有品味,舒适、简单的体验感提高用户对商城平台的认可

\\n

5、强大稳定的后台管理系统

\\n

后台采用最新的TP框架,系统高效稳定;后台的功能操作简单快捷,企业及个人运营可快速上手使用

\\n

CRMEB系统就是集客户关系管理+营销电商系统,能够真正帮助企业基于微信公众号、小程序、wap、pc等,实现会员管理、数据分析,精准营销的电子商务管理系统。可满足企业新零售、批发、分销、预约、O2O、多店、商铺入驻等各种业务需求。

\\n

 

\\n

 

\\n

\\n

 

\\n

公司自成立以来,始终坚持“让企业经营更简单”的企业使命,以用户需求为研发导向,广泛听取用户意见,原创研发,致力于“推动全球企业实现数字化经营”的企业愿景而不懈奋斗!

\\n

 

\\n

经过多年发展,目前公司拥有多名行业内知名优秀技术人才,独创性的将客户关系管理与电子商务应用场景深度集成,实现了多项目组并线研发,独立运营的全新经营模式。与众多技术开发公司达成合作,组建了一支强大的服务商团队,遍布全球,资源共享,为用户服务。众邦科技也成为了互联网技术开枝散叶的一片沃土。

\\n

\\n

 

\\n

公司拥有软件知名品牌CRMEB,基于此品牌的产品包括《CRMEB开源会员管理电商营销系统》、《CRMEB单商户商城系统》、《CRMEB知识付费系统》、《CRMEB多商户商城系统》,这一系列产品均取得了国家计算机软件著作权证书,开源作品荣获开源中国“GVP-码云最有价值开源项目”,被评选为“优秀Gitee组织”,并在腾讯云2020开发者大赛荣获年度最佳企业级开发团队TOP20荣誉。

\\n

 

\\n

       众邦科技始终秉承“感恩、学习、利他”的企业文化,以匠心精神专注于研发和创意设计,探索并实现企业经营发展难题,通过互联网工具,为合作伙伴长远发展贡献全力。在更深远的认知中,将不断修正服务导向,以开放共享的理念服务中小企业,心之所向,素履以往,以敬畏之心拥抱互联网,勇做推动行业发展的中坚力量,创造价值,为推进企业互联网转型发展做出贡献。

\\n

 

\\n

企 业 荣 誉 

\\n

\\n

 

\\n

 

\"}', 0, '2022-09-14 18:21:03', '2022-09-14 18:21:03'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (93, 'platfromIntelligentAgreement', '', 0, '{\"agreement\":\"

\"}', 0, '2022-09-14 18:38:42', '2022-09-14 18:38:42'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (94, 'merSettlementAgreement', '', 0, '{\"agreement\":\"

一、注册协议条款的确认和接受

\\n

***网(以下亦称“本网站”)同意按照本协议的规定及其不定时发布的操作规则提供基于互联网和移动互联网的相关服务(以下称“网络服务”)。

\\n

为获得网络服务, 申请人应当认真阅读、充分理解本《协议》中各条款, 包括免除或者限制文都责任的免责条款及对用户的权利限制条款。审慎阅读并选择接受或不接受本《协议》(未成年人应在法定监护人陪同下阅读)。

\\n

同意接受本协议的全部条款的, 申请人应当按照页面上的提示完成全部的注册程序, 并在注册程序过程中点击“同意”按钮, 否则视为不接受本《协议》全部条款, 申请人应当终止并退出申请。

\\n

本《协议》可由文都定期更新, 更新后的协议条款一旦公布即代替原来的协议条款, 恕不再另行通知, 用户可在文都查阅最新版协议条款。在文都修改《协议》条款后, 如果用户不接受修改后的条款, 请立即停止使用文都提供的网络服务, 继续使用的用户将被视为已接受了修改后的协议。

\\n

二、服务内容

\\n

1、网络服务的具体内容由文都根据实际情况提供, 包括学习资讯、学习工具、文都社群、文都问答、SIS在线测评、文都直播、文都网校、文都中小学、文都国际教育、文都考研集训营、泉题库及其旗下APP相关应用等服务。

\\n

2、提供的网络服务包括收费和免费。收费服务包括但不限于文都网、文都网校和APP的部分收费课程, 用户使用收费网络服务需要支付约定费用。对于收费服务, 文都会在用户使用之前给予用户明确的提示, 只有用户根据提示确认同意支付相关费用, 用户才能使用该等收费服务。如用户未支付相关费用, 则文都有权不向用户提供该等收费服务。

\\n

3、用户理解, 文都仅提供文都明确承诺的网络服务, 除此之外与相关网络服务有关的设备(如个人电脑、手机、及其他与接入互联网或移动网有关的装置)及所需的费用(如为接入互联网而支付的电话费及上网费、为使用移动网络而支付的手机费)均应由用户自行负担。

\\n

4、用户理解,文都网/文都网校/文都直播平台提供并提请用户在购买课程前先完整试听。用户可按《文都网校退班政策说明》除特别说明外,包括但不限于PC端和移动端下载课件在内的所有服务均附期限,到期终止。用户应在截止日期前享受其购买的服务。

\\n

三、用户帐号

\\n

1、经本网站注册系统完成注册程序并通过身份认证的用户即为正式用户。

\\n

2、如发现用户帐号中含有不雅文字或不恰当名称的, 文都保留注销其用户帐号的权利。

\\n

3、用户帐号的所有权归文都, 用户完成申请注册手续后, 用户享有使用权。3个月未使用的用户账号, 文都保留收回的权利。

\\n

4、用户有义务保证密码和帐号的安全, 用户利用该帐号所进行的一切活动引起的任何损失或损害, 由用户自行承担全部责任, 文都不承担任何责任。如用户发现帐号遭到未授权的使用或发生其他任何安全问题, 应立即修改账号密码并妥善保管。因黑客行为或用户的保管疏忽导致帐号非法使用, 文都不承担任何责任。

\\n

5、用户帐号和密码仅由初始申请注册人使用,用户不得将自己用户账户或密码有偿或无偿以转让、出借、授权等方式提供给第三人操作和使用, 否则用户应当自行承担因违反此要求而遭致的任何损失。违反本项约定的,文都并保留收回账号的权利。若因违反本约定对他人造成损害的,用户应与实际使用人承担连带赔偿责任,同时文都保留追究用户违约责任的权利。

\\n

6、用户帐号在丢失、遗忘密码及因合用产生使用权归属纠纷后, 须遵照文都的申诉途径请求找回帐号。用户可以凭初始注册资料向文都申请找回帐号。文都的账户恢复机制仅负责识别申请用户所提资料与系统记录资料是否一致, 而无法识别申诉人是否系帐号的真正使用权人。对用户因被他人冒名申请而致的任何损失, 文都不承担任何责任, 用户知晓帐号及密码保管责任在于用户, 文都并不承诺帐号丢失或遗忘密码后用户一定能通过申诉找回帐号。用户应当谨慎填写初始手机号或注册邮箱作为确认接收争议帐号的指定邮箱。

\\n

7、文都建议用户应当使用本人名义为用户账户充值或行使付款行为。若用户存在使用第三人的名义进行充值或付款,或委托第三人代为充值或付款之行为的,则以上行为被视作本人的行为,若由于该第三人行为导致充值或付款行为失败或成功后又被撤销的,均被认为是用户本人真实意思的表示和用户本人实施的行为,由此所造成的一切法律后果均由用户自行承担。

\\n

四、使用规则

\\n

1、用户在使用文都网络服务过程中, 必须遵循国家的相关法律法规, 不得发布危害国家安全、色情、暴力、侵犯版权等任何合法权利等非法内容; 也不得利用文都平台发布含有虚假、有害、胁迫、侵害他人隐私、骚扰、侵害、中伤、粗俗、或其它道德上令人反感的内容。

\\n

2、本网站可依其合理判断, 对违反有关法律法规或本协议约定; 或侵犯、妨害、威胁任何人权利或安全的内容, 或者假冒他人的行为, 文都有权停止传输任何前述内容, 并有权依其自行判断对违反本条款的任何用户采取适当的法律行动, 包括但不限于, 删除具有违法性、侵权性、不当性等内容, 阻止其使用文都全部或部分网络服务, 并且依据法律法规保存有关信息并向有关部门报告等。

\\n

3、对于经由本网络服务而传送的内容, 文都不保证前述内容的正确性、完整性或品质。用户在接受本服务时, 有可能会接触到令人不快、不适当或令人厌恶的内容。在任何情况下, 文都均不对任何内容负责, 包括但不限于任何内容发生任何错误或纰漏以及衍生的任何损失或损害。文都有权(但无义务)自行拒绝或删除经由文都网络服务提供的任何内容。用户使用上述内容, 应自行承担风险。

\\n

4、对于用户通过本网络服务(包括但不限于文都网、文都社群、文都中小学、文都国际教育、文都网校、泉题库、SIS在线测评及对应APP、相关应用等服务)上传到文都上可公开获取区域的任何内容, 用户同意文都在全世界范围内具有免费的、永久性的、不可撤销的、非独 家的和完全再许可的权利和许可, 以使用、复制、修改、改编、出版、翻译、据以创作衍生作品、传播、表演和展示此等内容(整体或部分), 和/或将此等内容编入当前已知的或以后开发的其他任何形式的作品、媒体或技术中。

\\n

5、用户通过文都网络服务所发布的任何内容并不反映文都的观点或政策, 文都对此不承担任何责任。用户须对上述内容的真实性、合法性、无害性、有效性等全权负责, 与用户所发布信息相关的任何法律责任由用户自行承担, 与文都无关。

\\n

五、版权声明

\\n

本网站提供的网络服务中包含的任何文本、图片、图形、音频和/或视频资料均受版权、商标和/或其它财产所有权法律的保护, 未经相关权利人同意, 上述资料均不得在任何媒体直接或间接发布、播放、出于播放或发布目的而改写或再发行, 或者被用于其他任何商业目的。所有以上资料或资料的任何部分仅可作为私人和非商业用途保存。文都不就由上述资料产生或在传送或递交全部或部分上述资料过程中产生的延误、不准确、错误和遗漏或从中产生或由此产生的任何损害赔偿, 以任何形式, 向用户或任何第三方负责。

\\n

六、隐私保护

\\n

1、保护用户隐私是文都的一项基本政策, 本网站保证不对外公开或向第三方提供用户的注册资料及用户在使用网络服务时存储在文都内的非公开内容, 但下列情况除外:

\\n

(1)事先获得用户的书面明确授权;

\\n

(2)根据有关的法律法规要求;

\\n

(3)按照相关政府主管部门的要求;

\\n

(4)为维护社会公众的利益;

\\n

(5)为维护本网站的合法权益;

\\n

2、为了更好地为用户提供全面服务,用户同意文都可将用户注册资料及使用信息提供文都关联公司使用。文都保证前述关联公司同等级地严格遵循本协议第六条第1款之隐私保护责任。

\\n

3、用户同意:文都或文都运营商的关联公司在必要时有权根据用户注册时或接受服务时所提供的联系信息(包括但不限于电子邮件地址、联系电话、联系地址、即时聊天工具账号等),通过电子邮件、电话、短信、邮寄、即时聊天、弹出页面等方式向用户发送如下信息:

\\n

(1)各类重要通知信息,可能包括但不限于订单、交易单、修改密码提示等重要信息。此类信息可能对用户的权利义务产生重大的有利或不利影响,用户务必及时关注。

\\n

(2)商品和服务广告、促销优惠等商业性信息。若用户不愿意接收此类信息,则可通过告知(口头或书面)的方式通知文都或文都运营商的关联公司取消发送,亦可通过文都或文都运营商关联公司所提供的相应退订功能(若有)进行退订。

\\n

七、协议的用途、更新和效力

\\n

1、本协议之服务条款用以规范用户使用文都提供的服务,本协议与文都社区行为准则构成完整的协议。

\\n

2、鉴于国家法律法规不时变化及文都运营之需要,文都有权对本协议条款不时地进行修改,修改后的协议一旦被公布于文都上即告生效,并替代原来的协议。 用户有义务不时关注并阅读最新版的协议及网站公告。如用户不同意更新后的协议,则应立即停止接受文都依据本协议提供的服务;若用户继续使用文都提供的服务的,即视为同意更新后的协议。 如果本协议中任何一条被视为废止、无效或因任何理由不可执行,该条应视为可分的且并不影响任何其余条款的有效性和可执行性。

\\n

八、联系方式

\\n

当您有个人信息相关问题或其他的投诉、建议等,可以通过如下方式与文都联系,文都将尽快审核所涉及内容,并于15个工作日内对于您的问题、投诉、建议进行回复;

\\n

 

\\n

 

\\n

 

\"}', 0, '2022-09-14 18:38:58', '2022-09-14 18:38:58'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (95, 'platfromRuleAgreement', '', 0, '{\"agreement\":\"

                      平台规则

\\n

 

\\n

 

\\n

第一章 概述

\\n

第一条  本规则适用于CRMEB开放平台商家,商家可以根据业务需求选择经营模式以通过CRMEB开放平台向消费者销售商品或提供服务。本规则不适用于CRMEB自营商品及信息。

\\n

第二条  为促进平等、开放、透明的平台生态的搭建,根据《CRMEB用户注册协议》、《“CRMEB***.COM”开放平台服务协议》等服务/合作协议,制定本规则。

\\n

第三条  CRMEB开放平台总则,是对CRMEB商家增加基本义务或规范商家行使基本权利的条款。

\\n

第四条  违规行为的认定与处理,CRMEB将基于法律法规的规定、协议的约定、消费者和商家提供的证据材料以及平台记录的相关信息等做出判断并依据相关规则严格执行。CRMEB商家在适用规则上一律平等。

\\n

第五条  商家应遵守国家法律、行政法规、部门规章等规范性文件。对任何涉嫌违反国家法律、行政法规、部门规章等规范性文件的行为,本规则已有规定的,适用本规则;本规则尚无规定的,CRMEB有权依据相应规则酌情处理,但CRMEB对商家的处理不免除商家因违法、违约等行为应承担的法律责任。

\\n

第六条  商家在CRMEB的任何行为,应同时遵守与CRMEB所签订的各项协议。

\\n

第七条  CRMEB有权随时变更本规则并在规则平台或商家管理系统等渠道予以公告。若商家不同意相关变更,应立即停止使用CRMEB开放平台提供的相关服务,并及时通知CRMEB。CRMEB有权对商家行为及应适用的规则/协议约定进行单方认定,并据此处理。

\\n

 

\\n

第二章 入驻

\\n

第八条 用户应当严格遵守CRMEB系统设置的注册流程完成注册,并严格遵守《CRMEB用户注册协议》的规定。用户在选择用户名时须遵守国家法律法规,不得包含违法或涉嫌侵犯他人权利等的相关信息。

\\n

第九条 用户必须满足以下条件,才有权申请加入CRMEB,成为商家:

\\n

(一) 商家应符合《CRMEB开放平台招商标准》

\\n

(二) 商家及其销售的商品或提供的服务应符合《CRMEB开放平台招商基础资质标准》并符合CRMEB开放平台对商品质量的相关要求。

\\n

(三)商家有效签署《“CRMEB***.COM”开放平台服务协议》并承诺遵守平台全部规则要求。

\\n

(四)商家须开通CRMEB钱包,并以CRMEB钱包账户作为唯一结算账户(经CRMEB开放平台确认的特殊类型商家除外)。

\\n

(五) 商家需按照开通类目的资费标准缴纳各项费用,具体标准详见《CRMEB开放平台各类目资费一览表》

\\n

(六) 商家满足CRMEB开放平台要求的其他条件。

\\n

 

\\n

 第三章 经营

\\n

第十条 店铺

\\n

(一) 商家申请店铺名、子域名等信息时,应须遵守国家法律法规及开放平台相关规则,不得包含违法或涉嫌侵犯他人权利等的相关信息。详细规则请参见CRMEB开放平台商家店铺命名规则CRMEB开放平台子域名管理规则

\\n

(二)商家上传的店铺信息(包括但不限于店标、店铺名称、店铺公告、店铺介绍、店铺通栏、店铺活动区域等)内容设置需真实、有效且与商家注册信息一致,不得违反国家法律法规规定及平台规则等,否则CRMEB有权按《CRMEB开放平台商家违规积分管理规则》进行处理。

\\n

(三) 商家使用CRMEB开放平台API接口的,须严格遵守《API接口使用管理规定》

\\n

(四) 商家应遵守《CRMEB开放平台保证金管理规定》及时缴存及补缴保证金。

\\n

(五) 商家发布信息需遵守《CRMEB开放平台商家违规积分管理规则》

\\n

第十一条 商品

\\n

(一) 商家应保证在CRMEB开放平台售卖的商品为正品或其他原创非侵权商品;

\\n

(二) 商家应按照CRMEB开放平台系统设置的流程和《CRMEB行业运营标准》的要求发布商品/服务。

\\n

(三) 商家不得编辑及发布国家法律法规或《CRMEB开放平台禁发商品及信息管理规范》规定的禁止发布的商品。

\\n

(四) “商品如实描述”及对其所售商品/服务质量承担保证责任是商家的基本义务。“商品如实描述”是指商家在商品描述页面、店铺页面、活动页面、咚咚等所有CRMEB开放平台提供的渠道中,应当对其所发布商品的基本属性、成色、瑕疵等必须说明的信息进行真实、完整的描述。

\\n

(五) 商家应保证其出售的商品在合理期限内可以正常使用、提供的服务符合承诺标准,包括商品不存在危及人身财产安全的不合理危险、具备商品应当具备的使用性能、符合商品或其包装上注明采用的标准、符合提供服务时承诺的标准,且承诺标准不低于国家/行业标准等。CRMEB有权对商家经营的商品按照各品类抽检规范进行抽检。

\\n

第十二条  营销推广

\\n

(一) 参加CRMEB开放平台营销活动时,商家须遵守《CRMEB开放平台营销活动规则》。

\\n

(二) 商家应根据《CRMEB搜索排序规则》优化店铺商品搜索排序,且不得出现任何形式的搜索作弊行为。

\\n

第十三条  物流

\\n

(一) 商家应遵守《CRMEB开放平台发货管理规则》的相关要求,在规定/承诺时效内完成发货及揽收。

\\n

(二) 商家可以根据自身需求选择CRMEB供应链管理服务,详细服务内容及要求以双方签订的《仓储服务合同》为准。

\\n

第十四条 售后及评价

\\n

(一) 商家应遵守CRMEB开放平台制定的《CRMEB开放平台商家售后服务管理规则》,向消费者履行售后服务义务。

\\n

(二) CRMEB将依照《CRMEB开放平台交易纠纷处理总则》对CRMEB介入的交易纠纷进行处理。

\\n

(三) CRMEB开放平台为了方便商家与消费者的沟通,向商家及消费者提供400热线以及即时沟通工具——咚咚,商家在使用相应工具时,应遵守《400热线增值服务使用管理规则》《咚咚服务使用管理规则》的相关规定,确保提供高质量的服务。

\\n

(四) 商家应遵守《CRMEB开放平台评价管理规则》对评价进行维护及管理。

\\n

 

\\n

 第四章 终止合作

\\n

第十五条  店铺服务期届满,商家未完成下一年度续签或未到店铺服务结束日期,商家提前关店的,视为商家主动终止合作。商家主动终止合作,保证金按约定进行退还,提前关店的情形,平台使用费不进行退还。详细规则请参照《CRMEB开放平台终止合作规则》

\\n

第十六条  若商家发生以下任一情形,CRMEB有权进行清退:
       (一) 存在恶意竞争、影响消费者权益、影响CRMEB平台声誉等违反市场公平竞争原则、诚实信用原则、公序良俗的行为。
       (二) 通过不正当手段使用CRMEB注册LOGO、域名等用于不正当宣传、商业活动,给消费者造成误导、侵犯CRMEB知识产权等给CRMEB造成不良影响的行为。
       (三) 在线上、线下等渠道,通过文字或图片等方式发布恶意诋毁、故意矮化CRMEB的言论,给CRMEB造成不良影响的行为。

\\n

(四) 商家违反《CRMEB开放平台招商标准》的行为。

\\n

(五) 商家经营的品牌对他人商标、商品名称、包装和装潢、企业名称、产品质量标志等构成仿冒或容易造成消费者混淆、误认的。

\\n

(六) 商家店铺以及关联店铺在CRMEB开放平台、CRMEB旗下其他平台、自身官网或互联网销售渠道等存在售假行为的。

\\n

(七) 违反《CRMEB开放平台商家违规积分管理规则》,严重违规扣分达100分的。

\\n

(八) 以上情形,CRMEB除有权清退商家、终止与其合作外,另可向商家追究其法律责任。CRMEB将按照合同约定及规则办理店铺关闭手续,并按约定情形办理保证金的退还。

\\n

 

\\n

 第五章 市场管理

\\n

第十七条 市场管理措施

\\n

   为了提升消费者的购物体验,维持市场正常运营秩序,CRMEB开放平台有权按照本规则规定的情形对商家经营行为采取以下管理措施:

\\n

(一) 警告:指CRMEB通过口头或书面的形式对商家的不当行为进行提醒和告诫。

\\n

(二) 违规公示:指在CRMEB商家的商家管理系统、商家论坛等位置对商家正在被执行的处理进行公示。

\\n

(三) 商品下架:指将商家在售商品/服务转移至线上待售商品。

\\n

(四) 商品永久下架:指将商家在售商品/服务转移至线上待售,且后续永久无法进行上架。

\\n

(五) 限制发布商品:指限制商家发布新商品或上架待售商品。

\\n

(六) 限制参加营销活动:指限制商家参加CRMEB官方发起的营销活动。

\\n

(七) 单个商品搜索降权:指调整商品在搜索结果中的排序。

\\n

(八) 全店商品搜索降权:指调整商家店铺内所有商品在搜索结果中的排序。

\\n

(九) 单个商品搜索屏蔽:指商品在搜索结果中不展现。

\\n

(十) 单个商品监管:是指在一定时间内商品信息无法通过搜索、商品链接等方式查看。

\\n

(十一)删除商品:是指删除已发布的商品。

\\n

(十二)删除信息:是指删除店铺、商品、活动页等位置的信息。

\\n

(十三)删除销量及评价:是指删除商品的部分或全部销量及评价。

\\n

(十四)店铺屏蔽:指在搜索、导航、营销等各项服务中对商家店铺及商品等信息进行屏蔽。

\\n

(十五)限制商家登录:指禁止商家登录CRMEB网站。

\\n

(十六)限制使用咚咚:指禁止商家使用CRMEB咚咚聊天工具。

\\n

(十七)限制社区功能:指禁止CRMEB商家使用CRMEB社区、商家论坛板块等社区类服务。

\\n

(十八) 支付违约金:指根据协议约定或本规则规定由商家向消费者和/或CRMEB支付一定金额的违约金。

\\n

(十九) 限制开新店:指限制商家在CRMEB开放平台开设新的店铺。

\\n

(二十) 店铺监管:是指在一定时间内商家店铺及店铺内所有商品信息无法通过搜索或商品链接等方式查看。

\\n

(二十一) 关闭店铺:指停用商家的店铺,下架店铺内所有出售中的商品,禁止发布商品,并禁止创建店铺。

\\n

(二十二) 查封账户:指永久禁止商家使用违规账户登录CRMEB、登录商家管理系统、使用咚咚等。

\\n

第十八条 市场管理情形

\\n

(一) 商家如发生危及交易安全或扰乱CRMEB运营秩序等行为,CRMEB将依照其行为的危险程度采取市场管控措施。且CRMEB有权依照平台规则采取违规处理并要求商家承担违约责任。

\\n

(二) 新闻媒体曝光或国家行政部门通报的质量不合格的品牌、品类或批次的商品,或其他要求协查的商品及店铺及CRMEB抽检发现问题的商品相关联的商品,CRMEB将依照其情形严重程度对相关商家的店铺及商品采取商品下架、商品删除等市场管理措施。

\\n

(三) 因商家行为引发司法诉讼的,若商家存在提供的联系方式无效、消极应对或继续违规等情形,对平台造成或可能造成实际损失或不良影响的,CRMEB将根据产生或可能产生后果的严重程度采取市场管理措施。

\\n

(四) 商家应根据协议约定或规则规定缴纳及补足保证金。若保证金余额不足或被CRMEB通知需要增加保证金时,且经CRMEB催缴后商家未按协议约定期限缴纳或补足的,CRMEB有权视违约情况采取管理措施,直至商家足额缴纳为止。

\\n

(五) 商家出现《CRMEB开放平台商家违规积分管理规则》中涉及的违规行为时,CRMEB将按照规则中的规定采取相应市场管理措施。

\\n

第十九条 违规处理

\\n

(一) 商家发生违规行为的,其违规行为应当及时纠正,CRMEB开放平台将根据事实证据按《CRMEB开放平台商家违规积分管理规则》等规则的相关内容对商家进行违规行为管理,且有权在商家管理系统或商家论坛等位置公示。

\\n

(二) 违规行为根据严重程度分为严重违规行为及一般违规行为,两者分别扣分、分别累计、分别执行,但针对一事仅作一次处理,不涉及重复处理。自然年度违规扣分在次年的一月一日零时清零。

\\n

(三) CRMEB通过其他商家、权利人等的投诉或CRMEB排查等方式发现商家的违规行为。

\\n

第二十条 违规申诉

\\n

(一) 商家自行做出的承诺或说明与本规则相悖的,该承诺或说明将不作为CRMEB处理违规申诉的依据。除证据有误或判断错误的情形外,CRMEB不终止或撤销对违规行为的处理。

\\n

(二) 针对违规扣分,商家可在被违规处理之时起总计七日内(CRMEB审核时间除外)通过CRMEB商家后台提交违规申诉申请,商家提交申诉资料后将由CRMEB开放平台客服中心及质控部门核实处理。具体规定请参照《违规申诉管理规则》。

\\n

 

\\n

 第六章 特殊市场

\\n

第二十一条 CRMEB国际

\\n

   CRMEB国际是CRMEB集团国际化战略布局重点业务之一,致力于为国内消费者提供海外直供的商品。域名为https://www.***.hk/。CRMEBCRMEB国际平台的管理应遵循CRMEB国际平台规则的规定。

\\n

第二十二条 优创店业务

\\n

   为了响应国家“乡村振兴”及支持“大众创业 万众创新”的政策号召,面向个人及个体工商户在内的任意主体而开展新的业务类型。开展优创店业务的商家应遵循《CRMEB开放平台优创店管理规则》的有关规定。

\\n

第二十三条 拼购业务

\\n

   CRMEB拼购是CRMEB商家,利用拼购营销工具,通过拼购价以及社交玩法,刺激用户多级分享裂变,实现商家低成本引流以及用户转换的一个工具,以此实现“低价不低质”的概念,保障价格低的同时保证商品的质量。经营拼购业务的商家应遵守《CRMEB开放平台拼购业务管理规则》的有关规定。

\\n

第二十四条 拍卖业务

\\n

   CRMEB拍卖(paimai.***.com)是一个面向追求生活品质、爱好收藏的消费者,提供涵盖大众综合类、专业收藏类限量珍品的综合拍卖平台。经营拍卖业务的商家应遵守《CRMEB商城竞拍业务管理规范》的有关规定。

\\n

第二十五条 拍拍二手业务

\\n

   拍拍二手是CRMEB集团旗下的品质二手交易平台,现有二手商品售卖、二手商品回收、二手商品租赁及个人闲置四大业务,目前已经覆盖奢侈品、乐器、手机、电脑、数码、服饰、图书、家电、家具等品类。经营二手商品租赁业务的商家应遵守《CRMEB租赁业务管理规则》的有关规定,经营二手奢侈品售卖的商家应遵守《CRMEB拍拍二手奢侈品售卖业务管理规则》的有关规定,其他业务应遵守《CRMEB开放平台总则》等相关规则执行。

\\n

 

\\n

第七章 附则

\\n

第二十六条 CRMEB开放平台商家的行为,发生在本管理规则生效之日以前的,适用当时的规则。发生在本管理规则生效之日以后的,适用本规则。

\\n

第二十七条 CRMEB可根据平台运营情况随时调整本管理规则并以“CRMEB开放平台”公告的形式向商家公示。

\\n

第二十八条 商家应遵守国家法律、行政法规、部门规章等规范性文件。对任何涉嫌违反国家法律、行政法规、部门规章等规范性文件的行为,本规则已有规定的,适用于本规则。本规则尚无规定的,CRMEB有权酌情处理。但CRMEB对商家的处理不免除其应承担的法律责任。商家在CRMEB的任何行为,应同时遵守与CRMEB及其关联公司签订的各项协议。

\\n

第二十九条 本规则于2013年9月1日首次发布,2021年6月3日修订,于2021年6月10日生效。

\\n

 

\\n

 

\\n

 

\\n

 

\\n

 

\"}', 0, '2022-09-14 18:39:13', '2022-09-14 18:39:13'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (96, 'userCancelAccountNoticeAgreement', '', 0, '{\"agreement\":\"

你提交的注销申请生效前,CRMEB团队将进行以下验证,以保证你的帐号、财产安全:

\\n

      1. 帐号处于安全状态

\\n

      帐号没有被盗,被封等风险。

\\n

 

\\n

      2. CRMEB支付财产结清

\\n

      你已注销CRMEB支付(或者没有开通),CRMEB帐号上没有资金问题待结算。

\\n

 

\\n

      3. 卡券清空及CRMEB平台权限解除

\\n

      该CRMEB帐号已清空CRMEB卡券并解除CRMEB公众帐号(含订阅号、服务号、小程序等)、企业CRMEB、CRMEB开放平台的管理员身份。

\\n

 

\\n

      4. 其他APP、网站的帐号解绑

\\n

      该CRMEB帐号已经解除与其他APP、网站的授权登录或绑定关系。

\\n

 

\\n

      5. CRMEB豆财产结清

\\n

      该CRMEB帐号的CRMEB豆余额清零,且直播收入全部提现到账。

\\n

 

\\n

 

\\n

 

\\n

 

\\n

 

\\n

 

\\n

 

\\n

 

\\n

 

\"}', 0, '2022-09-14 18:40:13', '2022-09-14 18:40:13'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (97, 'userCancelAccountAgreement', '', 0, '{\"agreement\":\"

  注销CRMEB帐号是不可恢复的操作,你应自行备份CRMEB帐号相关的信息和数据。操作之前,请确认与CRMEB帐号相关的所有服务均已进行妥善处理。

\\n

  请谨记:注销CRMEB帐号,你将无法再使用本CRMEB帐号或找回你添加或绑定的任何内容或信息(即使你使用相同的手机号码再次注册并使用CRMEB),包括但不限于:

\\n

(1)你将无法登录、使用本CRMEB帐号。你的朋友将无法通过本CRMEB帐号联系你。

\\n

(2)你CRMEB帐号的个人资料和历史信息(包含昵称、头像、二维码名片、消息记录、朋友圈内容、相片、收藏等)都将无法找回。

\\n

(3)注销CRMEB帐号前,你必须注销CRMEB支付(国内及海外)账户。你需妥善处理CRMEB支付账户下所有资金问题。

\\n

(4)你通过CRMEB帐号使用、授权登录或绑定CRMEB帐号后使用的CRMEB公司或第三方的其他服务(包括但不限于CRMEB游戏、理财通、CRMEB支付、第三方网站、第三方游戏、城市服务、生活缴费、机船车票、微粒贷、微票儿、京东、大众点评、美丽说、滴滴出行等)的所有记录将无法找回。你将无法再登录、使用前述服务,你曾获得的充值余额、游戏道具、积分、会籍、资格、订单、优惠券、礼品卡、票券及其他卡券等视为你自行放弃,将无法继续使用。你理解并同意,CRMEB无法协助你重新恢复前述服务。

\\n

(5)你CRMEB帐号所关注的所有CRMEB公众帐号将被取消关注,与CRMEB公众帐号的所有功能或服务都将无法继续使用。

\\n

(6)如果你的CRMEB帐号同时是CRMEB公众帐号(包括:订阅号、服务号、企业号、小程序等)、CRMEB开放平台开发者帐号、企业CRMEB的管理员,你需先解除相关身份。

\\n

(7)在CRMEB帐号注销期间,如果你的CRMEB帐号被他人投诉、被国家机关调查或者正处于诉讼、仲裁程序中,CRMEB有权自行终止你CRMEB帐号的注销而无需另行得到你的同意。

\\n

  请注意,注销你的CRMEB帐号并不代表本CRMEB帐号注销前的帐号行为和相关责任得到豁免或减轻。

\\n

 

\\n

 

\\n

 

\\n

 

\\n

 

\"}', 0, '2022-09-14 18:40:26', '2022-09-14 18:40:26'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (98, 'userPrivacyAgreement', '', 0, '{\"agreement\":\"

一、注册协议条款的确认和接受

\\n

***网(以下亦称“本网站”)同意按照本协议的规定及其不定时发布的操作规则提供基于互联网和移动互联网的相关服务(以下称“网络服务”)。

\\n

为获得网络服务, 申请人应当认真阅读、充分理解本《协议》中各条款, 包括免除或者限制文都责任的免责条款及对用户的权利限制条款。审慎阅读并选择接受或不接受本《协议》(未成年人应在法定监护人陪同下阅读)。

\\n

同意接受本协议的全部条款的, 申请人应当按照页面上的提示完成全部的注册程序, 并在注册程序过程中点击“同意”按钮, 否则视为不接受本《协议》全部条款, 申请人应当终止并退出申请。

\\n

本《协议》可由文都定期更新, 更新后的协议条款一旦公布即代替原来的协议条款, 恕不再另行通知, 用户可在文都查阅最新版协议条款。在文都修改《协议》条款后, 如果用户不接受修改后的条款, 请立即停止使用文都提供的网络服务, 继续使用的用户将被视为已接受了修改后的协议。

\\n

二、服务内容

\\n

1、网络服务的具体内容由文都根据实际情况提供, 包括学习资讯、学习工具、文都社群、文都问答、SIS在线测评、文都直播、文都网校、文都中小学、文都国际教育、文都考研集训营、泉题库及其旗下APP相关应用等服务。

\\n

2、提供的网络服务包括收费和免费。收费服务包括但不限于文都网、文都网校和APP的部分收费课程, 用户使用收费网络服务需要支付约定费用。对于收费服务, 文都会在用户使用之前给予用户明确的提示, 只有用户根据提示确认同意支付相关费用, 用户才能使用该等收费服务。如用户未支付相关费用, 则文都有权不向用户提供该等收费服务。

\\n

3、用户理解, 文都仅提供文都明确承诺的网络服务, 除此之外与相关网络服务有关的设备(如个人电脑、手机、及其他与接入互联网或移动网有关的装置)及所需的费用(如为接入互联网而支付的电话费及上网费、为使用移动网络而支付的手机费)均应由用户自行负担。

\\n

4、用户理解,文都网/文都网校/文都直播平台提供并提请用户在购买课程前先完整试听。用户可按《文都网校退班政策说明》除特别说明外,包括但不限于PC端和移动端下载课件在内的所有服务均附期限,到期终止。用户应在截止日期前享受其购买的服务。

\\n

三、用户帐号

\\n

1、经本网站注册系统完成注册程序并通过身份认证的用户即为正式用户。

\\n

2、如发现用户帐号中含有不雅文字或不恰当名称的, 文都保留注销其用户帐号的权利。

\\n

3、用户帐号的所有权归文都, 用户完成申请注册手续后, 用户享有使用权。3个月未使用的用户账号, 文都保留收回的权利。

\\n

4、用户有义务保证密码和帐号的安全, 用户利用该帐号所进行的一切活动引起的任何损失或损害, 由用户自行承担全部责任, 文都不承担任何责任。如用户发现帐号遭到未授权的使用或发生其他任何安全问题, 应立即修改账号密码并妥善保管。因黑客行为或用户的保管疏忽导致帐号非法使用, 文都不承担任何责任。

\\n

5、用户帐号和密码仅由初始申请注册人使用,用户不得将自己用户账户或密码有偿或无偿以转让、出借、授权等方式提供给第三人操作和使用, 否则用户应当自行承担因违反此要求而遭致的任何损失。违反本项约定的,文都并保留收回账号的权利。若因违反本约定对他人造成损害的,用户应与实际使用人承担连带赔偿责任,同时文都保留追究用户违约责任的权利。

\\n

6、用户帐号在丢失、遗忘密码及因合用产生使用权归属纠纷后, 须遵照文都的申诉途径请求找回帐号。用户可以凭初始注册资料向文都申请找回帐号。文都的账户恢复机制仅负责识别申请用户所提资料与系统记录资料是否一致, 而无法识别申诉人是否系帐号的真正使用权人。对用户因被他人冒名申请而致的任何损失, 文都不承担任何责任, 用户知晓帐号及密码保管责任在于用户, 文都并不承诺帐号丢失或遗忘密码后用户一定能通过申诉找回帐号。用户应当谨慎填写初始手机号或注册邮箱作为确认接收争议帐号的指定邮箱。

\\n

7、文都建议用户应当使用本人名义为用户账户充值或行使付款行为。若用户存在使用第三人的名义进行充值或付款,或委托第三人代为充值或付款之行为的,则以上行为被视作本人的行为,若由于该第三人行为导致充值或付款行为失败或成功后又被撤销的,均被认为是用户本人真实意思的表示和用户本人实施的行为,由此所造成的一切法律后果均由用户自行承担。

\\n

四、使用规则

\\n

1、用户在使用文都网络服务过程中, 必须遵循国家的相关法律法规, 不得发布危害国家安全、色情、暴力、侵犯版权等任何合法权利等非法内容; 也不得利用文都平台发布含有虚假、有害、胁迫、侵害他人隐私、骚扰、侵害、中伤、粗俗、或其它道德上令人反感的内容。

\\n

2、本网站可依其合理判断, 对违反有关法律法规或本协议约定; 或侵犯、妨害、威胁任何人权利或安全的内容, 或者假冒他人的行为, 文都有权停止传输任何前述内容, 并有权依其自行判断对违反本条款的任何用户采取适当的法律行动, 包括但不限于, 删除具有违法性、侵权性、不当性等内容, 阻止其使用文都全部或部分网络服务, 并且依据法律法规保存有关信息并向有关部门报告等。

\\n

3、对于经由本网络服务而传送的内容, 文都不保证前述内容的正确性、完整性或品质。用户在接受本服务时, 有可能会接触到令人不快、不适当或令人厌恶的内容。在任何情况下, 文都均不对任何内容负责, 包括但不限于任何内容发生任何错误或纰漏以及衍生的任何损失或损害。文都有权(但无义务)自行拒绝或删除经由文都网络服务提供的任何内容。用户使用上述内容, 应自行承担风险。

\\n

4、对于用户通过本网络服务(包括但不限于文都网、文都社群、文都中小学、文都国际教育、文都网校、泉题库、SIS在线测评及对应APP、相关应用等服务)上传到文都上可公开获取区域的任何内容, 用户同意文都在全世界范围内具有免费的、永久性的、不可撤销的、非独 家的和完全再许可的权利和许可, 以使用、复制、修改、改编、出版、翻译、据以创作衍生作品、传播、表演和展示此等内容(整体或部分), 和/或将此等内容编入当前已知的或以后开发的其他任何形式的作品、媒体或技术中。

\\n

5、用户通过文都网络服务所发布的任何内容并不反映文都的观点或政策, 文都对此不承担任何责任。用户须对上述内容的真实性、合法性、无害性、有效性等全权负责, 与用户所发布信息相关的任何法律责任由用户自行承担, 与文都无关。

\\n

五、版权声明

\\n

本网站提供的网络服务中包含的任何文本、图片、图形、音频和/或视频资料均受版权、商标和/或其它财产所有权法律的保护, 未经相关权利人同意, 上述资料均不得在任何媒体直接或间接发布、播放、出于播放或发布目的而改写或再发行, 或者被用于其他任何商业目的。所有以上资料或资料的任何部分仅可作为私人和非商业用途保存。文都不就由上述资料产生或在传送或递交全部或部分上述资料过程中产生的延误、不准确、错误和遗漏或从中产生或由此产生的任何损害赔偿, 以任何形式, 向用户或任何第三方负责。

\\n

六、隐私保护

\\n

1、保护用户隐私是文都的一项基本政策, 本网站保证不对外公开或向第三方提供用户的注册资料及用户在使用网络服务时存储在文都内的非公开内容, 但下列情况除外:

\\n

(1)事先获得用户的书面明确授权;

\\n

(2)根据有关的法律法规要求;

\\n

(3)按照相关政府主管部门的要求;

\\n

(4)为维护社会公众的利益;

\\n

(5)为维护本网站的合法权益;

\\n

2、为了更好地为用户提供全面服务,用户同意文都可将用户注册资料及使用信息提供文都关联公司使用。文都保证前述关联公司同等级地严格遵循本协议第六条第1款之隐私保护责任。

\\n

3、用户同意:文都或文都运营商的关联公司在必要时有权根据用户注册时或接受服务时所提供的联系信息(包括但不限于电子邮件地址、联系电话、联系地址、即时聊天工具账号等),通过电子邮件、电话、短信、邮寄、即时聊天、弹出页面等方式向用户发送如下信息:

\\n

(1)各类重要通知信息,可能包括但不限于订单、交易单、修改密码提示等重要信息。此类信息可能对用户的权利义务产生重大的有利或不利影响,用户务必及时关注。

\\n

(2)商品和服务广告、促销优惠等商业性信息。若用户不愿意接收此类信息,则可通过告知(口头或书面)的方式通知文都或文都运营商的关联公司取消发送,亦可通过文都或文都运营商关联公司所提供的相应退订功能(若有)进行退订。

\\n

七、协议的用途、更新和效力

\\n

1、本协议之服务条款用以规范用户使用文都提供的服务,本协议与文都社区行为准则构成完整的协议。

\\n

2、鉴于国家法律法规不时变化及文都运营之需要,文都有权对本协议条款不时地进行修改,修改后的协议一旦被公布于文都上即告生效,并替代原来的协议。 用户有义务不时关注并阅读最新版的协议及网站公告。如用户不同意更新后的协议,则应立即停止接受文都依据本协议提供的服务;若用户继续使用文都提供的服务的,即视为同意更新后的协议。 如果本协议中任何一条被视为废止、无效或因任何理由不可执行,该条应视为可分的且并不影响任何其余条款的有效性和可执行性。

\\n

八、联系方式

\\n

当您有个人信息相关问题或其他的投诉、建议等,可以通过如下方式与文都联系,文都将尽快审核所涉及内容,并于15个工作日内对于您的问题、投诉、建议进行回复;

\\n

 

\\n

 

\\n

 

\"}', 0, '2022-09-14 18:41:02', '2022-09-14 18:41:02'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (136, 'retail_store_switch', 'retail_store_switch', 0, '1', 0, '2022-10-10 19:49:43', '2022-10-10 19:49:50'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (137, 'retail_store_line', 'retail_store_line', 0, '100', 0, '2022-10-10 19:50:03', '2022-10-10 19:50:03'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (138, 'retail_store_binding_type', 'retail_store_binding_type', 0, '0', 0, '2022-10-10 19:50:15', '2022-10-10 19:50:15'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (139, 'retail_store_bubble_switch', 'retail_store_bubble_switch', 0, '1', 0, '2022-10-10 19:50:24', '2022-10-10 19:50:24'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (140, 'retail_store_brokerage_first_ratio', 'retail_store_brokerage_first_ratio', 0, '20', 0, '2022-10-10 19:50:35', '2022-10-10 19:50:35'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (141, 'retail_store_brokerage_second_ratio', 'retail_store_brokerage_second_ratio', 0, '10', 0, '2022-10-10 19:50:42', '2022-10-10 19:50:42'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (142, 'retail_store_brokerage_freezing_time', 'retail_store_brokerage_freezing_time', 0, '0', 0, '2022-10-10 19:50:49', '2022-10-10 19:50:49'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (143, 'retail_store_extract_min_price', 'retail_store_extract_min_price', 0, '2', 0, '2022-10-10 19:51:02', '2022-10-10 19:51:02'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (144, 'retail_store_extract_bank', 'retail_store_extract_bank', 0, '中国银行,建设银行,中信银行,招商银行', 0, '2022-10-10 19:51:08', '2022-10-10 19:51:08'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (158, 'system_product_copy_type', 'system_product_copy_type', 16, '1', 0, '2022-10-13 17:56:40', '2022-10-13 17:56:40'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (159, 'copy_product_apikey', 'copy_product_apikey', 16, '11111111111111111', 0, '2022-10-13 17:56:40', '2022-10-13 17:56:40'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (173, 'guaranteed_amount', '', 0, '150', 0, '2022-10-20 18:16:14', '2022-10-20 18:16:14'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (174, 'transfer_min_amount', '', 0, '10', 0, '2022-10-20 18:16:14', '2022-10-20 18:16:14'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (175, 'transfer_max_amount', '', 0, '5000', 0, '2022-10-20 18:16:14', '2022-10-20 18:16:14'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (203, 'logistics_type', 'logistics_type', 20, '1', 0, '2022-10-27 14:27:10', '2022-10-27 14:27:10'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (204, 'system_express_app_code', 'system_express_app_code', 20, '1111111111', 0, '2022-10-27 14:27:10', '2022-10-27 14:27:10'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (250, 'consumer_h5_url', 'consumer_h5_url', 24, '11111111111111111', 0, '2022-11-03 16:50:07', '2022-11-03 16:50:07'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (251, 'consumer_hotline', 'consumer_hotline', 24, '400-8888-794', 0, '2022-11-03 16:50:07', '2022-11-03 16:50:07'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (252, 'consumer_type', 'consumer_type', 24, 'h5', 0, '2022-11-03 16:50:07', '2022-11-03 16:50:07'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (254, 'tengxun_map_key', 'tengxun_map_key', 5, NULL, 0, '2022-11-03 16:50:42', '2022-11-03 16:50:42'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (287, 'config_export_open', 'config_export_open', 21, '1', 0, '2022-11-03 17:13:16', '2022-11-03 17:13:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (288, 'config_export_to_name', 'config_export_to_name', 21, '王多鱼', 0, '2022-11-03 17:13:16', '2022-11-03 17:13:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (289, 'config_export_to_tel', 'config_export_to_tel', 21, '15811111111', 0, '2022-11-03 17:13:16', '2022-11-03 17:13:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (290, 'config_export_to_address', 'config_export_to_address', 21, '陕西省西安市未央区启航时代广场A座', 0, '2022-11-03 17:13:16', '2022-11-03 17:13:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (291, 'config_export_siid', 'config_export_siid', 21, '123456', 0, '2022-11-03 17:13:16', '2022-11-03 17:13:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (458, 'order_cancel_time', 'order_cancel_time', 19, '5', 0, '2022-11-14 12:19:09', '2022-11-14 12:19:09'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (459, 'order_activity_time', 'order_activity_time', 19, '10', 0, '2022-11-14 12:19:09', '2022-11-14 12:19:09'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (460, 'auto_take_delivery_day', 'auto_take_delivery_day', 19, '1', 0, '2022-11-14 12:19:09', '2022-11-14 12:19:09'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (461, 'auto_complete_day', 'auto_complete_day', 19, '1', 0, '2022-11-14 12:19:09', '2022-11-14 12:19:09'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (462, 'stor_reason', 'stor_reason', 19, '收货地址填错了 \n与描述不符 \n信息填错了,重新拍 \n收到商品损坏了 \n未按预定时间发货 \n其它原因', 0, '2022-11-14 12:19:09', '2022-11-14 12:19:09'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (532, 'mer_site_logo_lefttop', 'mer_site_logo_lefttop', 38, 'crmebimage/public/product/2022/11/15/a0a81124d5564489b73da75d4e23fbb6soavbzvd8b.png', 0, '2022-11-30 10:06:58', '2023-02-13 18:38:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (533, 'mer_site_logo_square', 'mer_site_logo_square', 38, 'crmebimage/public/product/2022/11/15/52625cbea8dc452fb264ea220ba683f9mmt1arbvlp.png', 0, '2022-11-30 10:06:58', '2023-02-13 18:38:47'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (534, 'merchant_site_logo_login', 'merchant_site_logo_login', 38, 'crmebimage/public/product/2022/11/15/4a642a7725ad45ce903f1af5141aeeaf8zmmdvpr95.png', 0, '2022-11-30 10:06:58', '2023-02-13 18:38:38'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (535, 'merchant_login_bg_pic', 'merchant_login_bg_pic', 38, 'crmebimage/public/product/2022/11/15/8160be048f6d47da8fe195f5b798c352k1rc6zwhfy.png', 0, '2022-11-30 10:06:58', '2023-02-13 18:38:30'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (536, 'mer_admin_login_left_logo', 'mer_admin_login_left_logo', 38, 'crmebimage/public/product/2022/11/15/413a81cab1794948a68b56fd6425c804pwxhtr4g05.png', 0, '2022-11-30 10:06:58', '2023-02-13 18:38:21'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (537, 'mer_site_url', 'mer_site_url', 38, 'adminmer.merchant.java.crmeb.net', 0, '2022-11-30 10:06:58', '2023-02-13 18:37:08'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (538, 'copyright_label', 'copyright_label', 0, '61', 0, '2022-11-30 15:00:38', '2022-11-30 15:00:38'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (540, 'copyright_company_name', 'copyright_company_name', 0, 'Copyright © 2022', 0, '2022-11-30 15:00:38', '2022-11-30 15:00:38'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (541, 'copyright_company_image', 'copyright_company_image', 0, 'crmebimage/public/product/2022/11/30/a22845348f21480ab9133ebc8c637693fkf32m5jzg.png', 0, '2022-11-30 15:00:38', '2022-11-30 21:19:22'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (614, 'store_user_min_recharge', 'store_user_min_recharge', 42, '0.02', 0, '2022-12-01 14:38:49', '2022-12-01 14:38:49'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (615, 'recharge_switch', 'recharge_switch', 42, '\'1\'', 0, '2022-12-01 14:38:49', '2022-12-01 14:38:49'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (616, 'recharge_attention', 'recharge_attention', 42, '1、充值后帐户的金额不能提现,可用于商城消费使用\n2、佣金导入账户之后不能再次导出、不可提现\n3、账户充值出现问题可联系商城客服,也可拨打商城客服热线:4008888888。\n4、用户最低充值金额0.02元。', 0, '2022-12-01 14:38:49', '2022-12-01 14:38:49'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (655, 'qnUploadUrl', 'qnUploadUrl', 13, '11111111111111111', 0, '2022-12-05 11:59:33', '2022-12-05 11:59:33'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (656, 'qnAccessKey', 'qnAccessKey', 13, '11111111111111111', 0, '2022-12-05 11:59:33', '2022-12-05 11:59:33'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (657, 'qnSecretKey', 'qnSecretKey', 13, '11111111111111111', 0, '2022-12-05 11:59:33', '2022-12-05 11:59:33'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (658, 'qnStorageName', 'qnStorageName', 13, '11111111111111111', 0, '2022-12-05 11:59:33', '2022-12-05 11:59:33'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (659, 'qnStorageRegion', 'qnStorageRegion', 13, 'huadong', 0, '2022-12-05 11:59:33', '2022-12-05 11:59:33'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (660, 'field109', 'field109', 13, '11111111111111111', 0, '2022-12-05 11:59:33', '2022-12-05 11:59:33'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (698, 'routine_appid', 'routine_appid', 9, '11111111111111111', 0, '2022-12-07 18:46:00', '2023-02-13 18:33:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (699, 'routine_appsecret', 'routine_appsecret', 9, '11111111111111111', 0, '2022-12-07 18:46:00', '2023-02-13 18:33:25'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (700, 'routine_name', 'routine_name', 9, '一码秦川', 0, '2022-12-07 18:46:00', '2023-02-13 18:33:29'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (701, 'is_install', 'is_install', 0, '1', 0, '2022-12-13 10:04:11', '2022-12-13 10:04:11'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (859, 'sms_code_expire', 'sms_code_expire', 15, '5', 0, '2022-12-30 09:58:15', '2022-12-30 09:58:15'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (938, 'ali_pay_appid', 'ali_pay_appid', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (939, 'ali_pay_private_key', 'ali_pay_private_key', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (940, 'ali_pay_public_key', 'ali_pay_public_key', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (941, 'ali_pay_public_key2', 'ali_pay_public_key2', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (942, 'ali_pay_return_url', 'ali_pay_return_url', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (943, 'ali_pay_recharge_return_url', 'ali_pay_recharge_return_url', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (944, 'ali_pay_quit_url', 'ali_pay_quit_url', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (945, 'ali_pay_recharge_quit_url', 'ali_pay_recharge_quit_url', 29, '11111111111111111', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (946, 'ali_pay_status', 'ali_pay_status', 29, '\'0\'', 0, '2023-01-03 14:18:16', '2023-01-03 14:18:16'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (947, 'yue_pay_status', 'yue_pay_status', 28, '\'1\'', 0, '2023-01-03 14:18:51', '2023-01-03 14:18:51'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (952, 'pay_routine_mchid', 'pay_routine_mchid', 27, '11111111111111111', 0, '2023-01-13 10:07:30', '2023-01-13 10:07:30'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (953, 'pay_routine_certificate_path', 'pay_routine_certificate_path', 27, '11111111111111111.p12', 0, '2023-01-13 10:07:30', '2023-01-13 10:07:30'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (954, 'pay_routine_key', 'pay_routine_key', 27, '11111111111111111', 0, '2023-01-13 10:07:30', '2023-01-13 10:07:30'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (974, 'bottom_navigation_is_custom', 'bottom_navigation_is_custom', 0, '1', 0, '2023-02-04 15:52:13', '2023-02-04 15:52:13'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (985, 'wechat_appid', 'wechat_appid', 8, '111', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (986, 'wechat_appsecret', 'wechat_appsecret', 8, '111', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (987, 'field120', 'field120', 8, '111', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (988, 'field121', 'field121', 8, '111', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (989, 'field122', 'field122', 8, '1', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (990, 'wechat_share_img', 'wechat_share_img', 8, 'crmebimage/public/product/2022/11/15/277ee787db47426cbe7acd8bec1586eexaq1uqssen.png', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (991, 'wechat_qrcode', 'wechat_qrcode', 8, 'crmebimage/public/product/2022/11/15/277ee787db47426cbe7acd8bec1586eexaq1uqssen.png', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (992, 'h5_avatar', 'h5_avatar', 8, 'crmebimage/public/product/2022/11/15/b16e3202e99b44ac891255143cde33ab284uqnm1bs.png', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (993, 'wechat_share_title', 'wechat_share_title', 8, 'CRMEB', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (994, 'wechat_share_synopsis', 'wechat_share_synopsis', 8, 'CRMEB 是西安众邦网络科技有限公司旗下品牌,众邦科技8年专注电商的技术沉淀和行业积累,\n专业打造行业领先,功能强大,易用性强,扩展性强产品,CRMEB现有CRMEB单/多商户系统(Java版本)、\nCRMEB Pro系统、CRMEB 多商户系统、知识付费系统等系统产品。', 0, '2023-02-13 18:42:55', '2023-02-13 18:42:55'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1004, 'api_url', 'api_url', 31, '11111111111111111', 0, '2023-02-13 18:46:03', '2023-02-13 18:46:03'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1017, 'site_logo_lefttop', 'site_logo_lefttop', 4, 'crmebimage/public/product/2022/11/15/4a642a7725ad45ce903f1af5141aeeaf8zmmdvpr95.png', 0, '2023-02-14 10:02:28', '2023-02-14 10:02:28'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1018, 'site_logo_square', 'site_logo_square', 4, 'crmebimage/public/product/2022/11/15/52625cbea8dc452fb264ea220ba683f9mmt1arbvlp.png', 0, '2023-02-14 10:02:28', '2023-02-14 10:02:28'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1019, 'site_logo_login', 'site_logo_login', 4, 'crmebimage/public/product/2022/11/15/4a642a7725ad45ce903f1af5141aeeaf8zmmdvpr95.png', 0, '2023-02-14 10:02:28', '2023-02-14 10:02:28'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1020, 'admin_login_bg_pic', 'admin_login_bg_pic', 4, 'crmebimage/public/product/2022/11/15/8160be048f6d47da8fe195f5b798c352k1rc6zwhfy.png', 0, '2023-02-14 10:02:28', '2023-02-14 10:02:28'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1021, 'admin_login_left_logo', 'admin_login_left_logo', 4, 'crmebimage/public/product/2022/11/15/af569067eb53470b9479ee0e2ea03ff2zexj9790ku.png', 0, '2023-02-14 10:02:28', '2023-02-14 10:02:28'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1030, 'pay_weixin_mchid', 'pay_weixin_mchid', 26, '111', 0, '2023-02-14 15:53:06', '2023-02-14 15:53:06'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1031, 'pay_weixin_certificate_path', 'pay_weixin_certificate_path', 26, '/www/wwwroot/111.p12', 0, '2023-02-14 15:53:06', '2023-02-14 15:53:06'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1032, 'pay_weixin_key', 'pay_weixin_key', 26, '111', 0, '2023-02-14 15:53:06', '2023-02-14 15:53:06'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1033, 'pay_weixin_open', 'pay_weixin_open', 26, '\'1\'', 0, '2023-02-14 15:53:06', '2023-02-14 15:53:06'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1042, 'mobile_top_logo', 'mobile_top_logo', 25, 'crmebimage/public/product/2022/11/15/f43f49cbed0d4eb18b5ab635b2bb9f973mpd2tzyr7.png', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1043, 'mobile_login_logo', 'mobile_login_logo', 25, 'crmebimage/public/product/2022/11/15/277ee787db47426cbe7acd8bec1586eexaq1uqssen.png', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1044, 'h5_avatar', 'h5_avatar', 25, 'crmebimage/public/product/2022/11/15/b16e3202e99b44ac891255143cde33ab284uqnm1bs.png', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1045, 'site_name', 'site_name', 25, 'CRMEB JAVA国内多商户', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1046, 'seo_title', 'seo_title', 25, 'CRMEB JAVA国内多商户', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1047, 'wechat_share_title', 'wechat_share_title', 25, 'CRMEB JAVA', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1048, 'site_url', 'site_url', 25, 'h5.merchant.java.crmeb.net', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1049, 'shop_street_switch', 'shop_street_switch', 25, '\'1\'', 0, '2023-02-15 11:12:54', '2023-02-15 11:12:54'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1050, 'pay_weixin_app_mchid', 'pay_weixin_app_mchid', 30, '11111111111111111', 0, '2023-02-15 14:32:50', '2023-02-15 14:32:50'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1051, 'pay_weixin_app_key', 'pay_weixin_app_key', 30, '11111111111111111', 0, '2023-02-15 14:32:50', '2023-02-15 14:32:50'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1052, 'pay_weixin_app_certificate_path', 'pay_weixin_app_certificate_path', 30, '11111111111111111.p12', 0, '2023-02-15 14:32:50', '2023-02-15 14:32:50'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1053, 'wechat_app_appid', 'wechat_app_appid', 54, '11111111111111111', 0, '2023-02-15 14:33:34', '2023-02-15 14:33:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1054, 'wechat_app_appsecret', 'wechat_app_appsecret', 54, '11111111111111111', 0, '2023-02-15 14:33:34', '2023-02-15 14:33:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1055, 'price', 'price', 48, '1', 0, '2023-02-18 10:56:57', '2023-02-18 10:56:57'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1056, 'give_money', 'give_money', 48, '2', 0, '2023-02-18 10:56:57', '2023-02-18 10:56:57'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1071, 'localUploadUrl', 'localUploadUrl', 11, 'http://127.0.0.1:8080', 0, '2023-02-18 11:15:34', '2023-02-18 11:15:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1072, 'image_ext_str', 'image_ext_str', 11, 'jpg,jpeg,gif,png,bmp,png,jpg,mp4,webp,png', 0, '2023-02-18 11:15:34', '2023-02-18 11:15:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1073, 'image_max_size', 'image_max_size', 11, '5', 0, '2023-02-18 11:15:34', '2023-02-18 11:15:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1074, 'file_ext_str', 'file_ext_str', 11, 'zip,doc,docx,xls,xlsx,pdf,mp3,wma,wav,amr,mp4,webp,png', 0, '2023-02-18 11:15:34', '2023-02-18 11:15:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1075, 'file_max_size', 'file_max_size', 11, '20', 0, '2023-02-18 11:15:34', '2023-02-18 11:15:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1076, 'uploadType', 'uploadType', 11, '1', 0, '2023-02-18 11:15:34', '2023-02-18 11:15:34'); INSERT INTO `eb_system_config` (`id`, `name`, `title`, `form_id`, `value`, `status`, `create_time`, `update_time`) VALUES (1077, 'file_is_save', 'file_is_save', 11, '1', 0, '2023-02-18 11:15:34', '2023-02-18 11:15:34'); COMMIT; -- ---------------------------- -- Table structure for eb_system_form_temp -- ---------------------------- DROP TABLE IF EXISTS `eb_system_form_temp`; CREATE TABLE `eb_system_form_temp` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '表单模板id', `name` varchar(500) NOT NULL DEFAULT '' COMMENT '表单名称', `info` varchar(500) NOT NULL DEFAULT '' COMMENT '表单简介', `content` text NOT NULL COMMENT '表单内容', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='表单模板'; -- ---------------------------- -- Records of eb_system_form_temp -- ---------------------------- BEGIN; INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (1, '商城基础配置', '商城基础配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"移动商城api\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":132,\"renderKey\":1658820779579},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"移动商城api_小程序源码下载前必须配置移动商城api\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"front_api_url\"},{\"__config__\":{\"label\":\"网站名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":128,\"renderKey\":1658820172874},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入网站名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"10\",\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"site_name\"},{\"__config__\":{\"label\":\"网站地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":129,\"renderKey\":1658820180082},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"webSiet网站地址网站地址\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"site_url\"}]}', '2022-07-26 09:40:52', '2022-09-22 17:44:49'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (2, '充值配置', '商城配置-充值配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":200,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"用户最低充值金额\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":120,\"renderKey\":1658821129269},\"placeholder\":\"用户最低充值金额\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"store_user_min_recharge\"},{\"__config__\":{\"label\":\"小程序充值开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":121,\"renderKey\":1658821199539,\"defaultValue\":\"‘0’\"},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"\'1\'\"},{\"label\":\"关闭\",\"value\":\"‘0’\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"recharge_switch\"},{\"__config__\":{\"label\":\"充值注意事项\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":122,\"renderKey\":1658821202131,\"defaultValue\":\"充值后帐户的金额不能提现,可用于商城消费使用 佣金导入账户之后不能再次导出、不可提现 账户充值出现问题可联系商城客服,也可拨打商城客服热线:4008888888\"},\"type\":\"textarea\",\"placeholder\":\"请输入充值注意事项\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"recharge_attention\"}]}', '2022-07-26 15:41:23', '2022-07-26 15:41:23'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (3, 'APP自动升级', 'APP自动升级', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"如何获取\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":false,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658821369195,\"defaultValue\":\"https://www.kancloud.cn/crmeb/crmeb_java/2392251\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"更新地址获取\",\"style\":{\"width\":\"75%\"},\"clearable\":false,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":true,\"disabled\":false,\"__vModel__\":\"app_update_url\"},{\"__config__\":{\"label\":\"ios更新地址\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"IOS和Android怎么配置更新\",\"tipsIsLink\":true,\"tipsLink\":\"https://www.kancloud.cn/crmeb/crmeb_java/2392251\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1658821372243},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"ios更新地址\",\"style\":{\"width\":\"75%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ios_address\"},{\"__config__\":{\"label\":\"安卓更新地址\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1658821374133},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入安卓更新地址\",\"style\":{\"width\":\"75%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"android_address\"},{\"__config__\":{\"label\":\"当前版本号\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1658821376232,\"defaultValue\":\"1.1.0\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入当前版本号\",\"style\":{\"width\":\"75%\"},\"clearable\":false,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"app_version\"},{\"__config__\":{\"label\":\"强制更新\",\"tag\":\"el-switch\",\"tagIcon\":\"switch\",\"defaultValue\":\"\'0\'\",\"span\":24,\"showLabel\":true,\"labelWidth\":120,\"layout\":\"colFormItem\",\"required\":false,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/switch\",\"formId\":105,\"renderKey\":1658821380922},\"style\":{},\"disabled\":false,\"active-text\":\"\",\"inactive-text\":\"\",\"active-color\":null,\"inactive-color\":null,\"active-value\":\"\'1\'\",\"inactive-value\":\"\'0\'\",\"__vModel__\":\"open_upgrade\"}]}', '2022-07-26 15:48:43', '2022-07-26 15:49:30'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (4, '平台登录页配置', '平台登录页配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"左上角菜单logo(236x64)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":120,\"renderKey\":1658822106182},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"site_logo_lefttop\"},{\"__config__\":{\"label\":\"左上角缩回菜单logo(164x164)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":121,\"renderKey\":1658822107604},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"site_logo_square\"},{\"__config__\":{\"label\":\"登录页logo(164x164)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":122,\"renderKey\":1658822109383},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"site_logo_login\"},{\"__config__\":{\"label\":\"登录页背景图(1920x1080)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":123,\"renderKey\":1658822110581},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"admin_login_bg_pic\"},{\"__config__\":{\"label\":\"登录页左侧logo\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":104,\"renderKey\":1666926086111},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"admin_login_left_logo\"}]}', '2022-07-26 15:59:45', '2022-10-28 11:02:09'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (5, '物流配置', '物流配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"腾讯地图KEY\",\"labelWidth\":180,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":false,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1658822504108},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入腾讯地图KEY\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"tengxun_map_key\"}]}', '2022-07-26 16:04:28', '2022-11-01 17:11:19'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (6, '99api', '99api', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"ApiKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658829728034},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入ApiKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"importProductToken\"}]}', '2022-07-26 18:02:25', '2022-07-26 18:02:25'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (7, '客服配置', '客服配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"客服H5链接\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"点击查看详细\",\"tipsIsLink\":true,\"tipsLink\":\"http://help.crmeb.net/crmeb_java/2322225\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658829728034},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入客服H5链接\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"yzf_h5_url\"},{\"__config__\":{\"label\":\"客服电话\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":120,\"renderKey\":1658829905175},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入客服电话\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"consumer_hotline\"},{\"__config__\":{\"label\":\"电话服务\",\"tag\":\"el-switch\",\"tagIcon\":\"switch\",\"defaultValue\":\"\'true\'\",\"span\":24,\"showLabel\":true,\"labelWidth\":null,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/switch\",\"formId\":121,\"renderKey\":1658829908086},\"style\":{},\"disabled\":false,\"active-text\":\"\",\"inactive-text\":\"\",\"active-color\":null,\"inactive-color\":null,\"active-value\":\"\'true\'\",\"inactive-value\":\"\'false\'\",\"__vModel__\":\"telephone_service_switch\"}]}', '2022-07-26 18:07:02', '2022-07-26 18:07:02'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (8, '公众号配置', '应用配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"AppId\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"点击查看详细\",\"tipsIsLink\":false,\"tipsLink\":\"http://help.crmeb.net/crmeb_java/2322225\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658829728034},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入AppId\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_appid\"},{\"__config__\":{\"label\":\"AppSecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":120,\"renderKey\":1658829905175},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入AppSecret\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_appsecret\"},{\"__config__\":{\"label\":\"微信验证Token\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":120,\"renderKey\":1658830199598},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入单行文本微信验证Token\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field120\"},{\"__config__\":{\"label\":\"EncodingAESKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":121,\"renderKey\":1658830273156},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入EncodingAESKey\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"field121\"},{\"__config__\":{\"label\":\"消息加密方式\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":122,\"renderKey\":1658830307145},\"__slot__\":{\"options\":[{\"label\":\"明文模式\",\"value\":1},{\"label\":\"兼容模式\",\"value\":2},{\"label\":\"安全模式\",\"value\":3}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"field122\"},{\"__config__\":{\"label\":\"微信分享图片\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":123,\"renderKey\":1658830347757},\"__slot__\":{\"list-type\":true},\"disabled\":true,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"wechat_share_img\"},{\"__config__\":{\"label\":\"公众号关联二维码\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":124,\"renderKey\":1658830349014},\"__slot__\":{\"list-type\":true},\"disabled\":true,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"wechat_qrcode\"},{\"__config__\":{\"label\":\"用户H5默认头像\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":false,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":128,\"renderKey\":1658830458392},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"h5_avatar\"},{\"__config__\":{\"label\":\"微信分享标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":125,\"renderKey\":1658830398663,\"defaultValue\":\"CRMEB\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入微信分享标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_share_title\"},{\"__config__\":{\"label\":\"微信分享简介\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":127,\"renderKey\":1658830402167,\"defaultValue\":\"CRMEB\"},\"type\":\"textarea\",\"placeholder\":\"请输入微信分享简介\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_share_synopsis\"}]}', '2022-07-26 18:14:40', '2022-07-26 18:14:40'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (9, '小程序配置', '应用配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"appId\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"点击查看详细\",\"tipsIsLink\":true,\"tipsLink\":\"http://help.crmeb.net/crmeb_java/2095774\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":129,\"renderKey\":1658888998739},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入appId\",\"style\":{\"width\":\"80%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"routine_appid\"},{\"__config__\":{\"label\":\"AppSecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":130,\"renderKey\":1658889000952},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入AppSecret\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"routine_appsecret\"},{\"__config__\":{\"label\":\"小程序名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":131,\"renderKey\":1658889079895},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入小程序名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"routine_name\"}]}', '2022-07-27 10:31:42', '2022-07-27 10:31:42'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (10, 'app配置', 'app配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"appId\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"点击查看详细\",\"tipsIsLink\":true,\"tipsLink\":\"http://help.crmeb.net/crmeb_java/2095774\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":129,\"renderKey\":1658888998739},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入appId\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_app_appid\"},{\"__config__\":{\"label\":\"AppSecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":130,\"renderKey\":1658889000952},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入AppSecret\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_app_appsecret\"}]}', '2022-07-27 10:33:08', '2022-07-27 10:33:08'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (11, '文件上传-基础配置', '文件上传-基础配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"本地图片域名\",\"labelWidth\":270,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658889372223},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入本地图片域名\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"localUploadUrl\"},{\"__config__\":{\"label\":\"允许上传图片后缀\",\"labelWidth\":270,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1658889375411},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"允许上传图片后缀,多个英文逗号分割允许上传图片后缀\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"image_ext_str\"},{\"__config__\":{\"label\":\"允许上传最大图片(单位 M,最大值50 )\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":270,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":103,\"renderKey\":1658889377824},\"placeholder\":\"单位 M允许上传最大图片(单位 M,最大值50 )\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"image_max_size\",\"min\":1,\"max\":50},{\"__config__\":{\"label\":\"允许上传文件后缀\",\"labelWidth\":270,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1658889383774},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\",多个英文逗号分割\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"file_ext_str\"},{\"__config__\":{\"label\":\"允许上传最大文件(单位 M,最大值500 )\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":270,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":105,\"renderKey\":1658889390111},\"placeholder\":\"单位 M允许上传最大文件(单位 M,最大值500 )\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"file_max_size\",\"min\":1,\"max\":500},{\"__config__\":{\"label\":\"文件存储\",\"showLabel\":true,\"labelWidth\":270,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":106,\"renderKey\":1658889408200},\"__slot__\":{\"options\":[{\"label\":\"本地\",\"value\":1},{\"label\":\"七牛云\",\"value\":2},{\"label\":\"阿里云\",\"value\":3},{\"label\":\"腾讯云\",\"value\":4}]},\"placeholder\":\"请选择文件存储\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":false,\"multiple\":false,\"__vModel__\":\"uploadType\"},{\"__config__\":{\"label\":\"文件是否保存本地(云存储)\",\"labelWidth\":270,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":107,\"renderKey\":1658889415068,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"保存\",\"value\":1},{\"label\":\"不保存\",\"value\":0}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"file_is_save\"}]}', '2022-07-27 10:42:00', '2022-07-27 10:42:00'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (12, '阿里云配置', '阿里云配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"空间域名 Domain\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"地址怎么配置?\",\"tipsIsLink\":true,\"tipsLink\":\"https://doc.crmeb.com/web/java/crmeb_java/701\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658974370271,\"defaultValue\":\"http://yourdomain\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入空间域名 Domain\",\"style\":{\"width\":\"80%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alUploadUrl\"},{\"__config__\":{\"label\":\"accessKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1658974372399},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入accessKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alAccessKey\"},{\"__config__\":{\"label\":\"secretKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1658974374036},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入secretKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alSecretKey\"},{\"__config__\":{\"label\":\"存储空间名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1658974376881},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入存储空间名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alStorageName\"},{\"__config__\":{\"label\":\"所属地域\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":105,\"renderKey\":1658974383687},\"__slot__\":{\"options\":[{\"label\":\"华北2(北京)|oss-cn-beijing.aliyuncs.com\",\"value\":\"oss-cn-beijing.aliyuncs.com\"},{\"label\":\"华北 3(张家口)|oss-cn-zhangjiakou.aliyuncs.com\",\"value\":\"oss-cn-zhangjiakou.aliyuncs.com\"},{\"label\":\"华东1(杭州)|oss-cn-hangzhou.aliyuncs.com\",\"value\":\"oss-cn-hangzhou.aliyuncs.com\"},{\"label\":\"华东2(上海)|oss-cn-shanghai.aliyuncs.com\",\"value\":\"oss-cn-shanghai.aliyuncs.com\"},{\"label\":\"华北1(青岛)|oss-cn-qingdao.aliyuncs.com\",\"value\":\"oss-cn-qingdao.aliyuncs.com\"},{\"label\":\"华北5(呼和浩特)|oss-cn-huhehaote.aliyuncs.com\",\"value\":\"oss-cn-huhehaote.aliyuncs.com\"},{\"label\":\"华北6(乌兰察布)|oss-cn-wulanchabu.aliyuncs.com\",\"value\":\"oss-cn-wulanchabu.aliyuncs.com\"},{\"label\":\"华南1(深圳)|oss-cn-shenzhen.aliyuncs.com\",\"value\":\"oss-cn-shenzhen.aliyuncs.com\"},{\"label\":\"华南2(河源)|oss-cn-heyuan.aliyuncs.com\",\"value\":\"oss-cn-heyuan.aliyuncs.com\"},{\"label\":\"华南3(广州)|oss-cn-guangzhou.aliyuncs.com\",\"value\":\"oss-cn-guangzhou.aliyuncs.com\"},{\"label\":\"西南1(成都)|oss-cn-chengdu.aliyuncs.com\",\"value\":\"oss-cn-chengdu.aliyuncs.com\"},{\"label\":\"华南2(河源)|oss-cn-heyuan.aliyuncs.com\",\"value\":\"oss-cn-heyuan.aliyuncs.com\"},{\"label\":\"华南3(广州)|oss-cn-guangzhou.aliyuncs.com\",\"value\":\"oss-cn-guangzhou.aliyuncs.com\"},{\"label\":\"西南1(成都)|oss-cn-chengdu.aliyuncs.com\",\"value\":\"oss-cn-chengdu.aliyuncs.com\"},{\"label\":\"中国(香港)|oss-cn-hongkong.aliyuncs.com\",\"value\":\"oss-cn-hongkong.aliyuncs.com\"},{\"label\":\"美国西部1(硅谷)|oss-us-west-1.aliyuncs.com\",\"value\":\"oss-us-west-1.aliyuncs.com\"},{\"label\":\"美国东部1(弗吉尼亚)|oss-us-east-1.aliyuncs.com\",\"value\":\"oss-us-east-1.aliyuncs.com\"},{\"label\":\"亚太东南1(新加坡)|oss-ap-southeast-1.aliyuncs.com\",\"value\":\"oss-ap-southeast-1.aliyuncs.com\"},{\"label\":\"亚太东南2(悉尼)|oss-ap-southeast-2.aliyuncs.com\",\"value\":\"oss-ap-southeast-2.aliyuncs.com\"},{\"label\":\"亚太东南3(吉隆坡)|oss-ap-southeast-3.aliyuncs.com\",\"value\":\"oss-ap-southeast-3.aliyuncs.com\"},{\"label\":\"亚太东南5(雅加达)|oss-ap-southeast-5.aliyuncs.com\",\"value\":\"oss-ap-southeast-5.aliyuncs.com\"},{\"label\":\"亚太东北1(日本)|oss-ap-northeast-1.aliyuncs.com\",\"value\":\"oss-ap-northeast-1.aliyuncs.com\"},{\"label\":\"亚太南部1(孟买)|oss-ap-south-1.aliyuncs.com\",\"value\":\"oss-ap-south-1.aliyuncs.com\"},{\"label\":\"欧洲中部1(法兰克福)|oss-eu-central-1.aliyuncs.com\",\"value\":\"oss-eu-central-1.aliyuncs.com\"},{\"label\":\"英国(伦敦)|oss-eu-west-1.aliyuncs.com\",\"value\":\"oss-eu-west-1.aliyuncs.com\"},{\"label\":\"中东东部1(迪拜)|oss-me-east-1.aliyuncs.com\",\"value\":\"oss-me-east-1.aliyuncs.com\"}]},\"placeholder\":\"请选择所属地域\",\"style\":{\"width\":\"100%\"},\"clearable\":false,\"disabled\":false,\"filterable\":false,\"multiple\":false,\"__vModel__\":\"alStorageRegion\"}]}', '2022-07-28 10:34:24', '2022-07-28 10:34:24'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (13, '七牛云配置', '七牛云配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"空间域名 Domain\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"地址怎么配置?\",\"tipsIsLink\":true,\"tipsLink\":\"https://doc.crmeb.com/web/java/crmeb_java/701\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658974370271,\"defaultValue\":\"\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入空间域名 Domain\",\"style\":{\"width\":\"80%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnUploadUrl\"},{\"__config__\":{\"label\":\"accessKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1658974372399},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入accessKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnAccessKey\"},{\"__config__\":{\"label\":\"qnSecretKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1658974374036},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入qnSecretKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnSecretKey\"},{\"__config__\":{\"label\":\"存储空间名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1658974376881},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入存储空间名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnStorageName\"},{\"__config__\":{\"label\":\"所属地域\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":105,\"renderKey\":1658974383687},\"__slot__\":{\"options\":[]},\"placeholder\":\"请选择所属地域\",\"style\":{\"width\":\"100%\"},\"clearable\":false,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"qnStorageRegion\"}]}', '2022-07-28 10:53:51', '2022-12-07 10:06:37'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (14, '腾讯云配置', '腾讯云配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"空间域名 Domain\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"地址怎么配置?\",\"tipsIsLink\":true,\"tipsLink\":\"https://doc.crmeb.com/web/java/crmeb_java/701\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1658974370271,\"defaultValue\":\"\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入空间域名 Domain\",\"style\":{\"width\":\"80%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txUploadUrl\"},{\"__config__\":{\"label\":\"accessKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1658974372399},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入accessKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txSecretKey\"},{\"__config__\":{\"label\":\"secretKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1658974374036},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入secretKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txSecretKey\"},{\"__config__\":{\"label\":\"存储空间名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1658974376881},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入存储空间名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txStorageName\"},{\"__config__\":{\"label\":\"所属地域\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":105,\"renderKey\":1658974383687},\"__slot__\":{\"options\":[]},\"placeholder\":\"请选择所属地域\",\"style\":{\"width\":\"100%\"},\"clearable\":false,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"txStorageRegion\"}]}', '2022-07-28 10:59:52', '2022-12-07 10:09:53'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (15, '短信设置', '短信设置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"验证码有效时间 (分钟)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1658994867303,\"defaultValue\":1},\"placeholder\":\"请输入验证码有效时间 (分钟)\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"sms_code_expire\",\"min\":1}]}', '2022-07-28 15:55:26', '2022-07-28 15:55:26'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (16, '采集商品配置', '采集商品配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"接口选择\",\"labelWidth\":150,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":true,\"tipsDesc\":\"点击查看详细\",\"tipsIsLink\":true,\"tipsLink\":\"http://help.crmeb.net/crmeb_java/2516275\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1658995080486,\"defaultValue\":2},\"__slot__\":{\"options\":[{\"label\":\"一号通\",\"value\":1},{\"label\":\"99Api\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"system_product_copy_type\"},{\"__config__\":{\"label\":\"99Api apiKey\",\"labelWidth\":150,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1658995082854},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入99Api apiKey\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"copy_product_apikey\"}]}', '2022-07-28 16:00:02', '2022-07-28 16:00:02'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (17, '商户分类', '商户分类', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"分类名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659002484724},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入分类名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"11\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"name\"},{\"__config__\":{\"label\":\"手续费(%)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":102,\"renderKey\":1659002505414,\"defaultValue\":0},\"placeholder\":\"请输入手续费(%)\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"handlingFee\",\"min\":0,\"max\":100}]}', '2022-07-28 18:05:37', '2022-07-28 18:05:37'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (18, '店铺类型', '店铺类型', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":130,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"店铺类型\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659064318853},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入店铺类型\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"name\"},{\"__config__\":{\"label\":\"店铺类型要求\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":102,\"renderKey\":1659064320707},\"type\":\"textarea\",\"placeholder\":\"请输入店铺类型要求\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"95%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"info\"}]}', '2022-07-29 11:12:54', '2022-07-29 11:15:00'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (19, '订单配置', '订单配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"普通商品未支付取消订单时间(单位:分钟)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":300,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":102,\"renderKey\":1659078783393,\"defaultValue\":2},\"placeholder\":\"普通商品未支付取消订单时间(单位:分钟)\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"order_cancel_time\",\"min\":0,\"precision\":0,\"max\":99999},{\"__config__\":{\"label\":\"订单自动收货天数\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":103,\"renderKey\":1659078899662,\"defaultValue\":14},\"placeholder\":\"订单自动收货天数\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"auto_take_delivery_day\",\"min\":1,\"max\":30},{\"__config__\":{\"label\":\"收货后自动完成天数\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":105,\"renderKey\":1667293350612,\"defaultValue\":7},\"placeholder\":\"收货后自动完成天数\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"auto_complete_day\",\"min\":1,\"max\":30},{\"__config__\":{\"label\":\"退货理由\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":104,\"renderKey\":1659078948225,\"defaultValue\":\"收货地址填错了 与描述不符 信息填错了,重新拍 收到商品损坏了 未按预定时间发货 其它原因\"},\"type\":\"textarea\",\"placeholder\":\"请输入退货理由\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"95%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"stor_reason\"}]}', '2022-07-29 15:16:19', '2022-11-14 14:13:09'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (20, '物流查询', '物流查询', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"接口选择\",\"labelWidth\":150,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1659079295556,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"一号通\",\"value\":1},{\"label\":\"阿里云物流查询\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"logistics_type\"},{\"__config__\":{\"label\":\"快递查询密钥\",\"labelWidth\":150,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659079298025},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"阿里云云市场快递查询接口密钥购买地址:https://market.aliyun.com/products/57126001/cmapi021863.html?userCode=dligum2z快递查询密钥\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"system_express_app_code\"}]}', '2022-07-29 15:32:54', '2022-07-29 15:32:54'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (21, '电子面单', '电子面单', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"电子面单是否开启\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1659082479593},\"__slot__\":{\"options\":[{\"label\":\"选项一\",\"value\":1},{\"label\":\"选项二\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"config_export_open\"},{\"__config__\":{\"label\":\"发货人姓名\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659082491806},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"快递面单发货人姓名\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"config_export_to_name\"},{\"__config__\":{\"label\":\"发货人电话\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1659082493922},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"快递面单发货人电话\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"config_export_to_tel\"},{\"__config__\":{\"label\":\"发货人详细地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1659082496159},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"快递面单发货人详细地址\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"config_export_to_address\"},{\"__config__\":{\"label\":\"电子面单打印机编号\",\"labelWidth\":150,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1659082499726},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请购买快递100电子面单打印机,淘宝地址:https://m.tb.cn/h.437NvI0 官网:https://www.kuaidi100.com/cloud/print/cloudprinterSecond.shtml\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"config_export_siid\"}]}', '2022-07-29 16:19:09', '2022-07-29 16:19:09'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (22, '易联云打印设置', '易联云打印设置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":180,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"易联云应用ID\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"易联云 官网获取\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659083165356},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入易联云应用ID\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"11\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ylyprint_app_id\"},{\"__config__\":{\"label\":\"易联云应用密钥\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659083166897},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入易联云应用密钥\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ylyprint_app_secret\"},{\"__config__\":{\"label\":\"易联云打印机设备码\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1659083168264},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入易联云打印机设备码\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ylyprint_app_machine_code\"},{\"__config__\":{\"label\":\"易联云打印机设备密钥\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1659083169590},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入易联云打印机设备密钥\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ylyprint_app_machine_msign\"},{\"__config__\":{\"label\":\"支付成功自动打印开关\",\"tag\":\"el-switch\",\"tagIcon\":\"switch\",\"defaultValue\":\"\'0\'\",\"span\":24,\"showLabel\":true,\"labelWidth\":null,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/switch\",\"formId\":105,\"renderKey\":1659083172615},\"style\":{},\"disabled\":false,\"active-text\":\"\",\"inactive-text\":\"\",\"active-color\":null,\"inactive-color\":null,\"active-value\":\"\'1\'\",\"inactive-value\":\"\'0\'\",\"__vModel__\":\"ylyprint_auto_status\"},{\"__config__\":{\"label\":\"打印开关\",\"tag\":\"el-switch\",\"tagIcon\":\"switch\",\"defaultValue\":\"\'1\'\",\"span\":24,\"showLabel\":true,\"labelWidth\":null,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/switch\",\"formId\":106,\"renderKey\":1659083174304},\"style\":{},\"disabled\":false,\"active-text\":\"\",\"inactive-text\":\"\",\"active-color\":null,\"inactive-color\":null,\"active-value\":\"\'1\'\",\"inactive-value\":\"\'0\'\",\"__vModel__\":\"ylyprint_status\"}]}', '2022-07-29 16:28:58', '2022-07-29 16:28:58'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (23, '保障服务', '保障服务', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":110,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"服务条款\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":107,\"renderKey\":1659084348377},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入服务条款\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"name\"},{\"__config__\":{\"label\":\"服务内容描述\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":108,\"renderKey\":1659084350962},\"type\":\"textarea\",\"placeholder\":\"请输入服务内容描述\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"95%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"content\"},{\"__config__\":{\"label\":\"服务条款图标(100*100px)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":109,\"renderKey\":1659084353711},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"icon\"},{\"__config__\":{\"label\":\"排序\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":110,\"renderKey\":1659084357346,\"defaultValue\":0},\"placeholder\":\"排序\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"sort\",\"min\":0,\"max\":99999}]}', '2022-07-29 16:47:49', '2022-08-16 15:22:09'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (24, '客服配置', '客服配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"云智服链接\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"点击查看详细\",\"tipsIsLink\":true,\"tipsLink\":\"http://help.crmeb.net/crmeb_java/2322225\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659335624482},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入云智服链接\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"consumer_h5_url\"},{\"__config__\":{\"label\":\"客服电话\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659335625557},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入客服电话\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"consumer_hotline\"},{\"__config__\":{\"label\":\"客服方式\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":104,\"renderKey\":1659335627839},\"__slot__\":{\"options\":[{\"label\":\"云智服\",\"value\":\"h5\"},{\"label\":\"电话\",\"value\":\"hotline\"}]},\"placeholder\":\"请选择客服方式\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"disabled\":false,\"filterable\":false,\"multiple\":false,\"__vModel__\":\"consumer_type\"}]}', '2022-08-01 14:35:11', '2022-08-01 14:35:11'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (25, 'H5配置', 'H5配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"移动端顶部logo图标(127*45)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1659336089164},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"mobile_top_logo\"},{\"__config__\":{\"label\":\"移动端登录页logo(90x90)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1659336092290},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"mobile_login_logo\"},{\"__config__\":{\"label\":\"用户H5默认头像\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":103,\"renderKey\":1659336094554},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"h5_avatar\"},{\"__config__\":{\"label\":\"网站名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":106,\"renderKey\":1659336177190},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入网站名称\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"site_name\"},{\"__config__\":{\"label\":\"SEO标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1659336174289},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入SEO标题\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"seo_title\"},{\"__config__\":{\"label\":\"微信分享标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1659336175728,\"defaultValue\":\"CRMEB\"},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入微信分享标题\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_share_title\"},{\"__config__\":{\"label\":\"网站地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1663839255212},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入网站地址网站地址\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"site_url\"},{\"__config__\":{\"label\":\"店铺街开关\",\"tag\":\"el-switch\",\"tagIcon\":\"switch\",\"defaultValue\":\"\'0\'\",\"span\":24,\"showLabel\":true,\"labelWidth\":null,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/switch\",\"formId\":101,\"renderKey\":1667990773161},\"style\":{},\"disabled\":false,\"active-text\":\"\",\"inactive-text\":\"\",\"active-color\":null,\"inactive-color\":null,\"active-value\":\"\'1\'\",\"inactive-value\":\"\'0\'\",\"__vModel__\":\"shop_street_switch\"}]}', '2022-08-01 14:45:31', '2022-11-09 18:59:09'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (26, '公众号支付配置', '公众号支付配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"Mchid\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659336561073},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Mchid\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_mchid\"},{\"__config__\":{\"label\":\"商户证书绝对路径\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659336534451},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户证书绝对路径\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_certificate_path\"},{\"__config__\":{\"label\":\"Key\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1659336630281},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Key\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_key\"},{\"__config__\":{\"label\":\"微信支付\",\"labelWidth\":\"\",\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":104,\"renderKey\":1659336647811,\"defaultValue\":\"\'0\'\"},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"\'1\'\"},{\"label\":\"关闭\",\"value\":\"\'0\'\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"pay_weixin_open\"}]}', '2022-08-01 14:51:37', '2022-09-14 16:17:37'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (27, '小程序支付配置', '小程序支付配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"Mchid\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659336561073},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Mchid\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_routine_mchid\"},{\"__config__\":{\"label\":\"商户证书绝对路径\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659336534451},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户证书绝对路径\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_routine_certificate_path\"},{\"__config__\":{\"label\":\"Key\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1659336630281},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入Key\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_routine_key\"}]}', '2022-08-01 14:52:45', '2022-08-01 14:52:45'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (28, '余额支付', '余额支付', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"余额支付状态\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":101,\"renderKey\":1659336803099,\"defaultValue\":\"\'0\'\"},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"\'1\'\"},{\"label\":\"关闭\",\"value\":\"\'0\'\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"yue_pay_status\"}]}', '2022-08-01 14:53:44', '2022-09-14 16:39:51'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (29, '支付宝支付', '支付宝支付', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":270,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"APPID\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":true,\"tipsDesc\":\"支付宝appid怎么获取\",\"tipsIsLink\":true,\"tipsLink\":\"http://help.crmeb.net/crmeb_java/2401450\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659336891496},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入APPID\",\"style\":{\"width\":\"91%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_appid\"},{\"__config__\":{\"label\":\"支付宝私钥\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1659336894562},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入支付宝私钥\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_private_key\"},{\"__config__\":{\"label\":\"支付宝公钥\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659336893347},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入支付宝公钥\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_public_key\"},{\"__config__\":{\"label\":\"支付宝公钥2\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1659336993411},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入支付宝公钥2\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_public_key2\"},{\"__config__\":{\"label\":\"(订单)页面跳转同步通知页面路径\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1659337051612},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入(订单)页面跳转同步通知页面路径\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_return_url\"},{\"__config__\":{\"label\":\"(充值)页面跳转同步通知页面路径\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":106,\"renderKey\":1659337053179},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入(充值)页面跳转同步通知页面路径\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_recharge_return_url\"},{\"__config__\":{\"label\":\"(订单)用户付款中途退出返回商户网站的地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":107,\"renderKey\":1659337085043},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入(订单)用户付款中途退出返回商户网站的地址\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_quit_url\"},{\"__config__\":{\"label\":\"(充值)用户付款中途退出返回商户网站的地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":108,\"renderKey\":1659337086436},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入(充值)用户付款中途退出返回商户网站的地址\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"ali_pay_recharge_quit_url\"},{\"__config__\":{\"label\":\"支付宝开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":110,\"renderKey\":1659337171707,\"defaultValue\":\"\'0\'\"},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"\'1\'\"},{\"label\":\"关闭\",\"value\":\"\'0\'\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"ali_pay_status\"}]}', '2022-08-01 15:00:24', '2022-09-14 16:41:27'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (30, 'app微信支付配置', 'app微信支付配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":200,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"商户号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659337331078},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户号\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_app_mchid\"},{\"__config__\":{\"label\":\"商户平台apiKey\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":102,\"renderKey\":1659337365323},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户平台apiKey\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_app_key\"},{\"__config__\":{\"label\":\"商户证书绝对路径\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1659337390307},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户证书绝对路径\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"pay_weixin_app_certificate_path\"}]}', '2022-08-01 15:03:23', '2022-08-01 15:03:23'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (31, '支付回调地址(域名)', '支付回调地址(域名)', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":200,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"Api地址【支付回调】\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1659337719550},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"webSiet网站地址Api地址【支付回调】\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"api_url\"}]}', '2022-08-01 15:09:17', '2022-08-01 15:09:17'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (32, '充值配置', '充值配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":200,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"用户最低充值金额\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1659337867462},\"placeholder\":\"用户最低充值金额\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"store_user_min_recharge\"},{\"__config__\":{\"label\":\"充值注意事项\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":102,\"renderKey\":1659337869427,\"defaultValue\":\"充值后帐户的金额不能提现,可用于商城消费使用 佣金导入账户之后不能再次导出、不可提现 账户充值出现问题可联系商城客服,也可拨打商城客服热线:4008888888\"},\"type\":\"textarea\",\"placeholder\":\"请输入充值注意事项\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"95%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"recharge_attention\"},{\"__config__\":{\"label\":\"充值开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":103,\"renderKey\":1659337873926,\"defaultValue\":true},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"true\"},{\"label\":\"关闭\",\"value\":\"false\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"recharge_switch\"}]}', '2022-08-01 15:12:30', '2022-08-01 15:12:30'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (33, '修改商户手机号', '修改商户手机号', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":12,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"手机号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":12,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[{\"pattern\":\"/^1(3|4|5|7|8|9)\\\\d{9}$/\",\"message\":\"手机号格式错误\"}],\"formId\":101,\"renderKey\":1661221670986},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入手机号\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"el-icon-mobile\",\"suffix-icon\":\"\",\"maxlength\":\"11\",\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"phone\"}]}', '2022-08-02 10:22:28', '2022-08-23 10:29:09'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (34, '修改复制商品数量', '修改复制商品数量', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"复制次数\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"required\":false,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"regList\":[],\"formId\":101,\"renderKey\":1659407013038,\"defaultValue\":0},\"placeholder\":\"请输入复制次数\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":true,\"__vModel__\":\"copyProductNum\"},{\"__config__\":{\"label\":\"修改类型\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":102,\"renderKey\":1659407051644,\"defaultValue\":\"add\"},\"__slot__\":{\"options\":[{\"label\":\"增加\",\"value\":\"add\"},{\"label\":\"减少\",\"value\":\"sub\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"type\"},{\"__config__\":{\"label\":\"修改数量\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":103,\"renderKey\":1659407068415},\"placeholder\":\"修改数量\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"num\",\"min\":0,\"max\":9999}]}', '2022-08-02 10:26:13', '2022-10-28 11:05:35'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (35, '店铺配置', '店铺配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"商户 主头像 (90*90 px)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1660537746549},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":true,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"avatar\"},{\"__config__\":{\"label\":\" 移动端商户背景图(375*180 px)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1660544213608},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":true,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"backImage\"},{\"__config__\":{\"label\":\"移动端商户街背景图(355*78 px)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1660544234024},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":true,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"streetBackImage\"},{\"__config__\":{\"label\":\"商户简介\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1660544981857},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户简介\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"intro\"},{\"__config__\":{\"label\":\"商户电话\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1660545014824},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户电话\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"phone\"},{\"__config__\":{\"label\":\"商户关键字\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1660545042456},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户关键字\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"keywords\"},{\"__config__\":{\"label\":\"警戒库存\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":true,\"tipsDesc\":\"设置商品的警戒库存\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":106,\"renderKey\":1660545229129,\"defaultValue\":0},\"placeholder\":\"警戒库存\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"alertStock\"}]}', '2022-08-15 12:30:45', '2022-08-15 14:34:31'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (36, '结算信息-银行卡', '结算信息-银行卡', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"姓名\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":103,\"renderKey\":1660546209992},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入姓名\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"bankUserName\"},{\"__config__\":{\"label\":\"开户银行\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1660546318962},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入开户银行\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"bankName\"},{\"__config__\":{\"label\":\"银行卡号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1660546330929},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入银行卡号\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"bankCard\"},{\"__config__\":{\"label\":\"开户地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1661228711490},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入开户地址\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"bankAddress\"}]}', '2022-08-15 14:52:21', '2022-08-23 12:25:21'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (37, '平台商品编辑', '平台商品编辑', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":120,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":10,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"虚拟商品数量\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":103,\"renderKey\":1660725628283,\"defaultValue\":0},\"placeholder\":\"虚拟商品数量\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"ficti\",\"min\":0,\"max\":99999},{\"__config__\":{\"label\":\"排序\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":10,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":104,\"renderKey\":1660725842703,\"defaultValue\":0},\"placeholder\":\"排序\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"rank\",\"min\":0,\"max\":9999}]}', '2022-08-17 16:46:32', '2022-10-24 15:46:37'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (38, '商户登录页配置', '商户登录页配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":300,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"主页左上角logo[后台]\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1660895675330},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"mer_site_logo_lefttop\"},{\"__config__\":{\"label\":\"主页左上角缩回菜单logo[后台]\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1660895676594},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"mer_site_logo_square\"},{\"__config__\":{\"label\":\"登录页logo[后台]\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":103,\"renderKey\":1660895677738},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"merchant_site_logo_login\"},{\"__config__\":{\"label\":\"登录页背景图\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":104,\"renderKey\":1660895679154},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"merchant_login_bg_pic\"},{\"__config__\":{\"label\":\"登录页左侧logo\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":104,\"renderKey\":1666926536899},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"mer_admin_login_left_logo\"},{\"__config__\":{\"label\":\"商户端网址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":107,\"renderKey\":1668393834642},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入商户端网址\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"mer_site_url\"}]}', '2022-08-19 15:56:33', '2022-11-30 10:05:58'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (39, '结算信息-支付宝', '结算信息-支付宝', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":13,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"真实姓名\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":13,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1661162987195},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入真实姓名\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"realName\"},{\"__config__\":{\"label\":\"支付宝账号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":13,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":112,\"renderKey\":1668497495485},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入支付宝账号\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"alipayCode\"},{\"__config__\":{\"label\":\"收款二维码\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1661162995860},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"alipayQrcodeUrl\"}]}', '2022-08-22 18:10:41', '2022-11-15 15:39:29'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (40, '结算信息-微信', '结算信息-微信', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":12,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"真实姓名\",\"labelWidth\":\"\",\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":13,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":113,\"renderKey\":1668497259173},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入真实姓名\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"realName\"},{\"__config__\":{\"label\":\"微信号\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":13,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1661162987195},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入微信号\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechatCode\"},{\"__config__\":{\"label\":\"收款二维码\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":12,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1661162995860},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"wechatQrcodeUrl\"}]}', '2022-08-22 18:11:22', '2022-11-15 15:31:30'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (41, '申请短信模板', '申请短信模板', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"模板标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1661413604958},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入模板标题\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"title\"},{\"__config__\":{\"label\":\"模板类型\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":102,\"renderKey\":1661413649430,\"defaultValue\":2},\"__slot__\":{\"options\":[{\"label\":\"验证码\",\"value\":1},{\"label\":\"通知\",\"value\":2},{\"label\":\"推广\",\"value\":3}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"type\"},{\"__config__\":{\"label\":\"模板内容\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":103,\"renderKey\":1661413653829},\"type\":\"textarea\",\"placeholder\":\"请输入模板内容\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"95%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"content\"}]}', '2022-08-25 15:49:08', '2022-08-25 15:49:08'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (42, '充值配置', '充值配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"用户最低充值金额\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1661910046927,\"defaultValue\":0.01},\"placeholder\":\"用户最低充值金额\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"store_user_min_recharge\",\"min\":0},{\"__config__\":{\"label\":\"充值开关\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":102,\"renderKey\":1661910054352,\"defaultValue\":\"\'0\'\"},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":\"\'1\'\"},{\"label\":\"关闭\",\"value\":\"\'0\'\"}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"recharge_switch\"},{\"__config__\":{\"label\":\"充值注意事项\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-input\",\"tagIcon\":\"textarea\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"formId\":103,\"renderKey\":1661910061151,\"defaultValue\":\"充值后帐户的金额不能提现,可用于商城消费使用 佣金导入账户之后不能再次导出、不可提现 账户充值出现问题可联系商城客服,也可拨打商城客服热线:4008888888\"},\"type\":\"textarea\",\"placeholder\":\"请输入充值注意事项\",\"autosize\":{\"minRows\":4,\"maxRows\":4},\"style\":{\"width\":\"100%\"},\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"recharge_attention\"}]}', '2022-08-31 09:44:37', '2022-10-13 10:21:14'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (43, '首页banner滚动图', '首页banner滚动图', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1662540595768},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"url\"},{\"__config__\":{\"label\":\"图片(710*280)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":130,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":105,\"renderKey\":1662540603385},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"pic\"}]}', '2022-09-07 16:53:09', '2022-09-07 17:15:30'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (44, '首页金刚区', '首页金刚区', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":130,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":105,\"renderKey\":1662540603385},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"pic\"},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":130,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":104,\"renderKey\":1662540595768},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"url\"}]}', '2022-09-07 17:12:26', '2022-09-07 17:15:18'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (45, '热门搜索', '热门搜索', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标签\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入标签\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"el-icon-mobile\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false}]}', '2022-09-08 10:17:40', '2022-09-08 10:17:40'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (46, '后台登录页轮播图', '后台登录页轮播图', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"轮播图\",\"tag\":\"self-upload\",\"tagIcon\":\"upload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":101,\"renderKey\":1596017879033},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"}]}', '2022-09-15 12:24:55', '2022-09-15 12:24:55'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (47, '积分配置', '积分配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":180,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"积分冻结时间(天)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1663227435567,\"defaultValue\":0},\"placeholder\":\"积分冻结时间(天)\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"freezeIntegralDay\",\"min\":0,\"max\":99},{\"__config__\":{\"label\":\"积分抵扣金额(元)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":true,\"tipsDesc\":\"1积分抵多少金额\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":102,\"renderKey\":1663227436732,\"defaultValue\":0.01},\"placeholder\":\"积分抵扣金额(元)\",\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"integralDeductionMoney\",\"precision\":2,\"min\":0.01,\"max\":999},{\"__config__\":{\"label\":\"积分抵扣比例(%)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":true,\"tipsDesc\":\"订单中积分可抵扣商品金额比例(0~100)%\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":103,\"renderKey\":1663227647458,\"defaultValue\":1},\"placeholder\":\"积分抵扣比例(%)\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"integralDeductionRatio\",\"min\":1,\"max\":100},{\"__config__\":{\"label\":\"积分抵扣开启金额(元)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":true,\"tipsDesc\":\"订单满多少元可以使用积分抵扣\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":104,\"renderKey\":1663227710474,\"defaultValue\":1},\"placeholder\":\"积分抵扣开启金额(元)\",\"step\":1,\"step-strictly\":false,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"integralDeductionStartMoney\",\"min\":1,\"max\":999},{\"__config__\":{\"label\":\"下单赠送积分(元)\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":true,\"tipsDesc\":\"实际支付多少元赠送1积分\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":105,\"renderKey\":1663228008779,\"defaultValue\":0},\"placeholder\":\"下单赠送积分(元)\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"orderGiveIntegral\",\"min\":0,\"max\":9999},{\"__config__\":{\"label\":\"是否开启积分抵扣\",\"tag\":\"el-switch\",\"tagIcon\":\"switch\",\"defaultValue\":false,\"span\":24,\"showLabel\":true,\"labelWidth\":null,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/switch\",\"formId\":106,\"renderKey\":1663228149407},\"style\":{},\"disabled\":false,\"active-text\":\"\",\"inactive-text\":\"\",\"active-color\":null,\"inactive-color\":null,\"active-value\":true,\"inactive-value\":false,\"__vModel__\":\"integralDeductionSwitch\"}]}', '2022-09-15 15:51:50', '2022-09-15 16:29:04'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (48, '充值套餐', '充值套餐', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"充值金额\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"price\",\"placeholder\":\"请输入充值金额\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":false,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"赠送金额\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":105,\"renderKey\":1665629011288},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入赠送金额\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"give_money\"}]}', '2022-10-13 12:30:12', '2022-10-13 12:30:12'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (49, '个人中心菜单', '个人中心菜单', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"菜单名\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入菜单名菜单名菜单名菜单名菜单名\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图标(48*48)\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":105,\"renderKey\":1596072707659},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"},{\"__config__\":{\"label\":\"小程序链接\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":142,\"renderKey\":1591060899296},\"__slot__\":{\"options\":[{\"label\":\"地址管理\",\"value\":\"/pages/users/user_address_list/index\"},{\"label\":\"会员中心\",\"value\":\"/pages/users/user_vip/index\"},{\"label\":\"砍价记录\",\"value\":\"/pages/activity/bargain/index\"},{\"label\":\"推广中心\",\"value\":\"/pages/users/user_spread_user/index\"},{\"label\":\"我的余额\",\"value\":\"/pages/users/user_money/index\"},{\"label\":\"我的收藏\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"label\":\"优惠券\",\"value\":\"/pages/users/user_coupon/index\"},{\"label\":\"后台订单管理\",\"value\":\"/pages/admin/order/index\"},{\"label\":\"联系客服\",\"value\":\"/pages/service/index\"},{\"label\":\"订单核销\",\"value\":\"/pages/admin/order_cancellation/index\"}]},\"placeholder\":\"请选择小程序跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"url\"},{\"__config__\":{\"label\":\"公众号链接\",\"showLabel\":true,\"labelWidth\":null,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":140,\"renderKey\":1591064071606},\"__slot__\":{\"options\":[{\"label\":\"地址管理\",\"value\":\"/pages/users/user_address_list/index\"},{\"label\":\"会员中心\",\"value\":\"/pages/users/user_vip/index\"},{\"label\":\"砍价记录\",\"value\":\"/pages/activity/bargain/index\"},{\"label\":\"推广中心\",\"value\":\"/pages/users/user_spread_user/index\"},{\"label\":\"我的余额\",\"value\":\"/pages/users/user_money/index\"},{\"label\":\"我的收藏\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"label\":\"优惠券\",\"value\":\"/pages/users/user_coupon/index\"},{\"label\":\"后台订单管理\",\"value\":\"/pages/admin/order/index\"},{\"label\":\"联系客服\",\"value\":\"https://yzf.qq.com/xv/web/static/chat/index.html?sign=37ef9b97db2656c32340cde61ce2b56a2176efe72ac7ed421c77607b5c816611ec4775a17c7605b33df1ffe1d22a4ce7464dd07b\"},{\"label\":\"订单核销\",\"value\":\"/pages/admin/order_cancellation/index\"}]},\"placeholder\":\"请选择跳转链接公众号链接公众号链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"wap_url\"}]}', '2022-10-15 11:58:24', '2022-10-15 11:58:57'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (50, '首页滚动新闻', '首页滚动新闻', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"滚动文字\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[]},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"info\",\"placeholder\":\"请输入滚动文字滚动文字\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"跳转链接\",\"showLabel\":true,\"labelWidth\":120,\"tag\":\"el-select\",\"tagIcon\":\"select\",\"layout\":\"colFormItem\",\"span\":24,\"required\":true,\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/select\",\"formId\":102,\"renderKey\":1591080591082},\"__slot__\":{\"options\":[{\"label\":\"商城首页\",\"value\":\"/pages/index/index\"},{\"label\":\"个人推广\",\"value\":\"/pages/user_spread_user/index\"},{\"label\":\"优惠券\",\"value\":\"/pages/users/user_get_coupon/index\"},{\"label\":\"个人中心\",\"value\":\"/pages/user/user\"},{\"label\":\"秒杀列表\",\"value\":\"/pages/activity/goods_seckill/index\"},{\"label\":\"拼团列表页\",\"value\":\"/pages/activity/goods_combination/index\"},{\"label\":\"砍价列表\",\"value\":\"/pages/activity/goods_bargain/index\"},{\"label\":\"分类页面\",\"value\":\"/pages/goods_cate/goods_cate\"},{\"label\":\"地址列表\",\"value\":\"/pages/users/user_address_list/index\"},{\"label\":\"提现页面\",\"value\":\"/pages/user_cash/index\"},{\"label\":\"推广统计\",\"value\":\"/pages/promoter-list/index\"},{\"label\":\"账户金额\",\"value\":\"/pages/users/user_goods_collection/index\"},{\"label\":\"推广二维码页面\",\"value\":\"/pages/promotion-card/promotion-card\"},{\"label\":\"购物车页面\",\"value\":\"/pages/order_addcart/order_addcart\"},{\"label\":\"订单列表页面\",\"value\":\"/pages/users/order_list/index\"},{\"label\":\"文章列表页\",\"value\":\"/pages/news_list/index\"}]},\"placeholder\":\"请选择跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"disabled\":false,\"filterable\":true,\"multiple\":false,\"__vModel__\":\"url\"},{\"__config__\":{\"label\":\"底部菜单\",\"labelWidth\":120,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":24,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":103,\"renderKey\":1591080806108,\"defaultValue\":1},\"__slot__\":{\"options\":[{\"label\":\"是\",\"value\":1},{\"label\":\"否\",\"value\":2}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"show\"}]}', '2022-10-15 14:57:24', '2022-10-15 14:57:24'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (51, '个人中心轮播', '个人中心轮播', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"自定义上传\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"span\":24,\"showTip\":false,\"buttonText\":\"点击上传\",\"regList\":[],\"changeTag\":true,\"fileSize\":2,\"sizeUnit\":\"MB\",\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1597289113769},\"__slot__\":{\"list-type\":true},\"action\":\"https://jsonplaceholder.typicode.com/posts/\",\"disabled\":true,\"accept\":\"\",\"name\":\"file\",\"auto-upload\":true,\"list-type\":\"text\",\"multiple\":false,\"__vModel__\":\"pic\"},{\"__config__\":{\"label\":\"跳转链接\",\"labelWidth\":120,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":140,\"renderKey\":1591064520353},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入跳转跳转链接跳转链接\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"url\"}]}', '2022-10-15 15:08:41', '2022-10-15 15:08:41'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (52, '商户结算设置', '商户结算设置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":150,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"保证金额\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":101,\"renderKey\":1666260267853,\"defaultValue\":0},\"placeholder\":\"保证金额\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"guaranteedAmount\",\"min\":0,\"max\":99999},{\"__config__\":{\"label\":\"每笔最高转账额度\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":102,\"renderKey\":1666260268710,\"defaultValue\":1},\"placeholder\":\"每笔最高转账额度\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"transferMaxAmount\",\"min\":1,\"max\":99999},{\"__config__\":{\"label\":\"每笔最小转账额度\",\"showLabel\":true,\"changeTag\":true,\"labelWidth\":null,\"tag\":\"el-input-number\",\"tagIcon\":\"number\",\"span\":24,\"layout\":\"colFormItem\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"document\":\"https://element.eleme.cn/#/zh-CN/component/input-number\",\"formId\":103,\"renderKey\":1666260269690,\"defaultValue\":1},\"placeholder\":\"每笔最小转账额度\",\"step\":1,\"step-strictly\":true,\"controls-position\":\"\",\"disabled\":false,\"__vModel__\":\"transferMinAmount\",\"min\":1,\"max\":99999}]}', '2022-10-20 18:06:43', '2022-10-20 18:06:43'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (53, '推广分享海报', '推广分享海报', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"el-icon-mobile\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"背景图\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":true,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":105,\"renderKey\":1668139964161},\"__slot__\":{\"list-type\":true},\"disabled\":true,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"pic\"}]}', '2022-11-11 12:14:18', '2022-11-11 12:14:18'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (54, '微信app配置', '微信app配置', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"appid\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"wechat_app_appid\",\"placeholder\":\"请输入appid\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"el-icon-mobile\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":false,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"appSecret\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":107,\"renderKey\":1669464039541},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入appSecret\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"wechat_app_appsecret\"}]}', '2022-11-26 20:00:56', '2022-11-26 20:00:56'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (55, '订单状态图', '订单状态图', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"title\",\"placeholder\":\"请输入名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"el-icon-mobile\",\"suffix-icon\":\"\",\"maxlength\":\"\",\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"图片\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":108,\"renderKey\":1669625379082},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"pic\"}]}', '2022-11-28 16:50:01', '2022-11-28 16:50:01'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (56, '秒杀时段', '秒杀时段', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":15,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"标题\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":15,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1671611292878},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入标题\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"name\"},{\"__config__\":{\"label\":\"时间范围\",\"tag\":\"el-time-picker\",\"tagIcon\":\"time-range\",\"span\":15,\"showLabel\":true,\"labelWidth\":null,\"layout\":\"colFormItem\",\"defaultValue\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/time-picker\",\"formId\":106,\"renderKey\":1671612818229},\"style\":{\"width\":\"100%\"},\"disabled\":false,\"clearable\":true,\"is-range\":true,\"range-separator\":\"至\",\"start-placeholder\":\"开始时间\",\"end-placeholder\":\"结束时间\",\"format\":\"HH:mm\",\"value-format\":\"HH:mm\",\"__vModel__\":\"timeData\"},{\"__config__\":{\"label\":\"是否启用\",\"labelWidth\":null,\"showLabel\":true,\"tag\":\"el-radio-group\",\"tagIcon\":\"radio\",\"changeTag\":true,\"layout\":\"colFormItem\",\"span\":17,\"optionType\":\"default\",\"regList\":[],\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"border\":false,\"document\":\"https://element.eleme.cn/#/zh-CN/component/radio\",\"formId\":105,\"renderKey\":1671611437341,\"defaultValue\":0},\"__slot__\":{\"options\":[{\"label\":\"开启\",\"value\":1},{\"label\":\"关闭\",\"value\":0}]},\"style\":{},\"size\":\"medium\",\"disabled\":false,\"__vModel__\":\"status\"}]}', '2022-12-21 16:36:39', '2022-12-21 17:17:25'); INSERT INTO `eb_system_form_temp` (`id`, `name`, `info`, `content`, `create_time`, `update_time`) VALUES (57, '底部导航', '底部导航', '{\"formRef\":\"elForm\",\"formModel\":\"formData\",\"size\":\"medium\",\"labelPosition\":\"right\",\"labelWidth\":100,\"formRules\":\"rules\",\"gutter\":15,\"disabled\":false,\"span\":24,\"formBtns\":true,\"fields\":[{\"__config__\":{\"label\":\"导航名称\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"tips\":false},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"__vModel__\":\"name\",\"placeholder\":\"请输入导航名称\",\"style\":{\"width\":\"100%\"},\"clearable\":true,\"prefix-icon\":\"el-icon-mobile\",\"suffix-icon\":\"\",\"maxlength\":11,\"show-word-limit\":true,\"readonly\":false,\"disabled\":false},{\"__config__\":{\"label\":\"路由地址\",\"labelWidth\":null,\"showLabel\":true,\"changeTag\":true,\"tag\":\"el-input\",\"tagIcon\":\"input\",\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"layout\":\"colFormItem\",\"span\":24,\"document\":\"https://element.eleme.cn/#/zh-CN/component/input\",\"regList\":[],\"formId\":101,\"renderKey\":1675483381025},\"__slot__\":{\"prepend\":\"\",\"append\":\"\"},\"placeholder\":\"请输入路由地址\",\"style\":{\"width\":\"95%\"},\"clearable\":true,\"prefix-icon\":\"\",\"suffix-icon\":\"\",\"maxlength\":null,\"show-word-limit\":false,\"readonly\":false,\"disabled\":false,\"__vModel__\":\"link\"},{\"__config__\":{\"label\":\"选中样式\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":102,\"renderKey\":1675483389524},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"checked\"},{\"__config__\":{\"label\":\"未选中样式\",\"tag\":\"self-upload\",\"tagIcon\":\"selfUpload\",\"layout\":\"colFormItem\",\"defaultValue\":null,\"showLabel\":true,\"labelWidth\":null,\"required\":true,\"tips\":false,\"tipsDesc\":\"\",\"tipsIsLink\":false,\"tipsLink\":\"\",\"span\":24,\"showTip\":false,\"buttonText\":\"\",\"regList\":[],\"changeTag\":true,\"document\":\"https://element.eleme.cn/#/zh-CN/component/upload\",\"formId\":103,\"renderKey\":1675483391543},\"__slot__\":{\"list-type\":true},\"disabled\":false,\"accept\":\"image\",\"name\":\"file\",\"multiple\":false,\"label\":\"自定义上传\",\"props\":{\"props\":{\"label\":\"自定义上传\"}},\"__vModel__\":\"unchecked\"}]}', '2023-02-04 12:07:29', '2023-02-04 14:58:59'); COMMIT; -- ---------------------------- -- Table structure for eb_system_group -- ---------------------------- DROP TABLE IF EXISTS `eb_system_group`; CREATE TABLE `eb_system_group` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '组合数据ID', `name` varchar(50) NOT NULL DEFAULT '' COMMENT '数据组名称', `info` varchar(256) NOT NULL DEFAULT '' COMMENT '简介', `form_id` int(11) NOT NULL DEFAULT '0' COMMENT 'form 表单 id', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组合数据表'; -- ---------------------------- -- Records of eb_system_group -- ---------------------------- BEGIN; INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (1, '移动端_首页banner滚动图', '移动端_首页banner滚动图', 43, '2022-09-07 16:53:34', '2022-09-07 16:53:34'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (2, '移动端_首页导航', '移动端_首页导航', 44, '2022-09-07 17:13:11', '2022-09-07 17:13:11'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (3, '移动端_热门搜索', '移动端_热门搜索', 45, '2022-09-08 10:18:03', '2022-09-08 10:18:03'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (4, '移动端_充值套餐设置', '移动端_充值套餐设置', 48, '2022-10-13 14:16:00', '2022-10-13 14:16:00'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (5, '移动端_个人中心功能菜单', '移动端_个人中心功能菜单', 49, '2022-10-15 11:50:08', '2022-10-15 11:59:29'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (7, '移动端_个人中心轮播图', '移动端_个人中心轮播图', 51, '2022-10-15 15:06:26', '2022-10-15 15:08:53'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (10, '移动端_我的推广_分享海报', '移动端_我的推广_分享海报', 53, '2022-11-11 12:14:38', '2022-11-11 12:14:38'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (13, '移动端_订单状态_图', '移动端_订单状态_图', 55, '2022-11-28 16:50:39', '2022-11-28 16:50:39'); INSERT INTO `eb_system_group` (`id`, `name`, `info`, `form_id`, `create_time`, `update_time`) VALUES (14, '移动端_底部导航', '移动端_底部导航', 57, '2023-02-04 12:07:53', '2023-02-04 12:07:53'); COMMIT; -- ---------------------------- -- Table structure for eb_system_group_data -- ---------------------------- DROP TABLE IF EXISTS `eb_system_group_data`; CREATE TABLE `eb_system_group_data` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '组合数据详情ID', `gid` int(11) NOT NULL DEFAULT '0' COMMENT '对应的数据组id', `value` text NOT NULL COMMENT '数据组对应的数据值(json数据)', `sort` int(11) NOT NULL DEFAULT '0' COMMENT '数据排序', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态(1:开启;2:关闭;)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=1161 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='组合数据详情表'; -- ---------------------------- -- Records of eb_system_group_data -- ---------------------------- BEGIN; INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (5, 3, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"衣服\"}],\"id\":45,\"sort\":1,\"status\":true}', 1, 1, '2022-09-08 10:18:17', '2022-09-08 10:18:17'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (6, 3, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"鞋子\"}],\"id\":45,\"sort\":2,\"status\":true}', 2, 1, '2022-09-08 10:18:25', '2022-09-08 10:18:25'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (7, 3, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"叶子\"}],\"id\":45,\"sort\":3,\"status\":true}', 3, 1, '2022-09-08 10:18:33', '2022-09-08 10:18:33'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (10, 4, '{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"0.01\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"0\"}],\"id\":48,\"sort\":1,\"status\":true}', 1, 1, '2022-10-13 14:16:26', '2022-10-13 14:16:26'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (11, 4, '{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"50\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"1\"}],\"id\":48,\"sort\":1,\"status\":true}', 1, 1, '2022-10-13 14:16:39', '2022-10-13 14:16:39'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (12, 4, '{\"fields\":[{\"name\":\"price\",\"title\":\"price\",\"value\":\"100\"},{\"name\":\"give_money\",\"title\":\"give_money\",\"value\":\"3\"}],\"id\":48,\"sort\":1,\"status\":true}', 1, 1, '2022-10-13 14:16:47', '2022-10-13 14:16:47'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (26, 6, '{\"id\":97,\"sort\":0,\"fields\":[{\"name\":\"show\",\"title\":\"show\",\"value\":\"1\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/news_details/index?id=24\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"要你好看\"}],\"status\":true}', 0, 1, '2022-10-15 14:55:28', '2022-10-15 14:55:28'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (393, 10, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"海报1\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/product/2023/02/24/0adf3f7549404ad0b67aa445e0001d434bo62okuba.png\"}],\"id\":53,\"sort\":1,\"status\":true}', 1, 1, '2022-11-11 12:15:14', '2023-02-24 10:30:41'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (394, 10, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"海报2\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/product/2023/02/24/9df693afefa84e5ea33d9de87cc17226h0kpmirl1p.png\"}],\"id\":53,\"sort\":2,\"status\":true}', 2, 1, '2022-11-11 12:15:25', '2023-02-24 10:30:05'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (395, 10, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"海报3\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/product/2023/02/24/0b528edca0c94dfbb3f610e2cfbd9240mh81c7qsft.png\"}],\"id\":53,\"sort\":4,\"status\":true}', 4, 1, '2022-11-11 12:15:34', '2023-02-24 10:29:26'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (641, 13, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"await_pay\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/maintain/2022/11/29/e8aaf303a01f41a79603eb5b40b057c8emnvt6tij5.gif\"}],\"id\":55,\"sort\":1,\"status\":true}', 1, 1, '2022-11-28 16:54:50', '2023-02-24 11:17:31'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (642, 13, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"await_shipped\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/maintain/2022/11/29/eefcfb47d649492e97706ded29594823n7rcx4izno.gif\"}],\"id\":55,\"sort\":1,\"status\":true}', 1, 1, '2022-11-28 16:55:37', '2023-02-24 11:19:01'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (643, 13, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"receiving\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/maintain/2022/11/29/a8f3e048adaf44eea0778e47aa03ff14jp8lnyhk7j.gif\"}],\"id\":55,\"sort\":1,\"status\":true}', 1, 1, '2022-11-28 16:56:36', '2023-02-24 11:22:07'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (644, 13, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"spike\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/maintain/2022/11/29/bc71f47a0dcd401d84918db66458a857m0zig5roqs.gif\"}],\"id\":55,\"sort\":1,\"status\":true}', 1, 1, '2022-11-28 16:57:21', '2023-02-24 11:20:35'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (645, 13, '{\"fields\":[{\"name\":\"title\",\"title\":\"title\",\"value\":\"complete\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/maintain/2022/11/29/4607e32cb4b445a397adc185451e3519bxxg0j9de1.gif\"}],\"id\":55,\"sort\":1,\"status\":true}', 1, 1, '2022-11-28 16:57:45', '2023-02-24 11:18:14'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (934, 1, '{\"id\":43,\"sort\":0,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"1\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/d2859f43803e4338b212ac33f463a67bblwspry6fh.jpg\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/goods_details/index?id=1\"}],\"status\":true}', 0, 1, '2023-02-14 09:27:34', '2023-02-14 09:27:34'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (935, 1, '{\"id\":43,\"sort\":1,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"3\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/e475d5129f954c998aadd6d05e03cb97cvaodytrvr.jpg\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/goods_details/index?id=20\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 1, 1, '2023-02-14 09:27:34', '2023-02-14 09:27:34'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (936, 1, '{\"id\":43,\"sort\":2,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"2\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/e88b16fe5da3400c877bdc89fa754bc3anw2m6ls9t.jpg\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/goods_details/index?id=19\"}],\"status\":true}', 2, 1, '2023-02-14 09:27:34', '2023-02-14 09:27:34'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (969, 7, '{\"id\":90,\"sort\":0,\"fields\":[{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/e4c132816d4346de8bf347ca1576064bh3j16c5nnt.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"https://www.crmeb.com\"}],\"status\":true}', 0, 1, '2023-02-14 11:02:00', '2023-02-14 11:02:00'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (970, 7, '{\"id\":90,\"sort\":1,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/aa0d212ffe4b41719ba80f51af5f229avo51m9sfu0.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods_details/index?id=10\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":false}', 1, 0, '2023-02-14 11:02:00', '2023-02-14 11:02:00'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1132, 14, '{\"id\":57,\"sort\":0,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"首页\"},{\"name\":\"link\",\"title\":\"link\",\"value\":\"/pages/index/index\"},{\"name\":\"unchecked\",\"title\":\"unchecked\",\"value\":\"crmebimage/public/content/2023/02/14/5baf5cbb58c64d26b306d06921760139j31sel0snj.png\"},{\"name\":\"checked\",\"title\":\"checked\",\"value\":\"crmebimage/public/content/2023/02/14/5f1a0ce90fc84bc8ac410a9292a45ff94eiitroe6v.png\"}],\"status\":true}', 0, 1, '2023-02-21 16:46:35', '2023-02-21 16:46:35'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1133, 14, '{\"id\":57,\"sort\":1,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"商品分类\"},{\"name\":\"link\",\"title\":\"link\",\"value\":\"/pages/goods_cate/index\"},{\"name\":\"unchecked\",\"title\":\"unchecked\",\"value\":\"crmebimage/public/content/2023/02/14/9f6cb582f5504ae98000fa149c4ce726vdzk7v7o3y.png\"},{\"name\":\"checked\",\"title\":\"checked\",\"value\":\"crmebimage/public/content/2023/02/14/4dfd6b5f75934cf9b726a21399a198ff651mykj5i1.png\"}],\"status\":true}', 1, 1, '2023-02-21 16:46:35', '2023-02-21 16:46:35'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1134, 14, '{\"id\":57,\"sort\":2,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"店铺街\"},{\"name\":\"link\",\"title\":\"link\",\"value\":\"/pages/merchant_street/index\"},{\"name\":\"unchecked\",\"title\":\"unchecked\",\"value\":\"crmebimage/public/content/2023/02/14/7cf9e941969547559bec99dddead6442l0q4oxwnth.png\"},{\"name\":\"checked\",\"title\":\"checked\",\"value\":\"crmebimage/public/content/2023/02/14/f245e9e3ae0d472fbef59eb86e95f8a6e577iwqyet.png\"}],\"status\":true}', 2, 1, '2023-02-21 16:46:35', '2023-02-21 16:46:35'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1135, 14, '{\"id\":57,\"sort\":3,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"购物车\"},{\"name\":\"link\",\"title\":\"link\",\"value\":\"/pages/order_addcart/order_addcart\"},{\"name\":\"unchecked\",\"title\":\"unchecked\",\"value\":\"crmebimage/public/content/2023/02/14/dd27dd6a45724b49b33d819474583258yggg0m2hzv.png\"},{\"name\":\"checked\",\"title\":\"checked\",\"value\":\"crmebimage/public/content/2023/02/14/aaf95be4c58e4eac952a9f47bb392c341ev09rfjzx.png\"}],\"status\":true}', 3, 1, '2023-02-21 16:46:35', '2023-02-21 16:46:35'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1136, 14, '{\"id\":57,\"sort\":4,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的\"},{\"name\":\"link\",\"title\":\"link\",\"value\":\"/pages/user/index\"},{\"name\":\"unchecked\",\"title\":\"unchecked\",\"value\":\"crmebimage/public/content/2023/02/14/a76f3b898dea4ba0b02442e408cd78ac59rpra88sx.png\"},{\"name\":\"checked\",\"title\":\"checked\",\"value\":\"crmebimage/public/content/2023/02/14/5f86be996de9460cb23ca4e4ce53a4ec9eicdiud3q.png\"}],\"status\":true}', 4, 1, '2023-02-21 16:46:35', '2023-02-21 16:46:35'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1146, 2, '{\"id\":44,\"sort\":0,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"签到\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/447c39c89f894593b0c20389987001660i3wxbi8yj.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/merchant/user_sgin/index\"}],\"status\":true}', 0, 1, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1147, 2, '{\"id\":44,\"sort\":1,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"商品分类\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/723997d56046430bab624196391b4b85jmi792nqyq.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods_cate/index\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 1, 1, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1148, 2, '{\"id\":44,\"sort\":2,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"店铺街\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/745d74c58f304a938c5e80e62a03845crjafu1cih0.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/merchant_street/index\"}],\"status\":false}', 2, 0, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1149, 2, '{\"id\":44,\"sort\":3,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的收藏\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/93fa74936a4e4178914ab6329d7ee4fdd0h8pt004b.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/user_goods_collection/index\"}],\"status\":true}', 3, 1, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1150, 2, '{\"id\":44,\"sort\":4,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"行业资讯\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/24b72c55e53a46df850230d2344a1b952jyyuvqx69.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/news_list/index\"}],\"status\":true}', 4, 1, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1151, 2, '{\"id\":44,\"sort\":5,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"商户入驻\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/745d74c58f304a938c5e80e62a03845crjafu1cih0.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/settled/index\"}],\"status\":true}', 5, 1, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1152, 2, '{\"id\":44,\"sort\":6,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"推荐商品\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/1d7f940abf2a4c0e87d392e7f6ed1eb9n4x1a4rf87.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/goods_details/index?id=21\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":false}', 6, 0, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1153, 2, '{\"id\":44,\"sort\":7,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"关注店铺\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/8c0ac815f02a4a0588f776a61fcbb8f9bs0clyifun.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/user_merchant_collection/index\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":false}', 7, 0, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1154, 2, '{\"id\":44,\"sort\":8,\"fields\":[{\"name\":\"name\",\"title\":\"name\",\"value\":\"购物车\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/745d74c58f304a938c5e80e62a03845crjafu1cih0.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/order_addcart/order_addcart\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":false}', 8, 0, '2023-02-23 16:42:27', '2023-02-23 16:42:27'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1155, 5, '{\"id\":89,\"sort\":0,\"fields\":[{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"name\",\"title\":\"name\",\"value\":\"个人资料\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/3afe05899b0e41849c3af160aa16ea5czwleqi6ymt.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_info/index\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 0, 1, '2023-02-23 16:43:48', '2023-02-23 16:43:48'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1156, 5, '{\"id\":89,\"sort\":1,\"fields\":[{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的账户\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/c002d90ba7bc4a66bdc100ce9a8e32c7j26l0t7644.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_money/index\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 1, 1, '2023-02-23 16:43:48', '2023-02-23 16:43:48'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1157, 5, '{\"id\":89,\"sort\":2,\"fields\":[{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"name\",\"title\":\"name\",\"value\":\"每日签到\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/da960790d1f64c69a7d5f2b76840210cbe5c6gx25f.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/merchant/user_sgin/index\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 2, 1, '2023-02-23 16:43:48', '2023-02-23 16:43:48'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1158, 5, '{\"id\":89,\"sort\":3,\"fields\":[{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的关注\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/8f287489f80e4cae9c170706cb11bdc2ahb3aqsxsn.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/goods/user_merchant_collection/index\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 3, 1, '2023-02-23 16:43:48', '2023-02-23 16:43:48'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1159, 5, '{\"id\":89,\"sort\":4,\"fields\":[{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"name\",\"title\":\"name\",\"value\":\"地址管理\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/b81a50a7db494205ae84ce6ebf758c417sfwtuf65v.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/address/user_address_list/index\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 4, 1, '2023-02-23 16:43:48', '2023-02-23 16:43:48'); INSERT INTO `eb_system_group_data` (`id`, `gid`, `value`, `sort`, `status`, `create_time`, `update_time`) VALUES (1160, 5, '{\"id\":89,\"sort\":5,\"fields\":[{\"name\":\"wap_url\",\"title\":\"wap_url\",\"value\":\"/pages/users/user_vip/index\"},{\"name\":\"name\",\"title\":\"name\",\"value\":\"我的推广\"},{\"name\":\"pic\",\"title\":\"pic\",\"value\":\"crmebimage/public/content/2022/11/15/1d7f940abf2a4c0e87d392e7f6ed1eb9n4x1a4rf87.png\"},{\"name\":\"url\",\"title\":\"url\",\"value\":\"/pages/users/user_spread_user/index?key=827BF7A6B0B8D160BD116898762DA4C5\"},{\"name\":\"info\",\"title\":\"info\",\"value\":\"\"}],\"status\":true}', 5, 1, '2023-02-23 16:43:48', '2023-02-23 16:43:48'); COMMIT; -- ---------------------------- -- Table structure for eb_system_menu -- ---------------------------- DROP TABLE IF EXISTS `eb_system_menu`; CREATE TABLE `eb_system_menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `pid` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父级ID', `name` varchar(100) DEFAULT NULL COMMENT '名称', `icon` varchar(255) DEFAULT NULL COMMENT 'icon', `perms` varchar(200) DEFAULT NULL COMMENT '权限标识', `component` varchar(200) DEFAULT NULL COMMENT '组件路径', `menu_type` varchar(2) DEFAULT 'M' COMMENT '类型,M-目录,C-菜单,A-按钮', `sort` int(5) NOT NULL DEFAULT '99999' COMMENT '排序', `is_show` tinyint(1) NOT NULL DEFAULT '1' COMMENT '显示状态', `is_delte` tinyint(1) unsigned DEFAULT '0' COMMENT '是否删除', `type` int(11) NOT NULL COMMENT '系统菜单类型:3-平台,4-商户', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `type` (`type`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=646 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='系统菜单表'; -- ---------------------------- -- Records of eb_system_menu -- ---------------------------- BEGIN; INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (1, 0, '主页', 'menu', '', '/dashboard', 'C', 99999, 1, 0, 3, '2021-11-16 12:11:17', '2023-02-02 14:39:10'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (2, 0, '商品', 's-goods', '', '/product', 'M', 9998, 1, 0, 3, '2021-11-16 12:11:17', '2022-11-10 14:35:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (3, 0, '订单', 's-order', '', '/order', 'M', 9995, 1, 0, 3, '2021-11-16 12:11:17', '2022-11-10 14:37:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (4, 0, '用户', 'user-solid', '', '/user', 'M', 9996, 1, 0, 3, '2021-11-16 12:11:17', '2022-11-10 14:36:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (5, 0, '财务', 's-finance', '', '/finance', 'M', 9992, 1, 0, 3, '2021-11-16 12:11:18', '2022-11-10 14:40:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (6, 0, '设置', 's-tools', '', '/operation', 'M', 9991, 1, 0, 3, '2021-11-16 12:11:18', '2022-11-10 14:41:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (7, 0, '维护', 's-open', '', '/maintain', 'M', 9990, 1, 0, 3, '2021-11-16 12:11:18', '2022-11-10 14:41:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (8, 0, '登录管理', '', '', NULL, 'M', 9991, 0, 0, 3, '2021-12-03 16:31:43', '2022-07-28 16:17:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (9, 0, '分类服务(素材/设置/文章)', '', '', '', 'M', 9990, 0, 0, 3, '2021-12-03 17:15:29', '2022-04-19 23:53:14'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (10, 0, '公共服务', '', '', '', 'M', 9989, 0, 0, 3, '2021-12-08 18:56:36', '2022-04-19 23:53:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (11, 0, '商户', 's-shop', '', '/merchant', 'M', 9997, 1, 0, 3, '2022-03-14 12:57:51', '2022-11-10 14:35:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (12, 0, '活动', 's-data', '', '/activity', 'M', 9988, 1, 1, 3, '2022-03-31 19:34:18', '2022-04-19 23:53:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (13, 0, '通知', 'message-solid', '', '', 'M', 9987, 1, 1, 3, '2022-04-01 17:08:47', '2022-04-19 23:53:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (14, 6, '管理权限', 'knife-fork', '', '/operation/roleManager', 'M', 10, 1, 0, 3, '2021-11-16 17:23:37', '2023-02-02 15:46:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (15, 6, '页面管理', 'fork-spoon', '', '/operation/design', 'M', 10, 1, 0, 3, '2021-11-16 17:23:37', '2023-02-02 15:46:37'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (16, 7, '开发配置', 'food', '', '/maintain//devconfiguration', 'M', 10, 1, 0, 3, '2021-11-16 17:38:38', '2023-02-02 15:47:11'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (17, 7, '物流设置', 'dish', '', '/maintain/logistics', 'M', 10, 1, 0, 3, '2021-11-16 17:38:38', '2023-02-02 15:47:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (18, 2, '商品分类', 'price-tag', '', '/product/category', 'C', 10, 1, 0, 3, '2021-11-16 12:19:02', '2023-02-02 11:01:15'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (19, 14, '角色管理', '', 'platform:admin:role:list', '/operation//roleManager/identityManager', 'C', 10, 1, 0, 3, '2021-11-16 17:30:23', '2022-07-28 16:17:40'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (20, 14, '管理员列表', '', 'platform:admin:list', '/operation//roleManager/adminList', 'C', 10, 1, 0, 3, '2021-11-16 17:30:23', '2022-07-28 16:17:40'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (21, 14, '权限规则', '', '', '/operation//roleManager/promiseRules', 'C', 10, 1, 0, 3, '2021-11-16 17:30:23', '2022-07-28 16:17:40'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (22, 15, '一键换色', '', '', '/operation/design/theme', 'C', 10, 1, 0, 3, '2021-11-16 17:30:23', '2022-07-28 16:17:40'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (23, 15, '页面设计', '', '', '/operation/design/viewDesign', 'C', 10, 1, 0, 3, '2021-11-16 17:30:23', '2022-07-28 16:45:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (24, 7, '素材管理', 'moon-night', 'platform:attachment:list', '/maintain/picture', 'C', 10, 1, 0, 3, '2021-11-16 17:38:38', '2023-02-02 15:47:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (25, 7, '商业授权', 'moon', '', '/maintain/authCRMEB', 'C', 10, 1, 0, 3, '2021-11-16 17:38:38', '2023-02-02 15:47:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (26, 16, '配置分类', '', '', '/maintain/devconfiguration/configCategory', 'C', 10, 1, 0, 3, '2021-11-16 17:41:33', '2022-07-28 16:34:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (27, 16, '组合数据', '', 'platform:system:group:list', '/maintain/devconfiguration/combineddata', 'C', 10, 1, 0, 3, '2021-11-16 17:41:33', '2022-07-28 16:36:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (28, 16, '表单配置', '', 'platform:system:form:list', '/maintain/devconfiguration/formConfig', 'C', 10, 1, 0, 3, '2021-11-16 17:41:33', '2022-07-28 16:36:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (29, 1, '控制台', '', '', '/dashboard', 'C', 10, 1, 1, 3, '2021-11-30 14:13:37', '2022-04-19 23:36:39'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (33, 6, '消息通知', 'tableware', '', '/operation/notification', 'C', 9994, 1, 0, 3, '2022-02-10 09:58:00', '2023-02-02 15:46:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (34, 2, '保障服务', 'ice-cream-round', '', '/product/guarantee', 'C', 10, 1, 0, 3, '2022-03-14 10:16:06', '2023-02-02 15:38:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (35, 11, '商户分类', 'milk-tea', '', '/merchant/classify', 'C', 10, 1, 0, 3, '2022-03-14 12:59:57', '2023-02-02 15:40:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (36, 11, '商户列表', 'ice-drink', '', '/merchant/list', 'C', 10, 1, 0, 3, '2022-03-14 13:01:10', '2023-02-02 15:41:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (37, 11, '商户菜单管理', 'ice-tea', '', '/merchant/system', 'C', 10, 1, 0, 3, '2022-03-14 13:02:12', '2023-02-02 15:41:14'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (38, 11, '商户入驻申请', 'coffee', '', '/merchant/application', 'C', 10, 1, 0, 3, '2022-03-14 13:02:55', '2023-02-02 15:41:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (40, 2, '品牌列表', 'ice-cream-square', '', '/product/brand', 'C', 10, 1, 0, 3, '2022-03-14 13:14:50', '2023-02-02 15:39:08'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (43, 2, '商品列表', 'lollipop', '', '/product/list', 'C', 1, 1, 0, 3, '2022-03-07 17:26:31', '2023-02-02 15:39:20'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (44, 3, '订单列表', 'watermelon', '', '/order/list', 'C', 1, 1, 0, 3, '2022-03-07 17:26:31', '2023-02-02 15:42:37'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (45, 3, '退款单', 'grape', '', '/order/refund', 'C', 1, 1, 0, 3, '2022-03-07 17:26:31', '2023-02-02 15:42:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (46, 2, '商品评论', 'potato-strips', '', '/product/comment', 'C', 1, 1, 0, 3, '2022-03-07 17:26:31', '2023-02-02 15:39:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (48, 4, '用户列表', 'pear', '', '/user/index', 'C', 10, 1, 0, 3, '2022-03-07 17:26:31', '2023-02-02 15:41:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (49, 282, '活动列表', '', '', '/activity/list', 'C', 10, 1, 1, 3, '2022-03-31 19:35:21', '2022-04-20 00:08:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (50, 287, '短信记录', 'wind-power', '', '/operation/messageRecord', 'C', 10, 1, 0, 3, '2022-04-01 17:10:30', '2023-02-02 15:50:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (51, 5, '资金流水', 'hot-water', '', '/finance/capitalFlow', 'C', 10, 1, 0, 3, '2022-04-07 16:44:24', '2023-02-02 15:44:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (52, 5, '转账记录', '', '', '/finance/transferRecord', 'C', 10, 1, 1, 3, '2022-04-07 18:10:21', '2022-10-20 15:46:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (53, 5, '商户结算设置', 'ice-cream', '', '/finance/closingSetting', 'C', 10, 1, 0, 3, '2022-04-07 18:12:20', '2023-02-02 15:45:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (55, 4, '用户标签', 'apple', '', '/user/label', 'C', 10, 1, 0, 3, '2022-04-21 22:03:11', '2023-02-02 15:42:10'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (56, 6, '平台设置', 'burger', '', '/operation/setting', 'C', 11, 1, 0, 3, '2022-04-22 17:03:59', '2023-02-02 15:46:14'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (57, 166, '入驻协议', '', '', '/merchant/type/accord', 'C', 1, 1, 0, 3, '2022-04-27 15:19:36', '2022-07-28 16:04:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (58, 11, '店铺类型', 'orange', 'platform:merchant:type:list', '/merchant/type/list', 'C', 10, 1, 0, 3, '2022-04-27 15:26:16', '2023-02-02 15:41:40'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (59, 17, '物流公司', '', '', '/maintain/logistics/companyList', 'C', 0, 1, 0, 3, '2022-05-05 10:30:21', '2022-07-28 16:45:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (60, 7, '敏感操作日志', 'cloudy', '', '/maintain/sensitiveLog', 'C', 0, 1, 0, 3, '2022-05-09 15:34:50', '2023-02-02 15:48:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (61, 6, '协议管理', 'chicken', '', '/operation/agreement', 'C', 1, 1, 0, 3, '2022-06-13 10:10:52', '2023-02-02 15:46:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (62, 21, '平台端菜单列表', '', 'platform:menu:list', NULL, 'A', 1, 1, 0, 3, '2022-03-07 11:15:00', '2022-07-28 16:05:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (63, 21, '新增菜单', '', 'platform:menu:add', NULL, 'A', 1, 1, 0, 3, '2022-03-07 11:15:41', '2022-07-28 16:16:59'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (64, 21, '删除菜单', '', 'platform:menu:delete', NULL, 'A', 1, 1, 0, 3, '2022-03-07 11:15:58', '2022-07-28 16:16:59'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (65, 21, '修改菜单', '', 'platform:menu:update', NULL, 'A', 1, 1, 0, 3, '2022-03-07 11:16:15', '2022-07-28 16:16:59'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (66, 21, '菜单详情', '', 'platform:menu:info', NULL, 'A', 1, 1, 0, 3, '2022-03-07 11:16:24', '2022-07-28 16:17:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (67, 21, '修改菜单显示状态', '', 'platform:menu:show:status', NULL, 'A', 1, 1, 0, 3, '2022-03-07 11:16:34', '2022-07-28 16:17:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (68, 21, '菜单缓存树', '', 'platform:menu:cache:tree', NULL, 'A', 1, 1, 0, 3, '2022-03-07 11:16:45', '2022-07-28 16:17:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (69, 400, '无效关键词回复', '', '', '/application/publicAccount/wxReply/replyIndex', 'C', 0, 1, 0, 3, '2022-07-25 16:36:49', '2022-09-15 16:44:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (70, 399, '微信菜单', '', '', '/application//publicAccount/wxMenus', 'C', 0, 1, 0, 3, '2022-07-25 17:28:03', '2022-09-17 14:20:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (71, 398, '小程序', 'baseball', '', '/application/publicRoutine', 'M', 0, 1, 0, 3, '2022-07-25 17:39:00', '2023-02-02 15:50:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (72, 71, '下载小程序', '', '', '/application/publicRoutine/download', 'C', 0, 1, 0, 3, '2022-07-25 17:39:45', '2022-09-15 16:45:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (73, 0, '营销', 's-marketing', '', '/marketing', 'M', 9993, 1, 0, 3, '2022-07-25 17:41:12', '2022-11-10 14:42:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (74, 73, '积分', 'goblet-full', '', '/marketing/integral', 'M', 0, 1, 0, 3, '2022-07-25 17:41:39', '2023-02-02 15:43:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (75, 74, '积分配置', '', '', '/marketing/integral/integralconfig', 'C', 0, 1, 0, 3, '2022-07-25 17:42:44', '2022-07-28 16:20:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (76, 74, '积分日志', '', '', '/marketing/integral/integrallog', 'C', 0, 1, 0, 3, '2022-07-25 17:43:11', '2022-11-09 18:47:13'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (77, 73, '秒杀管理', '', '', '/marketing/seckill', 'M', 0, 0, 1, 3, '2022-07-25 17:50:45', '2022-11-09 16:36:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (78, 77, '秒杀配置', '', '', '/marketing/seckill/config', 'C', 0, 1, 1, 3, '2022-07-25 17:51:27', '2022-07-28 16:20:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (79, 77, '秒杀商品', '', '', '/marketing/seckill/list', 'C', 0, 1, 1, 3, '2022-07-25 17:52:02', '2022-07-28 16:20:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (80, 73, '砍价管理', '', '', '/marketing/bargain', 'M', 0, 1, 1, 3, '2022-07-25 17:52:34', '2022-07-28 16:21:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (81, 80, '砍价商品', '', '', '/marketing/bargain/bargainGoods', 'C', 0, 1, 1, 3, '2022-07-25 17:52:56', '2022-07-28 16:20:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (82, 80, '砍价列表', '', '', '/marketing/bargain/bargainList', 'C', 0, 1, 1, 3, '2022-07-25 17:53:19', '2022-07-28 16:20:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (83, 73, '拼团管理', '', '', '/marketing/groupBuy', 'M', 0, 1, 1, 3, '2022-07-25 17:54:05', '2022-07-28 16:21:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (84, 83, '拼团商品', '', '', '/marketing/groupBuy/groupGoods', 'C', 0, 1, 1, 3, '2022-07-25 17:54:25', '2022-07-28 16:20:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (85, 83, '拼团列表', '', '', '/marketing/groupBuy/groupList', 'C', 0, 1, 1, 3, '2022-07-25 17:54:54', '2022-07-28 16:20:59'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (86, 73, '优惠券', '', '', '/marketing/coupon', 'M', 0, 0, 1, 3, '2022-07-25 17:56:26', '2022-11-09 16:37:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (87, 86, '优惠券', '', '', '/marketing/coupon/list', 'C', 0, 1, 1, 3, '2022-07-25 17:57:18', '2022-07-28 16:21:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (88, 86, '领取记录', '', '', '/marketing/coupon/record', 'C', 0, 1, 1, 3, '2022-07-25 17:57:39', '2022-07-28 16:21:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (89, 0, '分销', 's-check', '', '/distribution', 'M', 9990, 1, 0, 3, '2022-07-25 17:58:27', '2022-07-28 16:23:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (90, 89, '分销配置', 'sunny', '', '/distribution/distributionconfig', 'C', 0, 1, 0, 3, '2022-07-25 17:58:51', '2023-02-02 15:48:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (91, 89, '分销员管理', 'heavy-rain', '', '/distribution/index', 'C', 0, 1, 0, 3, '2022-07-25 17:59:12', '2023-02-02 15:49:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (93, 0, '内容', 's-management', '', '/content', 'M', 9994, 1, 0, 3, '2022-07-26 17:08:54', '2022-11-10 14:39:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (94, 93, '文章分类', 'refrigerator', '', '/content/classifManager', 'C', 9, 1, 0, 3, '2022-07-26 17:10:21', '2023-02-02 15:43:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (95, 93, '文章管理', 'goblet-square-full', '', '/content/articleManager', 'C', 0, 1, 0, 3, '2022-07-26 17:11:55', '2023-02-02 15:43:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (96, 94, '新增文章分类', '', 'platform:article:category:add', '', 'A', 0, 1, 0, 3, '2022-07-26 17:12:24', '2022-07-28 16:19:39'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (97, 94, '删除文章分类', '', 'platform:article:category:delete', '', 'A', 0, 1, 0, 3, '2022-07-26 17:12:44', '2022-07-28 16:19:39'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (98, 94, '修改文章分类', '', 'platform:article:category:update', '', 'A', 0, 1, 0, 3, '2022-07-26 17:12:58', '2022-07-28 16:19:39'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (99, 95, '文章新增', '', 'platform:article:save', '', 'A', 0, 1, 0, 3, '2022-07-26 17:13:16', '2022-07-28 16:19:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (100, 95, '删除文章', '', 'platform:article:delete', '', 'A', 0, 1, 0, 3, '2022-07-26 17:13:33', '2022-07-28 16:19:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (101, 95, '文章编辑', '', 'platform:article:update', '', 'A', 0, 1, 0, 3, '2022-07-26 17:13:47', '2022-07-28 16:19:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (102, 95, '文章详情', '', 'platform:article:info', '', 'A', 0, 1, 0, 3, '2022-07-26 17:14:01', '2022-07-28 16:19:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (103, 94, '文章分类开关', '', 'platform:article:category:switch', '', 'A', 0, 1, 0, 3, '2022-07-28 16:07:56', '2022-07-28 17:50:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (104, 5, '账单管理', 'dessert', '', '/finance/statement', 'C', 10, 1, 0, 3, '2022-04-08 19:25:19', '2023-02-02 15:45:16'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (105, 8, '平台端登出', '', 'platform:logout', '', 'A', 1, 1, 0, 3, '2022-03-03 16:12:33', '2022-07-28 16:56:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (106, 8, '平台端获取用户详情', '', 'platform:login:user:info', '', 'A', 1, 1, 0, 3, '2022-03-03 16:14:10', '2022-07-28 16:56:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (107, 8, '平台端获取管理员可访问目录', '', 'platform:login:menus', '', 'A', 1, 1, 0, 3, '2022-03-03 16:14:56', '2022-07-28 16:56:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (108, 8, '修改登录用户信息', '', 'platform:login:admin:update', '', 'A', 1, 1, 0, 3, '2022-04-24 10:31:28', '2022-04-24 10:31:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (109, 10, '表单模板详情', '', 'platform:system:form:info', '', 'A', 1, 1, 0, 3, '2021-12-07 09:33:10', '2022-07-28 16:26:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (110, 10, '根据key存储', '', 'platform:system:config:saveuniq', '', 'A', 1, 1, 0, 3, '2021-12-08 18:57:26', '2022-07-28 16:27:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (111, 10, '根据key获取', '', 'platform:system:config:getuniq', '', 'A', 1, 1, 0, 3, '2021-12-08 18:58:55', '2022-07-28 16:28:11'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (112, 10, '检测表单name是否存在', '', 'platform:system:config:check', '', 'A', 1, 1, 0, 3, '2021-12-13 10:30:58', '2022-07-28 16:27:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (113, 10, '整体保存Config表单数据', '', 'platform:system:config:save:form', '', 'A', 1, 1, 0, 3, '2021-12-13 10:31:24', '2022-07-28 16:29:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (114, 10, '更新配置信息', '', 'platform:system:config:update', '', 'A', 1, 1, 0, 3, '2021-12-13 10:31:44', '2022-07-28 16:28:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (115, 10, '组合数据详情', '', 'platform:system:group:info', '', 'A', 1, 1, 0, 3, '2021-12-13 10:32:28', '2022-07-28 16:29:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (116, 10, '加载表单配置详情', '', 'platform:system:config:info', '', 'A', 1, 1, 0, 3, '2022-04-12 14:26:15', '2022-07-28 16:28:57'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (118, 28, '表单添加', NULL, 'platform:system:form:save', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-07-28 18:04:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (119, 28, '表单修改', NULL, 'platform:system:form:update', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-11-09 18:43:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (120, 27, '数据组添加', NULL, 'platform:system:group:save', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-07-28 16:43:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (121, 27, '数据组修改', NULL, 'platform:system:group:update', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-07-28 16:44:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (122, 27, '数据组删除', NULL, 'platform:system:group:delete', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-11-07 10:43:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (123, 27, '组合数据添加', NULL, 'platform:system:group:data:save', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-07-28 16:44:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (124, 27, '组合数据修改', NULL, 'platform:system:group:data:update', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-07-28 16:44:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (125, 27, '组合数据删除', NULL, 'platform:system:group:data:delete', '', 'A', 1, 1, 0, 3, '2021-11-16 17:44:35', '2022-07-28 16:44:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (126, 27, '组合数据详情', '', 'platform:system:group:data:info', '', 'A', 1, 1, 0, 3, '2021-12-02 11:35:48', '2022-07-28 16:44:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (127, 27, '分页组合数据详情', '', 'platform:system:group:data:list', '', 'A', 1, 1, 0, 3, '2021-12-03 17:39:37', '2022-07-28 16:44:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (128, 35, '商户分类分页列表', '', 'platform:merchant:category:list', '', 'A', 1, 1, 0, 3, '2022-03-03 17:09:51', '2022-07-28 16:56:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (129, 35, '添加商户分类', '', 'platform:merchant:category:add', '', 'A', 1, 1, 0, 3, '2022-03-03 17:10:02', '2022-07-28 16:56:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (130, 35, '编辑商户分类', '', 'platform:merchant:category:update', '', 'A', 1, 1, 0, 3, '2022-03-03 17:10:06', '2022-07-28 16:56:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (131, 35, '删除商户分类', '', 'platform:merchant:category:delete', '', 'A', 1, 1, 0, 3, '2022-03-03 17:11:04', '2022-07-28 16:56:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (132, 35, '获取全部商户分类列表', '', 'platform:merchant:category:all', '', 'A', 1, 1, 0, 3, '2022-03-03 17:11:08', '2022-07-28 16:56:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (133, 58, '添加商户类型', '', 'platform:merchant:type:add', NULL, 'A', 1, 1, 0, 3, '2022-03-03 17:11:15', '2022-07-28 16:59:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (134, 58, '编辑类型类型', '', 'platform:merchant:type:update', NULL, 'A', 1, 1, 0, 3, '2022-03-03 17:11:23', '2022-07-28 16:59:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (135, 58, '删除商户类型', '', 'platform:merchant:type:delete', NULL, 'A', 1, 1, 0, 3, '2022-03-03 17:27:04', '2022-07-28 16:59:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (136, 58, '获取全部商户类型列表', '', 'platform:merchant:type:all', NULL, 'A', 1, 1, 0, 3, '2022-03-03 17:27:54', '2022-07-28 16:59:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (137, 38, '商户入驻分页列表', NULL, 'platform:merchant:apply:page:list', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:10', '2022-04-20 00:32:11'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (138, 38, '审核', NULL, 'platform:merchant:apply:audit', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:17', '2022-04-20 00:36:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (139, 38, '备注', NULL, 'platform:merchant:apply:remark', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:36:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (140, 36, '商户分页列表', NULL, 'platform:merchant:page:list', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:37:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (141, 36, '添加商户', NULL, 'platform:merchant:add', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:37:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (142, 36, '编辑商户', NULL, 'platform:merchant:update', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-05-14 14:35:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (143, 36, '重置商户密码', NULL, 'platform:merchant:reset:password', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-08-22 14:58:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (144, 36, '修改复制商品数量', NULL, 'platform:merchant:copy:prodcut:num', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:39:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (145, 36, '商户详情', NULL, 'platform:merchant:detail', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:37:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (146, 36, '推荐开关', NULL, 'platform:merchant:recommend:switch', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:39:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (147, 36, '关闭商户', NULL, 'platform:merchant:close', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:37:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (148, 36, '开启商户', NULL, 'platform:merchant:open', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:37:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (149, 36, '商户分页列表表头数量', NULL, 'platform:merchant:list:header:num', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-22 17:02:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (150, 37, '平台端商户菜单列表', NULL, 'platform:merchant:menu:list', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:38:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (151, 37, '新增菜单', NULL, 'platform:merchant:menu:add', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:38:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (152, 37, '删除菜单', NULL, 'platform:merchant:menu:delete', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:38:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (153, 37, '修改菜单', NULL, 'platform:merchant:menu:update', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:38:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (154, 37, '菜单详情', NULL, 'platform:merchant:menu:info', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:38:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (155, 37, '修改菜单显示状态', NULL, 'platform:merchant:menu:show:status', NULL, 'A', 1, 1, 0, 3, '2022-03-07 17:26:31', '2022-04-20 00:38:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (156, 20, '管理员添加', NULL, 'platform:admin:save', '', 'A', 1, 1, 0, 3, '2021-11-16 17:35:43', '2022-05-10 17:12:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (157, 20, '管理员修改', NULL, 'platform:admin:update', '', 'A', 1, 1, 0, 3, '2021-11-16 17:35:43', '2022-04-19 23:36:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (158, 20, '管理员删除', NULL, 'platform:admin:delete', '', 'A', 1, 1, 0, 3, '2021-11-16 17:35:43', '2022-04-19 23:36:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (159, 20, '管理员状态更新', NULL, 'platform:admin:update:status', '', 'A', 1, 1, 0, 3, '2021-11-16 17:35:43', '2022-04-19 23:36:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (160, 20, '管理员详情', '', 'platform:admin:info', '', 'A', 1, 1, 0, 3, '2021-12-06 11:04:41', '2022-04-19 23:36:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (161, 24, '删除素材', NULL, 'platform:attachment:delete', 'api/admin/system/attachment/delete', 'A', 1, 1, 0, 3, '2021-11-16 17:41:33', '2022-04-20 00:01:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (163, 24, '修改图片分组', '', 'platform:attachment:move', '', 'A', 1, 1, 0, 3, '2021-12-10 15:38:24', '2022-04-20 00:01:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (164, 24, '图片上传', '', 'platform:upload:image', '', 'A', 1, 1, 0, 3, '2022-04-06 17:13:36', '2022-04-20 00:01:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (165, 24, '文件上传', '', 'platform:upload:file', '', 'A', 1, 1, 0, 3, '2022-04-06 17:14:12', '2022-04-20 00:01:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (166, 19, '权限新增', NULL, 'platform:admin:role:save', NULL, 'A', 1, 1, 0, 3, '2021-11-16 17:35:43', '2022-04-20 00:30:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (167, 19, '权限删除', NULL, 'platform:admin:role:delete', NULL, 'A', 1, 1, 0, 3, '2021-11-16 17:35:43', '2022-04-20 00:30:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (168, 19, '权限更新', NULL, 'platform:admin:role:update', NULL, 'A', 1, 1, 0, 3, '2021-11-16 17:35:43', '2022-04-20 00:30:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (169, 19, '角色详情', NULL, 'platform:admin:role:info', NULL, 'A', 1, 1, 0, 3, '2021-12-03 16:39:41', '2022-04-20 00:27:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (170, 19, '修改角色状态', '', 'platform:admin:role:update:status', '', 'A', 1, 1, 0, 3, '2021-12-06 10:51:09', '2022-04-19 23:36:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (171, 0, '首页', 's-grid', '', '/dashboard', 'M', 9999, 1, 0, 4, '2022-03-14 17:02:46', '2022-04-24 10:50:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (172, 0, '商品', 's-goods', '', '/product', 'M', 9999, 1, 0, 4, '2022-03-14 17:05:29', '2022-04-19 23:36:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (173, 0, '订单', 's-order', '', '/order', 'M', 9999, 1, 0, 4, '2022-03-14 17:27:37', '2022-04-19 23:36:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (174, 0, '用户', 'user-solid', '', '/user', 'M', 9999, 1, 0, 4, '2022-03-14 17:33:47', '2022-04-19 23:36:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (175, 0, '财务', 's-finance', '', '/accounts', 'M', 9999, 1, 0, 4, '2022-03-14 18:30:51', '2022-04-19 23:36:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (176, 0, '设置', 's-tools', '', '/operation', 'M', 9999, 1, 0, 4, '2022-03-26 11:29:43', '2022-04-19 23:36:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (177, 0, '优惠券', 's-ticket', '', '/coupon', 'M', 10, 1, 0, 4, '2022-03-28 11:10:10', '2022-04-24 15:49:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (178, 0, '维护', 's-open', '', '/maintain', 'M', 9999, 1, 0, 4, '2022-04-01 09:18:45', '2022-04-19 23:36:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (179, 0, '公共', '', '', '', 'M', 8888, 0, 0, 4, '2022-04-20 12:16:30', '2022-04-21 00:59:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (180, 0, '登录管理', '', '', '', 'M', 8888, 0, 0, 4, '2022-04-21 00:50:52', '2022-04-21 00:59:17'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (181, 0, '基础分类(素材/设置/文章)', '', '', '', 'M', 8888, 0, 0, 4, '2022-04-21 01:02:22', '2022-04-21 01:05:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (182, 172, '商品管理', '', '', '/product/list', 'C', 10, 1, 0, 4, '2022-03-14 17:24:41', '2022-08-09 17:56:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (183, 172, '商品分类', '', '', '/product/classify', 'C', 10, 1, 0, 4, '2022-03-14 17:25:39', '2022-04-20 09:24:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (184, 172, '商品规格', '', '', '/product/attr', 'C', 10, 1, 0, 4, '2022-03-14 17:26:06', '2022-04-20 09:24:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (185, 172, '商品评价', '', '', '/product/comment', 'C', 10, 1, 0, 4, '2022-03-14 17:26:33', '2022-09-15 15:04:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (186, 173, '订单管理', '', '', '/order/list', 'C', 10, 1, 0, 4, '2022-03-14 17:33:00', '2022-04-20 09:25:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (187, 173, '退款单', '', '', '/order/refund', 'C', 10, 1, 0, 4, '2022-03-14 17:33:13', '2022-04-20 09:25:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (188, 174, '用户列表', '', '', '/user/index', 'C', 10, 1, 0, 4, '2022-03-14 17:36:23', '2022-04-20 00:13:29'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (189, 175, '资金流水', '', '', '/finance/capitalFlow', 'C', 10, 1, 0, 4, '2022-03-14 18:53:26', '2022-10-20 10:45:08'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (190, 175, '结算记录 ', '', '', '/finance/closingRecord', 'C', 10, 1, 0, 4, '2022-03-14 18:53:48', '2022-10-20 10:49:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (191, 175, '账单管理', '', '', '/finance/statement', 'C', 10, 1, 0, 4, '2022-03-14 18:55:22', '2022-10-20 10:45:13'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (192, 176, '商户基本设置', '', '', '/operation/modifyStoreInfo', 'C', 10, 1, 0, 4, '2022-03-26 17:19:23', '2022-04-20 09:25:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (193, 176, '商城设置', '', '', '/operation/mallConfiguration', 'C', 10, 0, 0, 4, '2022-03-26 17:43:18', '2022-04-20 09:25:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (194, 176, '管理权限', '', '', '/operation/roleManager', 'C', 0, 1, 0, 4, '2022-04-24 16:01:28', '2022-04-24 16:01:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (195, 177, '优惠券列表', '', '', '/coupon/list', 'C', 10, 1, 0, 4, '2022-03-28 11:12:30', '2022-04-24 15:49:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (196, 177, '领取记录', '', '', '/coupon/record', 'C', 10, 1, 0, 4, '2022-03-28 11:13:42', '2022-07-28 17:27:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (197, 178, '素材管理', '', '', '/maintain/picture', 'C', 10, 1, 0, 4, '2022-03-28 15:58:34', '2022-04-20 09:27:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (198, 178, '敏感操作日志', '', '', '/maintain/sensitiveLog', 'C', 10, 1, 0, 4, '2022-04-01 09:23:52', '2022-07-28 17:27:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (199, 178, '物流管理', '', '', '/maintain/logistics', 'C', 1, 0, 0, 4, '2022-06-22 17:40:50', '2022-11-14 18:54:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (200, 179, '查询表单模板信息', '', '', '', 'A', 1, 0, 0, 4, '2022-03-26 11:57:15', '2022-07-28 17:27:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (201, 179, '文件上传', '', 'merchant:upload:file', '', 'A', 1, 1, 0, 4, '2022-04-09 11:09:52', '2022-04-21 01:04:21'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (202, 179, '图片上传', '', 'merchant:upload:image', '', 'A', 1, 1, 0, 4, '2022-04-09 11:10:34', '2022-04-21 01:04:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (203, 179, '表单组件详情', '', 'merchant:config:form:info', '', 'A', 1, 1, 0, 4, '2022-04-12 10:58:48', '2022-08-16 10:01:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (204, 179, '获取公共配置1getuniq', '', 'merchant:config:getuniq', '', 'A', 1, 1, 0, 4, '2022-04-20 12:17:05', '2022-08-16 09:58:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (205, 179, '获取公共配置2key', '', 'merchant:config:get', '', 'A', 1, 1, 0, 4, '2022-04-20 12:17:31', '2022-08-16 09:58:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (206, 180, '菜单缓存树', '', 'merchant:menu:cache:tree', '', 'A', 1, 1, 0, 4, '2022-03-07 11:17:18', '2022-07-28 17:27:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (207, 180, '登出', '', 'merchant:logout', '', 'A', 1, 1, 0, 4, '2022-03-07 11:17:23', '2022-07-28 17:27:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (208, 180, '获取管理员可访问目录', '', 'merchant:login:menus', '', 'A', 1, 1, 0, 4, '2022-03-07 11:17:46', '2022-07-28 17:27:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (209, 180, '修改登录用户信息', '', 'merchant:login:admin:update', '', 'A', 1, 1, 0, 4, '2022-04-24 10:37:32', '2022-04-24 10:37:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (210, 180, '商户端获取用户详情', '', 'merchant:login:user:info', '', 'A', 0, 1, 0, 4, '2022-05-16 15:54:43', '2022-05-16 15:54:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (211, 197, '素材列表', '', 'merchant:attachment:list', '', 'A', 1, 1, 0, 4, '2022-04-06 19:45:21', '2022-04-20 09:55:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (212, 197, '素材删除', '', 'merchant:attachment:delete', '', 'A', 1, 1, 0, 4, '2022-04-06 19:45:45', '2022-04-20 09:55:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (213, 197, '移动素材', '', 'merchant:attachment:move', '', 'A', 1, 1, 0, 4, '2022-04-06 19:46:08', '2022-04-20 09:55:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (214, 192, '商户端商户基础信息', NULL, 'merchant:base:info', NULL, 'A', 1, 1, 0, 4, '2022-03-07 17:26:31', '2022-04-20 10:04:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (215, 192, '商户端商户配置信息', NULL, 'merchant:config:info', NULL, 'A', 1, 1, 0, 4, '2022-03-07 17:26:31', '2022-04-20 10:04:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (216, 192, '商户端商户配置信息编辑', NULL, 'merchant:config:info:edit', NULL, 'A', 1, 1, 0, 4, '2022-03-07 17:26:31', '2022-04-20 10:04:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (217, 192, '商户端商户开关', NULL, 'merchant:switch:update', NULL, 'A', 1, 1, 0, 4, '2022-03-07 17:26:31', '2022-04-20 10:04:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (218, 194, '角色管理', '', '', '/operation/roleManager/identityManager', 'C', 10, 1, 0, 4, '2022-03-26 17:21:03', '2022-04-24 16:02:20'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (219, 194, '管理员列表', '', 'merchant:admin:list', '/operation/roleManager/adminList', 'C', 0, 1, 0, 4, '2022-04-24 15:59:06', '2022-05-05 10:12:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (220, 219, '新增后台管理员', '', 'merchant:admin:save', '', 'A', 0, 1, 0, 4, '2022-05-11 15:30:05', '2022-05-11 15:30:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (221, 219, '删除后台管理员', '', 'merchant:admin:delete', '', 'A', 0, 1, 0, 4, '2022-05-11 15:30:29', '2022-05-11 15:30:29'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (222, 219, '修改后台管理员', '', 'merchant:admin:update', '', 'A', 0, 1, 0, 4, '2022-05-11 15:30:45', '2022-05-11 15:30:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (223, 219, '后台管理员详情', '', 'merchant:admin:info', '', 'A', 0, 1, 0, 4, '2022-05-11 15:31:04', '2022-05-11 15:31:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (224, 219, '修改后台管理员状态', '', 'merchant:admin:update:status', '', 'A', 0, 1, 0, 4, '2022-05-11 15:31:18', '2022-05-11 15:31:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (225, 218, '角色列表', '', 'merchant:admin:role:list', '', 'A', 1, 1, 0, 4, '2022-04-07 20:40:35', '2022-04-21 01:03:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (226, 218, '创建角色', '', 'merchant:admin:role:save', '', 'A', 1, 1, 0, 4, '2022-04-07 20:41:06', '2022-04-21 01:03:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (227, 218, '删除角色', '', 'merchant:admin:role:delete', '', 'A', 1, 1, 0, 4, '2022-04-07 20:41:33', '2022-04-21 01:03:57'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (228, 218, '更新角色', '', 'merchant:admin:role:update', '', 'A', 1, 1, 0, 4, '2022-04-07 20:41:54', '2022-04-21 01:04:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (229, 218, '角色详情', '', 'merchant:admin:role:info', '', 'A', 1, 1, 0, 4, '2022-04-07 20:42:15', '2022-04-21 01:04:08'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (230, 218, '修改角色状态', '', 'merchant:admin:role:update:status', '', 'A', 1, 1, 0, 4, '2022-04-07 20:42:42', '2022-04-21 01:04:14'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (231, 18, '商品分类列表', '', 'platform:product:category:list', '', 'A', 0, 1, 0, 3, '2022-07-29 09:45:31', '2022-07-29 09:45:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (232, 18, '新增商品分类', '', 'platform:product:category:add', '', 'A', 0, 1, 0, 3, '2022-07-29 09:45:48', '2022-07-29 09:45:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (233, 18, '删除商品分类', '', 'platform:product:category:delete', '', 'A', 0, 1, 0, 3, '2022-07-29 09:46:01', '2022-07-29 09:46:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (234, 18, '修改商品分类', '', 'platform:product:category:update', '', 'A', 0, 1, 0, 3, '2022-07-29 09:46:19', '2022-07-29 09:46:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (235, 18, '修改商品分类显示状态', '', 'platform:product:category:show:status', '', 'A', 0, 1, 0, 3, '2022-07-29 09:46:32', '2022-07-29 09:46:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (236, 18, '商品分类缓存树', '', 'platform:product:category:cache:tree', '', 'A', 0, 1, 0, 3, '2022-07-29 09:46:50', '2022-07-29 09:46:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (237, 95, '文章列表', '', 'platform:article:list', '', 'A', 0, 1, 0, 3, '2022-07-29 09:59:24', '2022-07-29 09:59:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (238, 34, '保障服务列表', '', 'platform:product:guarantee:list', '', 'A', 0, 1, 0, 3, '2022-07-29 10:28:56', '2022-07-29 10:28:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (239, 34, '新增保障服务', '', 'platform:product:guarantee:add', '', 'A', 0, 1, 0, 3, '2022-07-29 10:29:12', '2022-07-29 10:29:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (240, 34, '删除保障服务', '', 'platform:product:guarantee:delete', '', 'A', 0, 1, 0, 3, '2022-07-29 10:29:26', '2022-07-29 10:29:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (241, 34, '修改保障服务', '', 'platform:product:guarantee:update', '', 'A', 0, 1, 0, 3, '2022-07-29 10:29:39', '2022-07-29 10:29:39'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (242, 34, '修改保障服务显示状态', '', 'platform:product:guarantee:show:status', '', 'A', 0, 1, 0, 3, '2022-07-29 10:29:55', '2022-07-29 10:29:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (243, 40, '品牌分页列表', '', 'platform:product:brand:list', '', 'A', 0, 1, 0, 3, '2022-07-29 10:34:49', '2022-07-29 10:34:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (244, 40, '新增品牌', '', 'platform:product:brand:add', '', 'A', 0, 1, 0, 3, '2022-07-29 10:35:10', '2022-07-29 10:35:10'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (245, 40, '删除品牌', '', 'platform:product:brand:delete', '', 'A', 0, 1, 0, 3, '2022-07-29 10:35:23', '2022-07-29 10:35:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (246, 40, '修改品牌', '', 'platform:product:brand:update', '', 'A', 0, 1, 0, 3, '2022-07-29 10:35:37', '2022-07-29 10:35:37'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (247, 40, '修改品牌显示状态', '', 'platform:product:brand:show:status', '', 'A', 0, 1, 0, 3, '2022-07-29 10:35:52', '2022-07-29 10:35:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (248, 40, '品牌缓存列表(全部)', '', 'platform:product:brand:cache:list', '', 'A', 0, 1, 0, 3, '2022-07-29 10:36:07', '2022-07-29 10:36:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (249, 9, '分页分类列表', '', 'platform:category:list', '', 'A', 0, 1, 0, 3, '2022-07-29 15:36:30', '2022-07-29 15:36:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (250, 9, '新增分类', '', 'platform:category:save', '', 'A', 0, 1, 0, 3, '2022-07-29 15:37:01', '2022-07-29 15:37:17'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (251, 9, '删除分类', '', 'platform:category:delete', '', 'A', 0, 1, 0, 3, '2022-07-29 15:37:32', '2022-07-29 15:37:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (252, 9, '修改分类', '', 'platform:category:update', '', 'A', 0, 1, 0, 3, '2022-07-29 15:37:47', '2022-07-29 15:37:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (253, 9, '分类详情', '', 'platform:category:info', '', 'A', 0, 1, 0, 3, '2022-07-29 15:38:00', '2022-07-29 15:38:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (254, 9, '获取分类tree结构的列表', '', 'platform:category:list:tree', '', 'A', 0, 1, 0, 3, '2022-07-29 15:38:17', '2022-07-29 15:38:17'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (255, 9, '根据id集合获取分类列表', '', 'platform:category:list:ids', '', 'A', 0, 1, 0, 3, '2022-07-29 15:38:33', '2022-07-29 15:38:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (256, 9, '更改分类状态', '', 'platform:category:update:status', '', 'A', 0, 1, 0, 3, '2022-07-29 15:38:45', '2022-07-29 15:38:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (257, 176, '运费模板', '', '', '/operation/freightSet', 'C', 1, 1, 0, 4, '2022-08-01 12:20:46', '2022-08-04 14:39:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (258, 257, '运费模板分页列表', '', 'merchant:shipping:templates:list', '', 'A', 1, 1, 0, 4, '2022-08-01 12:21:09', '2022-08-01 12:21:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (259, 257, '新增运费模板', '', 'merchant:shipping:templates:save', '', 'A', 1, 1, 0, 4, '2022-08-01 12:21:30', '2022-08-01 12:21:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (260, 257, '删除运费模板', '', 'merchant:shipping:templates:delete', '', 'A', 1, 1, 0, 4, '2022-08-01 12:21:44', '2022-08-01 12:21:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (261, 257, '运费模板修改', '', 'merchant:shipping:templates:update', '', 'A', 1, 1, 0, 4, '2022-08-01 12:21:58', '2022-08-01 12:21:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (262, 257, '运费模板详情', '', 'merchant:shipping:templates:info', '', 'A', 1, 1, 0, 4, '2022-08-01 12:22:11', '2022-08-01 12:22:11'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (263, 183, '商户商品分类列表', '', 'merchant:product:category:list', '', 'A', 1, 1, 0, 4, '2022-08-01 12:25:35', '2022-08-01 12:25:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (264, 183, '商户商品分类列表', '', 'merchant:product:category:list', '', 'A', 1, 1, 1, 4, '2022-08-01 12:25:35', '2022-08-01 12:25:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (265, 183, '新增商户商品分类', '', 'merchant:product:category:add', '', 'A', 1, 1, 0, 4, '2022-08-01 12:25:56', '2022-08-01 12:25:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (266, 183, '删除商户商品分类', '', 'merchant:product:category:delete', '', 'A', 1, 1, 0, 4, '2022-08-01 12:26:08', '2022-08-01 12:26:08'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (267, 183, '修改商户商品分类', '', 'merchant:product:category:update', '', 'A', 1, 1, 0, 4, '2022-08-01 12:26:22', '2022-08-01 12:26:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (268, 183, '修改商户商品分类显示状态', '', 'merchant:product:category:show:status', '', 'A', 1, 1, 0, 4, '2022-08-01 12:26:34', '2022-08-01 12:26:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (269, 183, '商户商品分类缓存树', '', 'merchant:product:category:cache:tree', '', 'A', 1, 1, 0, 4, '2022-08-01 12:26:47', '2022-08-01 12:26:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (270, 184, '商户端商品规格分页列表', '', 'merchant:product:rule:page:list', '', 'A', 1, 1, 0, 4, '2022-08-01 12:27:25', '2022-08-01 12:27:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (271, 184, '新增商品规格', '', 'merchant:product:rule:save', '', 'A', 1, 1, 0, 4, '2022-08-01 12:28:00', '2022-08-01 12:28:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (272, 184, '删除商品规格', '', 'merchant:product:rule:delete', '', 'A', 1, 1, 0, 4, '2022-08-01 12:28:12', '2022-08-01 12:28:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (273, 184, '修改商品规格', '', 'merchant:product:rule:update', '', 'A', 1, 1, 0, 4, '2022-08-01 12:28:25', '2022-08-01 12:28:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (274, 184, '商品规格详情', '', 'merchant:product:rule:info', '', 'A', 1, 1, 0, 4, '2022-08-01 12:28:36', '2022-08-01 12:28:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (275, 172, '商品品牌', '', '', '/', 'C', 1, 0, 0, 4, '2022-08-01 12:30:24', '2022-08-01 12:30:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (276, 275, '品牌分页列表', '', 'merchant:plat:product:brand:list', '', 'A', 1, 1, 0, 4, '2022-08-01 12:30:38', '2022-08-01 12:30:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (277, 275, '品牌缓存列表(全部)', '', 'merchant:plat:product:brand:cache:list', '', 'A', 1, 1, 0, 4, '2022-08-01 12:30:52', '2022-08-01 12:30:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (278, 172, '平台商品分类', '', '', '/', 'C', 1, 0, 0, 4, '2022-08-01 12:31:24', '2022-08-01 12:31:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (279, 278, '分类缓存树', '', 'merchant:plat:product:category:cache:tree', '', 'A', 1, 1, 0, 4, '2022-08-01 12:31:43', '2022-08-01 12:31:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (280, 172, '商品保障服务', '', '', '/', 'C', 1, 0, 0, 4, '2022-08-01 12:32:12', '2022-08-01 12:32:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (281, 280, '保障服务列表', '', 'merchant:plat:product:guarantee:list', '', 'A', 1, 1, 0, 4, '2022-08-01 12:32:25', '2022-08-01 12:32:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (282, 6, '商户设置', '', '', '/operation/merchantSetting', 'C', 0, 1, 1, 3, '2022-08-01 15:51:40', '2022-08-01 15:52:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (283, 176, '运费模板', '', '', '/operation/freightSet', 'C', 1, 1, 1, 4, '2022-08-02 12:13:22', '2022-08-02 12:13:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (284, 181, '基础分类分页列表', '', 'merchant:category:list', '', 'A', 1, 1, 0, 4, '2022-08-04 09:42:25', '2022-08-04 09:42:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (285, 181, '新增基础分类', '', 'merchant:category:save', '', 'A', 1, 1, 0, 4, '2022-08-04 09:42:42', '2022-08-04 09:42:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (286, 181, '删除基础分类', '', 'merchant:category:delete', '', 'A', 1, 1, 0, 4, '2022-08-04 09:42:55', '2022-08-04 09:42:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (287, 181, '修改基础分类', '', 'merchant:category:update', '', 'A', 1, 1, 0, 4, '2022-08-04 09:43:10', '2022-08-04 09:43:10'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (288, 181, '基础分类详情', '', 'merchant:category:info', '', 'A', 1, 1, 0, 4, '2022-08-04 09:43:23', '2022-08-04 09:43:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (289, 181, '获取基础分类tree结构的列表', '', 'merchant:category:list:tree', '', 'A', 1, 1, 0, 4, '2022-08-04 09:43:35', '2022-08-04 09:43:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (290, 181, '根据id集合获取基础分类列表', '', 'merchant:category:list:ids', '', 'A', 1, 1, 0, 4, '2022-08-04 09:43:48', '2022-08-04 09:43:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (291, 181, '更改基础分类状态', '', 'merchant:category:update:status', '', 'A', 1, 1, 0, 4, '2022-08-04 09:44:15', '2022-08-04 09:44:15'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (292, 179, '获取城市tree结构的列表', '', 'merchant:city:list:tree', '', 'A', 1, 1, 0, 4, '2022-08-04 14:40:50', '2022-08-16 15:47:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (293, 182, '商品分页列表', '', 'merchant:product:page:list', '', 'A', 1, 1, 0, 4, '2022-08-09 17:56:46', '2022-08-09 17:56:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (294, 182, '新增商品', '', 'merchant:product:save', '', 'A', 1, 1, 0, 4, '2022-08-09 17:57:03', '2022-08-09 17:57:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (295, 182, '商品修改', '', 'merchant:product:update', '', 'A', 1, 1, 0, 4, '2022-08-09 17:57:18', '2022-08-09 17:57:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (296, 182, '商品详情', '', 'merchant:product:info', '', 'A', 1, 1, 0, 4, '2022-08-09 17:57:31', '2022-08-09 17:57:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (297, 182, '删除商品', '', 'merchant:product:delete', '', 'A', 1, 1, 0, 4, '2022-08-10 12:19:18', '2022-08-10 12:19:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (298, 182, '恢复回收站商品', '', 'merchant:product:restore', '', 'A', 1, 1, 0, 4, '2022-08-10 12:19:32', '2022-08-10 12:19:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (299, 182, '商品表头数量', '', 'merchant:product:tabs:headers', '', 'A', 1, 1, 0, 4, '2022-08-10 12:19:52', '2022-08-10 12:19:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (300, 182, '商品上架', '', 'merchant:product:up', '', 'A', 1, 1, 0, 4, '2022-08-10 12:20:05', '2022-08-10 12:20:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (301, 182, '商品下架', '', 'merchant:product:down', '', 'A', 1, 1, 0, 4, '2022-08-10 12:20:18', '2022-08-10 12:20:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (302, 182, '商品下架', '', 'merchant:product:down', '', 'A', 1, 1, 1, 4, '2022-08-10 12:20:19', '2022-08-10 12:20:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (303, 43, '商品分页列表', '', 'platform:product:page:list', '', 'A', 0, 1, 0, 3, '2022-08-10 12:21:00', '2022-08-10 12:21:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (304, 43, '商品表头数量', '', 'platform:product:tabs:headers', '', 'A', 0, 1, 0, 3, '2022-08-10 12:21:15', '2022-08-10 12:21:15'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (305, 43, '商品审核', '', 'platform:product:audit', '', 'A', 0, 1, 0, 3, '2022-08-10 12:21:28', '2022-08-10 12:21:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (306, 43, '商品详情', '', 'platform:product:info', '', 'A', 0, 1, 0, 3, '2022-08-10 12:21:41', '2022-08-10 12:21:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (307, 182, '快捷添加库存', '', 'merchant:product:quick:stock:add', '', 'A', 1, 1, 0, 4, '2022-08-11 15:15:18', '2022-08-11 15:15:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (308, 182, '商品免审编辑', '', 'merchant:product:review:free:edit', '', 'A', 1, 1, 0, 4, '2022-08-11 16:02:42', '2022-08-11 16:02:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (309, 172, '保障服务组合', '', '', '/product/guarantee/group', 'C', 1, 1, 0, 4, '2022-08-12 11:39:43', '2022-08-16 11:03:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (310, 309, '保障服务组合列表', '', 'merchant:product:guarantee:group:list', '', 'A', 1, 1, 0, 4, '2022-08-12 11:40:01', '2022-08-12 11:40:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (311, 309, '新增保障服务组合', '', 'merchant:product:guarantee:group:add', '', 'A', 1, 1, 0, 4, '2022-08-12 11:40:16', '2022-08-12 11:40:16'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (312, 309, '编辑保障服务组合', '', 'merchant:product:guarantee:group:edit', '', 'A', 1, 1, 0, 4, '2022-08-12 11:40:29', '2022-08-12 11:40:29'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (313, 309, '删除保障服务组合', '', 'merchant:product:guarantee:group:delete', '', 'A', 1, 1, 0, 4, '2022-08-12 11:40:42', '2022-08-12 11:40:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (314, 182, '商品提审', '', 'merchant:product:submit:audit', '', 'A', 1, 1, 0, 4, '2022-08-16 11:28:52', '2022-08-16 11:28:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (315, 182, '商品提审', '', 'merchant:product:submit:audit', '', 'A', 1, 1, 1, 4, '2022-08-16 11:28:52', '2022-08-16 11:28:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (316, 179, '获取城市区域tree结构的列表', '', 'merchant:city:region:list:tree', '', 'A', 1, 1, 0, 4, '2022-08-16 15:47:53', '2022-08-16 15:47:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (317, 43, '商品编辑', '', 'platform:product:update', '', 'A', 0, 1, 0, 3, '2022-08-17 16:52:07', '2022-08-17 16:52:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (318, 43, '强制下架商品', '', 'platform:product:force:down', '', 'A', 0, 1, 0, 3, '2022-08-17 16:52:46', '2022-08-17 16:52:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (319, 195, '优惠券分页列表', '', 'merchant:coupon:page:list', '', 'A', 1, 1, 0, 4, '2022-08-18 11:52:36', '2022-08-18 11:52:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (320, 195, '新增优惠券', '', 'merchant:coupon:save', '', 'A', 1, 1, 0, 4, '2022-08-18 11:52:51', '2022-08-18 11:52:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (321, 195, '修改优惠券状态', '', 'merchant:coupon:update:status', '', 'A', 1, 1, 0, 4, '2022-08-18 11:53:06', '2022-08-18 11:53:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (322, 195, '优惠券详情', '', 'merchant:coupon:info', '', 'A', 1, 1, 0, 4, '2022-08-18 11:53:18', '2022-08-18 11:53:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (323, 195, '删除优惠券', '', 'merchant:coupon:delete', '', 'A', 1, 1, 0, 4, '2022-08-18 11:53:39', '2022-08-18 11:53:39'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (324, 195, '商品可用优惠券列表', '', 'merchant:coupon:product:usable:list', '', 'A', 1, 1, 0, 4, '2022-08-18 11:53:56', '2022-08-18 11:53:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (325, 195, '商品券关联商品编辑', '', 'merchant:coupon:product:join:edit', '', 'A', 1, 1, 0, 4, '2022-08-18 15:03:12', '2022-08-18 15:03:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (326, 192, '商户端商户结算信息', '', 'merchant:settlement:info', '', 'A', 1, 1, 0, 4, '2022-08-22 14:38:20', '2022-08-22 14:38:20'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (327, 192, '商户端商户结算信息编辑', '', 'merchant:settlement:info:edit', '', 'A', 1, 1, 0, 4, '2022-08-22 14:38:53', '2022-08-22 14:38:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (328, 36, '修改商户手机号', '', 'platform:merchant:update:phone', '', 'A', 0, 1, 0, 3, '2022-08-22 15:55:02', '2022-08-22 15:55:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (329, 0, '一号通', 's-promotion', '', '/onePass', 'M', 9989, 1, 0, 3, '2022-08-23 16:35:32', '2022-11-10 14:41:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (330, 343, '获取用户验证码', '', 'platform:one:pass:send:code', '', 'A', 0, 1, 0, 3, '2022-08-23 16:36:33', '2022-08-25 15:21:20'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (331, 343, '账号注册', '', 'platform:one:pass:register', '', 'A', 0, 1, 0, 3, '2022-08-23 16:36:50', '2022-08-25 15:21:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (332, 343, '一号通用户登录', '', 'platform:one:pass:login', '', 'A', 0, 1, 0, 3, '2022-08-23 16:37:04', '2022-08-25 15:21:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (333, 343, '是否已经登录', '', 'platform:one:pass:is:login', '', 'A', 0, 1, 0, 3, '2022-08-23 16:37:18', '2022-08-25 15:21:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (334, 343, '一号通用户信息', '', 'platform:one:pass:info', '', 'A', 0, 1, 0, 3, '2022-08-23 16:37:30', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (335, 343, '用户注销', '', 'platform:one:pass:logout', '', 'A', 0, 1, 0, 3, '2022-08-23 16:37:44', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (336, 343, '修改密码', '', 'platform:one:pass:update:password', '', 'A', 0, 1, 0, 3, '2022-08-23 16:38:05', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (337, 343, '修改手机号——验证账号密码', '', 'platform:one:pass:update:phone:validator', '', 'A', 0, 1, 0, 3, '2022-08-23 16:38:22', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (338, 343, '修改手机号', '', 'platform:one:pass:update:phone', '', 'A', 0, 1, 0, 3, '2022-08-23 16:38:36', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (339, 343, '套餐列表', '', 'platform:one:pass:meal:list', '', 'A', 0, 1, 0, 3, '2022-08-23 16:38:49', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (340, 343, '套餐购买', '', 'platform:one:pass:meal:code', '', 'A', 0, 1, 0, 3, '2022-08-23 16:39:05', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (341, 343, '服务开通', '', 'platform:one:pass:service:open', '', 'A', 0, 1, 0, 3, '2022-08-23 16:39:22', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (342, 343, '用量记录', '', 'platform:one:pass:user:record', '', 'A', 0, 1, 0, 3, '2022-08-23 16:39:37', '2022-08-25 15:21:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (343, 329, '一号通', 'lightning', '', '/onePass/index', 'C', 1, 1, 0, 3, '2022-08-24 10:42:12', '2023-02-02 15:49:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (344, 329, '一号通短信', 'light-rain', '', '/', 'C', 0, 0, 0, 3, '2022-08-25 15:22:37', '2023-02-02 15:50:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (345, 344, '修改签名', '', 'platform:one:pass:sms:modify:sign', '', 'A', 0, 1, 0, 3, '2022-08-25 15:22:58', '2022-08-25 15:22:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (346, 344, '短信模板', '', 'platform:one:pass:sms:temps', '', 'A', 0, 1, 0, 3, '2022-08-25 15:23:11', '2022-08-25 15:23:11'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (347, 344, '申请短信模板', '', 'platform:one:pass:sms:temp:apply', '', 'A', 0, 1, 0, 3, '2022-08-25 15:23:26', '2022-08-25 15:23:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (348, 33, '系统通知列表', '', 'platform:system:notification:list', '', 'A', 0, 1, 0, 3, '2022-08-25 15:25:53', '2022-08-25 15:25:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (349, 33, '公众号模板开关', '', 'platform:system:notification:wechat:switch', '', 'A', 0, 1, 0, 3, '2022-08-25 15:26:09', '2022-08-25 15:26:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (350, 33, '小程序订阅模板开关', '', 'platform:system:notification:routine:switch', '', 'A', 0, 1, 0, 3, '2022-08-25 15:26:21', '2022-08-25 15:26:21'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (351, 33, '发送短信开关', '', 'platform:system:notification:sms:switch', '', 'A', 0, 1, 0, 3, '2022-08-25 15:26:34', '2022-08-25 15:26:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (352, 33, '通知详情', '', 'platform:system:notification:detail', '', 'A', 0, 1, 0, 3, '2022-08-25 15:26:46', '2022-08-25 15:26:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (353, 33, '修改通知', '', 'platform:system:notification:update', '', 'A', 0, 1, 0, 3, '2022-08-25 15:26:58', '2022-08-25 15:26:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (354, 60, '敏感操作日志分页列表', '', 'platform:log:sensitive:list', '', 'A', 0, 1, 0, 3, '2022-08-26 16:28:36', '2022-08-26 16:28:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (355, 198, '敏感操作日志分页列表', '', 'merchant:log:sensitive:list', '', 'A', 1, 1, 0, 4, '2022-08-26 16:29:22', '2022-08-26 16:29:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (356, 55, '用户标签分页列表', '', 'platform:user:tag:list', '', 'A', 0, 1, 0, 3, '2022-09-01 15:51:49', '2022-09-01 15:51:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (357, 55, '新增用户标签', '', 'platform:user:tag:save', '', 'A', 0, 1, 0, 3, '2022-09-01 15:52:07', '2022-09-01 15:52:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (358, 55, '删除用户标签', '', 'platform:user:tag:delete', '', 'A', 0, 1, 0, 3, '2022-09-01 15:52:19', '2022-09-01 15:52:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (359, 55, '修改用户标签', '', 'platform:user:tag:update', '', 'A', 0, 1, 0, 3, '2022-09-01 15:52:30', '2022-09-01 15:52:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (360, 55, '用户标签全部列表', '', 'platform:user:tag:all:list', '', 'A', 0, 1, 0, 3, '2022-09-01 15:52:45', '2022-09-01 15:52:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (361, 48, '平台端用户分页列表', '', 'platform:user:page:list', '', 'A', 0, 1, 0, 3, '2022-09-01 15:53:15', '2022-09-01 15:53:15'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (362, 48, '修改用户信息', '', 'platform:user:update', '', 'A', 0, 1, 0, 3, '2022-09-01 15:53:28', '2022-09-01 15:53:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (363, 48, '用户分配标签', '', 'platform:user:tag', '', 'A', 0, 1, 0, 3, '2022-09-01 15:53:42', '2022-09-01 15:53:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (364, 4, '用户等级', 'cherry', '', '/user/level', 'C', 0, 1, 0, 3, '2022-09-03 15:41:11', '2023-02-02 15:42:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (365, 364, '系统用户等级分页列表', '', 'platform:system:user:level:list', '', 'A', 0, 1, 0, 3, '2022-09-03 15:41:28', '2022-09-03 15:41:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (366, 364, '新增系统用户等级', '', 'platform:system:user:level:save', '', 'A', 0, 1, 0, 3, '2022-09-03 15:41:41', '2022-09-03 15:41:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (367, 364, '删除系统用户等级', '', 'platform:system:user:level:delete', '', 'A', 0, 1, 0, 3, '2022-09-03 15:41:54', '2022-09-03 15:41:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (368, 364, '更新系统用户等级', '', 'platform:system:user:level:update', '', 'A', 0, 1, 0, 3, '2022-09-03 15:42:06', '2022-09-03 15:42:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (369, 364, '使用/禁用系统用户等级', '', 'platform:system:user:level:use', '', 'A', 0, 1, 0, 3, '2022-09-03 15:42:21', '2022-09-03 15:42:21'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (370, 75, '获取积分配置', '', 'platform:integral:get:config', '', 'A', 0, 1, 0, 3, '2022-09-06 15:11:45', '2022-09-06 15:11:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (371, 75, '编辑积分配置', '', 'platform:integral:update:config', '', 'A', 0, 1, 0, 3, '2022-09-06 15:12:02', '2022-09-06 15:12:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (372, 73, '签到', 'goblet-square', '/', '/marketing/sign', 'M', 1, 1, 0, 3, '2022-09-06 15:19:11', '2023-02-02 15:43:37'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (373, 374, '获取签到配置', '', 'platform:sign:get:config', '', 'A', 0, 1, 0, 3, '2022-09-06 15:19:46', '2022-09-06 15:20:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (374, 372, '签到配置', '', '/', '/marketing/sign/config', 'C', 0, 1, 0, 3, '2022-09-06 15:20:16', '2022-09-06 16:21:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (375, 374, '新增连续签到配置', '', 'platform:sign:add:config', '', 'A', 0, 1, 0, 3, '2022-09-06 15:20:46', '2022-09-06 15:20:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (376, 374, '删除连续签到配置', '', 'platform:sign:delete:config', '', 'A', 0, 1, 0, 3, '2022-09-06 15:20:59', '2022-09-06 15:20:59'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (377, 374, '编辑基础签到配置', '', 'platform:sign:edit:base:config', '', 'A', 0, 1, 0, 3, '2022-09-06 15:21:11', '2022-09-06 15:21:11'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (378, 374, '编辑连续签到配置', '', 'platform:sign:edit:award:config', '', 'A', 0, 1, 0, 3, '2022-09-06 15:21:23', '2022-09-06 15:21:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (379, 372, '签到记录', '', '', '/marketing/sign/record', 'C', 0, 1, 0, 3, '2022-09-06 15:21:48', '2022-09-06 16:22:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (380, 379, '用户签到记录分页列表', '', 'platform:sign:user:record:list', '', 'A', 0, 1, 0, 3, '2022-09-06 15:22:09', '2022-09-06 15:22:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (381, 61, '用户注册协议 保存', '', 'platform:system:agreement:user:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:01:52', '2022-09-14 11:02:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (382, 61, '用户注册协议 详情', '', 'platform:system:agreement:user:info', '', 'A', 0, 1, 0, 3, '2022-09-14 11:03:33', '2022-09-14 11:03:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (383, 61, '商户入驻协议 保存', '', 'platform:system:agreement:merincomming:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:04:07', '2022-09-14 11:04:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (384, 61, '商户入驻协议 详情', '', 'platform:system:agreement:merincomming:info', '', 'A', 0, 1, 0, 3, '2022-09-14 11:04:31', '2022-09-14 11:04:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (385, 61, '用户隐私协议 保存', '', 'platform:system:agreement:userprivacy:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:04:53', '2022-09-14 11:04:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (386, 61, '用户隐私协议 详情', '', 'platform:system:agreement:userprivacy:info', '', 'A', 0, 1, 0, 3, '2022-09-14 11:05:15', '2022-09-14 11:05:15'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (387, 61, '用户注销协议 保存', '', 'platform:system:agreement:useraccountcancel:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:05:39', '2022-09-14 11:05:39'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (388, 61, '用户注销协议 详情', '', 'platform:system:agreement:useraccountcancel:info', 'platform:system:agreement:useraccountcancel:info', 'A', 0, 1, 0, 3, '2022-09-14 11:06:11', '2022-09-14 11:06:11'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (389, 61, '用户注销声明 保存', '', 'platform:system:agreement:useraccountcancelnotice:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:06:35', '2022-09-14 11:06:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (390, 61, '用户注销声明 详情', '', 'platform:system:agreement:useraccountcancelnotice:info', '', 'A', 0, 1, 0, 3, '2022-09-14 11:06:54', '2022-09-14 11:06:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (391, 61, '关于我们协议 保存', '', 'platform:system:agreement:aboutus:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:07:19', '2022-09-14 11:07:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (392, 61, '关于我们协议 详情', '', 'platform:system:agreement:aboutus:info', '', 'A', 0, 1, 0, 3, '2022-09-14 11:07:36', '2022-09-14 11:07:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (393, 61, '平台资质证明 保存', '', 'platform:system:agreement:intelligent:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:07:55', '2022-09-14 11:07:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (394, 61, '平台资质证明 详情', '', 'platform:system:agreement:intelligent:info', '', 'A', 0, 1, 0, 3, '2022-09-14 11:08:12', '2022-09-14 11:08:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (395, 61, '平台规则 保存', '', 'platform:system:agreement:platfromrule:save', '', 'A', 0, 1, 0, 3, '2022-09-14 11:08:32', '2022-09-14 11:08:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (396, 61, '平台规则 详情', '', 'platform:system:agreement:platfromrule:info', '', 'A', 0, 1, 0, 3, '2022-09-14 11:08:50', '2022-09-14 11:08:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (397, 10, '组合数据列表', '', 'platform:system:group:list', '', 'A', 0, 1, 0, 3, '2022-09-14 18:11:06', '2022-09-14 18:11:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (398, 0, '应用', 's-goods', '', '/application', 'M', 0, 1, 0, 3, '2022-09-15 16:39:17', '2022-11-10 14:46:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (399, 398, '公众号', 'soccer', '', '/application/publicAccount', 'M', 0, 1, 0, 3, '2022-09-15 16:41:46', '2023-02-02 15:50:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (400, 399, '自动回复', '', '', '/application/publicAccount/wxReply', 'M', 0, 1, 0, 3, '2022-09-15 16:42:39', '2022-09-17 14:22:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (401, 400, '微信关注回复', '', '', '/application/publicAccount/wxReply/follow', 'C', 0, 1, 0, 3, '2022-09-15 16:44:00', '2022-09-15 16:44:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (402, 48, '操作用户积分', '', 'platform:user:operate:integer', '', 'A', 0, 1, 0, 3, '2022-09-22 19:28:08', '2022-09-22 19:28:08'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (403, 48, '操作用户余额', '', 'platform:user:operate:balance', '', 'A', 0, 1, 0, 3, '2022-09-22 19:28:25', '2022-09-22 19:28:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (404, 95, '文章开关', '', 'platform:article:switch', '', 'A', 0, 1, 0, 3, '2022-09-27 11:59:20', '2022-09-27 11:59:20'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (405, 94, '文章分类列表', '', 'platform:article:category:list', '', 'A', 0, 1, 0, 3, '2022-09-27 11:59:43', '2022-09-27 11:59:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (406, 186, '商户端订单分页列表', '', 'merchant:order:page:list', '', 'A', 1, 1, 0, 4, '2022-10-08 14:28:23', '2022-10-08 14:28:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (407, 186, '获取订单各状态数量', '', 'merchant:order:status:num', '', 'A', 1, 1, 0, 4, '2022-10-08 14:28:37', '2022-10-08 14:28:37'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (408, 186, '商户删除订单', '', 'merchant:order:delete', '', 'A', 1, 1, 0, 4, '2022-10-08 14:28:53', '2022-10-08 14:28:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (409, 186, '商户备注订单', '', 'merchant:order:mark', '', 'A', 1, 1, 0, 4, '2022-10-08 14:29:06', '2022-10-08 14:29:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (410, 186, '订单详情', '', 'merchant:order:info', '', 'A', 1, 1, 0, 4, '2022-10-08 14:29:21', '2022-10-08 14:29:21'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (411, 186, '订单发货', '', 'merchant:order:send', '', 'A', 1, 1, 0, 4, '2022-10-08 14:29:34', '2022-10-08 14:29:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (412, 187, '商户端退款订单分页列表', '', 'merchant:refund:order:page:list', '', 'A', 1, 1, 0, 4, '2022-10-09 17:02:17', '2022-10-09 17:02:17'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (413, 187, '商户端获取退款订单各状态数量', '', 'merchant:refund:order:status:num', '', 'A', 1, 1, 0, 4, '2022-10-09 17:02:32', '2022-10-09 17:02:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (414, 187, '商户备注退款订单', '', 'merchant:refund:order:mark', '', 'A', 1, 1, 0, 4, '2022-10-09 17:02:49', '2022-10-09 17:02:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (415, 187, '订单拒绝退款', '', 'merchant:refund:order:refund:refuse', '', 'A', 1, 1, 0, 4, '2022-10-09 17:03:04', '2022-10-09 17:03:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (416, 187, '订单退款', '', 'merchant:refund:order:refund', '', 'A', 1, 1, 0, 4, '2022-10-09 17:03:30', '2022-10-09 17:03:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (417, 435, '待审核列表', 'service', '', '/videoChannel/draftList', 'C', 0, 1, 0, 3, '2022-10-09 17:38:33', '2023-02-02 15:51:14'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (418, 417, '交易组件列表', '', 'platform:pay:component:cat:list', '', 'A', 0, 1, 1, 3, '2022-10-09 17:45:57', '2022-10-09 17:50:13'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (419, 417, '新增草稿商品', '', 'platform:pay:component:product:draft:add', '', 'A', 0, 1, 1, 3, '2022-10-09 17:48:44', '2022-10-11 11:18:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (420, 417, '交易组件删除商品', '', 'platform:pay:component:product:delete', '', 'A', 0, 1, 1, 3, '2022-10-09 17:49:55', '2022-10-09 17:49:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (421, 417, '更新草稿商品', '', 'platform:pay:component:product:draft:update', '', 'A', 0, 1, 1, 3, '2022-10-09 17:50:53', '2022-10-11 11:20:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (422, 417, '交易组件 上架', '', 'platform:pay:component:product:listing', '', 'A', 0, 1, 1, 3, '2022-10-09 17:51:34', '2022-10-09 17:51:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (423, 417, '交易组件下架商品', '', 'platform:pay:component:product:delisting', '', 'A', 0, 1, 1, 3, '2022-10-09 17:52:03', '2022-10-09 17:52:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (424, 417, '交易组件商品列表', '', 'platform:pay:component:product:list', '', 'A', 0, 1, 1, 3, '2022-10-09 17:52:36', '2022-10-09 17:52:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (425, 417, '草稿商品列表', '', 'platform:pay:component:product:draft:list', '', 'A', 0, 1, 0, 3, '2022-10-09 17:53:22', '2022-10-11 11:22:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (426, 417, '草稿详情', '', 'platform:pay:component:product:draft:info', '', 'A', 0, 1, 0, 3, '2022-10-09 17:53:55', '2022-10-11 11:21:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (427, 417, '交易组件过审商品详情', '', 'platform:pay:component:product:info', '', 'A', 0, 1, 1, 3, '2022-10-09 17:54:35', '2022-10-09 17:54:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (428, 435, '申请接入', 'mobile-phone', '', '/videoChannel/apply', 'C', 0, 1, 0, 3, '2022-10-09 17:55:49', '2023-02-02 15:51:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (429, 428, '接入申请', '', 'platform:pay:component:shop:register', '', 'A', 0, 1, 0, 3, '2022-10-09 17:57:15', '2022-10-09 17:57:15'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (430, 428, '接入状态', '', 'platform:pay:component:shop:register:check', '', 'A', 0, 1, 0, 3, '2022-10-09 17:57:38', '2022-10-09 17:57:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (431, 428, '完成接入', '', 'platform:pay:component:shop:register:finish', '', 'A', 0, 1, 0, 3, '2022-10-09 17:58:01', '2022-10-09 17:58:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (432, 428, '场景接入申请', '', 'platform:pay:component:shop:register:scene', '', 'A', 0, 1, 0, 3, '2022-10-09 17:58:30', '2022-10-09 17:58:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (433, 90, '分销配置信息获取', '', 'platform:retail:store:config:get', '', 'A', 0, 1, 0, 3, '2022-10-10 11:22:47', '2022-10-10 11:22:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (434, 90, '分销配置信息保存', '', 'platform:retail:store:config:save', '', 'A', 0, 1, 0, 3, '2022-10-10 11:23:02', '2022-10-10 11:23:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (435, 0, '视频号', 'video-camera', '', '/videoChannel', 'M', 0, 1, 0, 3, '2022-10-11 10:10:26', '2022-10-11 19:57:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (436, 435, '商品列表', 'bicycle', '', '/videoChannel/list', 'C', 0, 1, 0, 3, '2022-10-11 10:15:24', '2023-02-02 15:51:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (437, 435, '接入前必须', 'ship', '', '', 'M', 0, 0, 0, 3, '2022-10-11 10:48:44', '2023-02-02 15:52:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (438, 417, '获取类目详情', '', 'platform:pay:component:shop:cat:get', '', 'A', 0, 1, 0, 3, '2022-10-11 10:49:17', '2022-10-15 11:46:16'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (439, 437, '上传图片 到微信自定义组件换链接', '', 'platform:pay:component:shop:img:upload', '', 'A', 0, 1, 0, 3, '2022-10-11 10:49:49', '2022-10-11 10:49:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (440, 437, '上传品牌信息', '', 'platform:pay:component:shop:brand:audit', '', 'A', 0, 1, 0, 3, '2022-10-11 10:50:08', '2022-10-11 10:50:08'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (441, 437, '上传类目资质', '', 'platform:pay:component:shop:category:audit', '', 'A', 0, 1, 0, 3, '2022-10-11 10:50:28', '2022-10-11 10:50:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (442, 437, '查询审核结果', '', 'platform:pay:component:shop:audit:result', '', 'A', 0, 1, 0, 3, '2022-10-11 10:50:51', '2022-10-11 10:50:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (443, 437, '获取小程序提交过往的入驻资质信息', '', 'platform:pay:component:certificate', '', 'A', 0, 1, 0, 3, '2022-10-11 10:51:12', '2022-10-11 10:51:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (444, 437, '品牌列表 分页', '', 'platform:pay:component:shop:brand:list', '', 'A', 0, 1, 1, 3, '2022-10-11 10:52:03', '2022-10-11 10:52:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (445, 437, '品牌列表 不分页', '', 'platform:pay:component:shop:brand:usable:list', '', 'A', 0, 1, 1, 3, '2022-10-11 10:52:25', '2022-10-11 10:52:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (446, 417, '新增草稿', '', 'platform:pay:component:product:draft:add', '', 'A', 0, 1, 0, 3, '2022-10-11 11:54:19', '2022-10-11 11:54:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (447, 417, '更新草稿', '', 'platform:pay:component:product:draft:update', '', 'A', 0, 1, 0, 3, '2022-10-11 11:54:49', '2022-10-11 11:54:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (448, 417, '删除草稿商品', '', 'platform:pay:component:product:draft:delete', '', 'A', 0, 1, 0, 3, '2022-10-11 16:34:45', '2022-10-11 16:34:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (449, 435, '商家操作', '', '', '', 'M', 0, 1, 1, 3, '2022-10-11 20:13:15', '2022-10-11 20:13:15'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (450, 449, '获取类目列表', '', 'merchant:pay:component:cat:list', '', 'A', 0, 1, 1, 3, '2022-10-11 20:13:41', '2022-10-11 20:13:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (451, 449, '添加草稿商品', '', 'merchant:pay:component:product:draft:add', '', 'A', 0, 1, 1, 3, '2022-10-11 20:16:25', '2022-10-11 20:16:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (452, 449, '编辑草稿商品', '', 'merchant:pay:component:product:draft:update', '', 'A', 0, 1, 1, 3, '2022-10-11 20:16:58', '2022-10-11 20:16:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (453, 449, '删除草稿商品', '', 'merchant:pay:component:product:draft:delete', '', 'A', 0, 1, 1, 3, '2022-10-11 20:17:20', '2022-10-11 20:17:20'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (454, 0, '视频号', 'video-camera', '', '/videoChannel', 'M', 1, 1, 0, 4, '2022-10-11 20:20:23', '2022-10-12 09:54:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (455, 466, '添加草稿商品', '', 'merchant:pay:component:product:draft:add', '', 'A', 1, 1, 0, 4, '2022-10-11 20:20:53', '2022-10-11 20:54:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (456, 466, '编辑草稿商品', '', 'merchant:pay:component:product:draft:update', '', 'A', 1, 1, 0, 4, '2022-10-11 20:21:14', '2022-10-11 20:54:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (457, 466, '删除草稿商品', '', 'merchant:pay:component:product:draft:delete', '', 'A', 1, 1, 0, 4, '2022-10-11 20:21:34', '2022-10-11 20:54:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (458, 466, '商家审核草稿商品', '', 'merchant:pay:component:product:draft:review', '', 'A', 1, 1, 0, 4, '2022-10-11 20:22:06', '2022-10-11 20:55:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (459, 466, '草稿商品列表(分页)', '', 'merchant:pay:component:product:draft:list', '', 'A', 1, 1, 0, 4, '2022-10-11 20:22:39', '2022-10-11 20:55:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (460, 466, '草稿商品详情', '', 'merchant:pay:component:product:draft:info', '', 'A', 1, 1, 0, 4, '2022-10-11 20:23:02', '2022-10-11 20:55:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (461, 466, '获取类目详情', '', 'merchant:pay:component:shop:cat:get', '', 'A', 1, 1, 0, 4, '2022-10-11 20:23:26', '2022-10-11 20:55:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (462, 466, '上传图片 到微信自定义组件换链接', '', 'merchant:pay:component:shop:img:upload', '', 'A', 1, 1, 0, 4, '2022-10-11 20:23:45', '2022-10-11 20:55:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (463, 466, '品牌列表 分页', '', 'merchant:pay:component:shop:brand:list', '', 'A', 1, 1, 0, 4, '2022-10-11 20:24:09', '2022-10-11 20:55:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (464, 466, '品牌列表 不分页', '', 'merchant:pay:component:shop:brand:usable:list', '', 'A', 1, 1, 0, 4, '2022-10-11 20:24:30', '2022-10-11 20:55:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (465, 417, '审核草稿商品-平台角色操作', '', 'platform:pay:component:product:draft:review', '', 'A', 0, 1, 0, 3, '2022-10-11 20:26:26', '2022-10-11 20:26:26'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (466, 454, '草稿商品', '', '', '/videoChannel/draftList', 'C', 1, 1, 0, 4, '2022-10-11 20:54:07', '2022-10-11 20:54:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (467, 466, '获取类目列表', '', 'merchant:pay:component:cat:list', '', 'A', 1, 1, 0, 4, '2022-10-11 21:01:51', '2022-10-11 21:01:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (468, 187, '商户端退款订单详情', '', 'merchant:refund:order:detail', '', 'A', 1, 1, 0, 4, '2022-10-12 12:06:21', '2022-10-12 12:06:21'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (469, 45, '平台端退款订单分页列表', '', 'platform:refund:order:page:list', '', 'A', 0, 1, 0, 3, '2022-10-12 12:29:35', '2022-10-12 12:29:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (470, 45, '平台端获取退款订单各状态数量', '', 'platform:refund:order:status:num', '', 'A', 0, 1, 0, 3, '2022-10-12 12:29:50', '2022-10-12 12:29:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (471, 45, '平台端退款订单详情', '', 'platform:refund:order:detail', '', 'A', 0, 1, 0, 3, '2022-10-12 12:30:08', '2022-10-12 12:30:08'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (472, 45, '平台备注退款订单', '', 'platform:refund:order:mark', '', 'A', 0, 1, 0, 3, '2022-10-12 12:30:24', '2022-10-12 12:30:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (473, 44, '平台端订单分页列表', '', 'platform:order:page:list', '', 'A', 0, 1, 0, 3, '2022-10-12 16:04:13', '2022-10-12 16:04:13'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (474, 44, '平台端获取订单各状态数量', '', 'platform:order:status:num', '', 'A', 0, 1, 0, 3, '2022-10-12 16:04:38', '2022-10-12 16:04:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (475, 44, '平台端订单详情', '', 'platform:order:info', '', 'A', 0, 1, 0, 3, '2022-10-12 16:04:52', '2022-10-12 16:04:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (476, 186, '订单物流详情', '', 'merchant:order:logistics:info', '', 'A', 1, 1, 0, 4, '2022-10-12 17:08:44', '2022-10-12 17:08:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (477, 44, '平台端订单物流详情', '', 'platform:order:logistics:info', '', 'A', 0, 1, 0, 3, '2022-10-12 17:09:56', '2022-10-12 17:09:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (478, 454, '过审商品', '', '', '/videoChannel/productList', 'M', 1, 1, 0, 4, '2022-10-12 18:15:08', '2022-10-13 19:17:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (479, 478, '商户删除商品', '', 'merchant:pay:component:product:delete', '', 'A', 1, 1, 0, 4, '2022-10-12 18:15:34', '2022-10-12 18:16:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (480, 478, '商户上架商品', '', 'merchant:pay:component:product:puton', '', 'A', 1, 1, 0, 4, '2022-10-12 18:15:55', '2022-10-12 18:16:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (481, 478, '商户下架商品', '', 'merchant:pay:component:product:putdown', '', 'A', 1, 1, 0, 4, '2022-10-12 18:16:15', '2022-10-12 18:36:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (482, 478, '过审商品列表', '', 'merchant:pay:component:product:list', '', 'A', 1, 1, 0, 4, '2022-10-12 18:17:02', '2022-10-12 18:17:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (483, 478, '过审商品详情', '', 'merchant:pay:component:product:info', '', 'A', 1, 1, 0, 4, '2022-10-12 18:17:29', '2022-10-12 18:17:29'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (484, 182, '导入99Api商品', '', 'merchant:product:import:product', '', 'A', 1, 1, 0, 4, '2022-10-13 17:19:32', '2022-10-13 17:19:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (485, 182, '复制商品', '', 'merchant:product:copy:product', '', 'A', 1, 1, 0, 4, '2022-10-13 17:19:48', '2022-10-13 17:19:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (486, 182, '获取复制商品配置', '', 'admin:product:copy:config', '', 'A', 1, 1, 0, 4, '2022-10-13 18:01:43', '2022-10-13 18:01:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (487, 23, '页面首页', '', 'platform:page:layout:index', '', 'A', 0, 1, 0, 3, '2022-10-14 09:52:17', '2022-10-14 09:52:17'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (488, 23, '页面首页保存', '', 'platform:page:layout:save', '', 'A', 0, 1, 1, 3, '2022-10-14 09:53:25', '2022-10-14 09:53:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (489, 23, '页面首页banner保存', '', 'platform:page:layout:index:banner:save', '', 'A', 0, 1, 0, 3, '2022-10-14 09:53:45', '2022-10-14 09:53:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (490, 23, '页面首页menu保存', '', 'platform:page:layout:index:menu:save', '', 'A', 0, 1, 0, 3, '2022-10-14 09:54:05', '2022-10-14 09:54:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (491, 23, '页面首页新闻保存', '', 'platform:page:layout:index:news:save', '', 'A', 0, 1, 1, 3, '2022-10-14 09:54:33', '2022-10-14 09:54:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (492, 23, '页面用户中心banner保存', '', 'platform:page:layout:index:banner:save', '', 'A', 0, 1, 0, 3, '2022-10-14 09:54:58', '2022-10-14 09:54:58'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (493, 23, '页面用户中心导航保存', '', 'platform:page:layout:user:menu:save', '', 'A', 0, 1, 0, 3, '2022-10-14 09:55:19', '2022-10-14 09:55:37'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (494, 23, '页面用户中心商品table保存', '', 'platform:page:layout:index:table:save', '', 'A', 0, 1, 1, 3, '2022-10-14 09:56:01', '2022-10-14 09:56:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (495, 23, '获取分类页配置', '', 'platform:page:layout:category:config', '', 'A', 0, 1, 1, 3, '2022-10-14 09:56:22', '2022-10-14 09:56:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (496, 23, '分类页配置保存', '', 'platform:page:layout:category:config:save', '', 'A', 0, 1, 1, 3, '2022-10-14 09:56:45', '2022-10-14 09:56:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (497, 5, '充值订单分页列表', '', 'platform:recharge:order:list', '', 'A', 0, 1, 0, 3, '2022-10-14 11:42:00', '2022-10-14 11:42:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (498, 428, '品牌列表 分页', '', 'platform:pay:component:shop:brand:list', '', 'A', 0, 1, 1, 3, '2022-10-15 16:50:29', '2022-10-15 16:50:29'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (499, 435, '微信商品类目', 'truck', '', '/videoChannel/weChatcategory', 'M', 0, 1, 0, 3, '2022-10-17 15:50:04', '2023-02-02 15:51:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (500, 417, '品牌列表不分页', '', 'platform:pay:component:shop:brand:usable:list', '', 'A', 0, 1, 1, 3, '2022-10-17 16:24:56', '2022-10-17 16:24:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (501, 417, '品牌列表分页', '', 'platform:pay:component:shop:brand:list', '', 'A', 0, 1, 1, 3, '2022-10-17 16:25:29', '2022-10-17 16:25:29'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (502, 417, '获取类目列表', '', 'platform:pay:component:cat:list', '', 'A', 0, 1, 1, 3, '2022-10-17 16:28:54', '2022-10-17 16:28:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (503, 5, '结算管理', 'sugar', '', '/finance/closing', 'M', 0, 1, 0, 3, '2022-10-17 19:27:06', '2023-02-02 15:45:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (504, 503, '商户结算', '', '', '/finance/closing/merchantClosing', 'C', 0, 1, 0, 3, '2022-10-17 19:27:26', '2022-10-20 15:50:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (505, 503, '用户结算', '', '', '/finance/closing/userClosing', 'C', 0, 1, 0, 3, '2022-10-17 19:27:41', '2022-10-20 15:06:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (506, 505, '用户结算分页列表', '', 'platform:finance:user:closing:page:list', '', 'A', 0, 1, 0, 3, '2022-10-17 19:27:57', '2022-10-17 19:27:57'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (507, 505, '用户结算申请审核', '', 'platform:finance:user:closing:audit', '', 'A', 0, 1, 0, 3, '2022-10-17 19:28:12', '2022-10-17 19:28:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (508, 505, '用户结算到账凭证', '', 'platform:finance:user:closing:proof', '', 'A', 0, 1, 0, 3, '2022-10-17 19:28:25', '2022-10-17 19:28:25'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (509, 505, '用户结算备注', '', 'platform:finance:user:closing:remark', '', 'A', 0, 1, 0, 3, '2022-10-17 19:28:42', '2022-10-17 19:28:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (510, 53, '获取商户结算设置', '', 'platform:finance:merchant:closing:config', '', 'A', 0, 1, 0, 3, '2022-10-17 21:00:16', '2022-10-17 21:00:16'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (511, 53, '编辑商户结算设置', '', 'platform:finance:merchant:closing:config:edit', '', 'A', 0, 1, 0, 3, '2022-10-17 21:00:32', '2022-10-17 21:00:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (512, 504, '商户结算分页列表', '', 'platform:finance:merchant:closing:page:list', '', 'A', 0, 1, 0, 3, '2022-10-17 21:01:07', '2022-10-17 21:01:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (513, 504, '商户结算记录详情', '', 'platform:finance:merchant:closing:detail', '', 'A', 0, 1, 0, 3, '2022-10-17 21:01:23', '2022-10-17 21:01:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (514, 504, '商户结算申请审核', '', 'platform:finance:merchant:closing:audit', '', 'A', 0, 1, 0, 3, '2022-10-17 21:01:55', '2022-10-19 17:27:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (515, 504, '商户结算到账凭证', '', 'platform:finance:merchant:closing:proof', '', 'A', 0, 1, 0, 3, '2022-10-17 21:02:09', '2022-10-19 17:27:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (516, 504, '商户结算备注', '', 'platform:finance:merchant:closing:remark', '', 'A', 0, 1, 0, 3, '2022-10-17 21:02:23', '2022-10-19 17:27:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (517, 190, '获取结算申请基础信息', '', 'merchant:finance:closing:base:info', '', 'A', 1, 1, 0, 4, '2022-10-18 14:46:55', '2022-10-18 14:47:57'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (518, 190, '结算申请', '', 'merchant:finance:closing:apply', '', 'A', 1, 1, 0, 4, '2022-10-18 14:47:11', '2022-10-18 14:48:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (519, 190, '结算记录分页列表', '', 'merchant:finance:closing:page:list', '', 'A', 1, 1, 0, 4, '2022-10-18 14:47:23', '2022-10-18 14:48:13'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (520, 190, '结算记录详情', '', 'merchant:finance:closing:detail', '', 'A', 1, 1, 0, 4, '2022-10-18 14:47:41', '2022-10-18 14:48:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (521, 437, '获取类目列表 树形结构', '', 'platform:pay:component:cat:treelist', '', 'A', 0, 1, 0, 3, '2022-10-20 11:17:50', '2022-10-20 11:17:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (522, 437, '获取类目列表 分页 用于平台查看和审核类目', '', 'platform:pay:component:cat:list', '', 'A', 0, 1, 0, 3, '2022-10-20 11:18:14', '2022-10-20 11:18:14'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (523, 104, '日帐单管理分页列表', '', 'platform:finance:daily:statement:page:list', '', 'A', 0, 1, 0, 3, '2022-10-24 10:59:30', '2022-10-24 10:59:30'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (524, 104, '月帐单管理分页列表', '', 'platform:finance:month:statement:page:list', '', 'A', 0, 1, 0, 3, '2022-10-24 10:59:46', '2022-10-24 10:59:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (525, 189, '资金流水分页列表', '', 'merchant:finance:funds:flow', '', 'A', 1, 1, 0, 4, '2022-10-25 12:04:32', '2022-10-25 12:04:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (526, 51, '资金流水分页列表', '', 'platform:finance:funds:flow', '', 'A', 0, 1, 0, 3, '2022-10-25 12:05:27', '2022-10-25 12:05:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (527, 191, '日帐单管理分页列表', '', 'merchant:finance:daily:statement:page:list', '', 'A', 1, 1, 0, 4, '2022-10-25 12:06:13', '2022-10-25 12:06:13'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (528, 191, '月帐单管理分页列表', '', 'merchant:finance:month:statement:page:list', '', 'A', 1, 1, 0, 4, '2022-10-25 12:06:28', '2022-10-25 12:06:28'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (529, 188, '商户端用户分页列表', '', 'merchant:user:page:list', '', 'A', 1, 1, 0, 4, '2022-10-25 17:23:40', '2022-10-25 17:23:40'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (530, 46, '商品评论分页列表', '', 'platform:product:reply:list', '', 'A', 0, 1, 0, 3, '2022-10-26 10:14:23', '2022-10-26 10:14:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (531, 46, '删除评论', '', 'platform:product:reply:delete', '', 'A', 0, 1, 0, 3, '2022-10-26 10:14:38', '2022-10-26 10:14:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (532, 185, '商户端商品评论分页列表', '', 'merchant:product:reply:page:list', '', 'A', 1, 1, 0, 4, '2022-10-26 10:15:10', '2022-10-26 10:15:10'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (533, 185, '虚拟评论', '', 'merchant:product:reply:virtual', '', 'A', 1, 1, 0, 4, '2022-10-26 10:15:23', '2022-10-26 10:15:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (534, 185, '删除评论', '', 'merchant:product:reply:delete', '', 'A', 1, 1, 0, 4, '2022-10-26 10:15:35', '2022-10-26 10:15:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (535, 185, '回复评论', '', 'merchant:product:reply:comment', '', 'A', 1, 1, 0, 4, '2022-10-26 10:15:48', '2022-10-26 10:15:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (536, 196, '优惠券领取记录分页列表', '', 'merchant:coupon:user:page:list', '', 'A', 1, 1, 0, 4, '2022-10-26 10:39:44', '2022-10-26 10:39:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (537, 436, '过审商品列表', '', 'platform:pay:component:product:list', '', 'A', 0, 1, 0, 3, '2022-10-26 15:09:22', '2022-10-26 15:09:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (538, 186, '核销码核销订单', '', 'merchant:order:verification', '', 'A', 1, 1, 0, 4, '2022-10-26 15:38:53', '2022-10-26 15:38:53'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (539, 179, '查询全部物流公司', '', 'merchant:express:all', '', 'A', 1, 1, 0, 4, '2022-10-26 15:40:44', '2022-10-26 15:40:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (540, 179, '查询物流公司面单模板', '', 'merchant:express:template', '', 'A', 1, 1, 0, 4, '2022-10-26 15:40:56', '2022-10-26 15:40:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (541, 59, '分页显示快递公司列表', '', 'platform:express:list', '', 'A', 0, 1, 0, 3, '2022-10-26 15:41:59', '2022-10-26 15:41:59'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (542, 59, '编辑快递公司', '', 'platform:express:update', '', 'A', 0, 1, 0, 3, '2022-10-26 15:42:27', '2022-10-26 15:42:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (543, 59, '修改快递公司显示状态', '', 'platform:express:update:show', '', 'A', 0, 1, 0, 3, '2022-10-26 15:42:40', '2022-10-26 15:42:40'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (544, 59, '同步物流公司', '', 'platform:express:sync', '', 'A', 0, 1, 0, 3, '2022-10-26 15:42:52', '2022-10-26 15:42:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (545, 59, '快递公司详情', '', 'platform:express:info', '', 'A', 0, 1, 0, 3, '2022-10-26 15:43:04', '2022-10-26 15:43:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (546, 437, '品牌分页列表', '', 'platform:pay:component:shop:brand:list', '', 'A', 0, 1, 0, 3, '2022-10-31 12:02:59', '2022-10-31 12:02:59'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (547, 33, '小程序订阅消息同步', '', 'platform:wechat:routine:sync', '', 'A', 0, 1, 0, 3, '2022-11-01 19:33:42', '2022-11-01 19:33:42'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (548, 33, '公众号模板消息同步', '', 'platform:wechat:whcbqhn:sync', '', 'A', 0, 1, 0, 3, '2022-11-01 19:34:12', '2022-11-01 19:34:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (549, 44, '获取订单发货单列表', '', 'platform:order:invoice:list', '', 'A', 0, 1, 0, 3, '2022-11-01 22:04:52', '2022-11-01 22:04:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (550, 186, '获取订单发货单列表', '', 'merchant:order:invoice:list', '', 'A', 1, 1, 0, 4, '2022-11-01 22:05:48', '2022-11-01 22:05:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (551, 186, '订单细节详情列表(发货使用)', '', 'merchant:order:detail:list', '', 'A', 1, 1, 0, 4, '2022-11-02 15:05:33', '2022-11-02 15:05:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (552, 70, '获取公众号自定义菜单', '', 'platform:wechat:public:customize:menu:get', '', 'A', 0, 1, 0, 3, '2022-11-03 14:16:38', '2022-11-03 14:16:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (553, 70, '保存公众号自定义菜单', '', 'platform:wechat:public:customize:menu:save', '', 'A', 0, 1, 0, 3, '2022-11-03 14:16:54', '2022-11-03 14:16:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (554, 70, '删除公众号自定义菜单', '', 'platform:wechat:public:customize:menu:delete', '', 'A', 0, 1, 0, 3, '2022-11-03 14:17:07', '2022-11-03 14:17:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (555, 399, '获取微信公众号js配置', '', 'platform:wechat:public:js:config', '', 'A', 0, 1, 0, 3, '2022-11-03 14:17:31', '2022-11-03 14:17:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (556, 399, '微信开放平台上传素材', '', 'platform:wechat:open:media:upload', '', 'A', 0, 1, 0, 3, '2022-11-03 14:17:46', '2022-11-03 14:17:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (557, 0, '测试', '', '', '', 'M', 3, 1, 1, 3, '2022-11-03 14:45:04', '2022-11-03 14:45:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (558, 0, '测试', '', '', '', 'M', 0, 1, 1, 3, '2022-11-03 14:49:51', '2022-11-03 14:49:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (559, 400, '微信关键字回复分页列表', '', 'platform:wechat:public:keywords:reply:list', '', 'A', 0, 1, 0, 3, '2022-11-04 09:31:48', '2022-11-04 09:31:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (560, 400, '新增微信关键字回复', '', 'platform:wechat:public:keywords:reply:save', '', 'A', 0, 1, 0, 3, '2022-11-04 09:32:06', '2022-11-04 09:32:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (561, 400, '删除微信关键字回复', '', 'platform:wechat:public:keywords:reply:delete', '', 'A', 0, 1, 0, 3, '2022-11-04 09:32:19', '2022-11-04 09:32:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (562, 400, '修改微信关键字回复', '', 'platform:wechat:public:keywords:reply:update', '', 'A', 0, 1, 0, 3, '2022-11-04 09:32:36', '2022-11-04 09:32:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (563, 400, '修改微信关键字回复状态', '', 'platform:wechat:public:keywords:reply:status', '', 'A', 0, 1, 0, 3, '2022-11-04 09:32:51', '2022-11-04 09:32:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (564, 400, '微信关键字回复详情', '', 'platform:wechat:public:keywords:reply:info', '', 'A', 0, 1, 0, 3, '2022-11-04 09:33:05', '2022-11-04 09:33:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (565, 400, '根据关键字查询微信关键字回复', '', 'platform:wechat:public:keywords:reply:info:keywords', '', 'A', 0, 1, 0, 3, '2022-11-04 09:33:18', '2022-11-04 09:33:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (566, 91, '分销员列表', '', 'platform:retail:store:people:list', '', 'A', 0, 1, 0, 3, '2022-11-07 12:23:49', '2022-11-07 12:23:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (567, 91, '根据条件获取下级推广用户列表', '', 'platform:retail:store:sub:user:list', '', 'A', 0, 1, 0, 3, '2022-11-07 12:24:12', '2022-11-07 12:24:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (568, 89, '修改用户上级推广人', '', 'platform:retail:store:update:user:spread', '', 'A', 0, 1, 0, 3, '2022-11-07 12:24:36', '2022-11-07 12:24:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (569, 89, '清除用户上级推广人', '', 'platform:retail:store:clean:user:spread', '', 'A', 0, 1, 0, 3, '2022-11-07 12:24:50', '2022-11-07 12:24:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (570, 91, '根据条件获取推广订单列表', '', 'platform:retail:store:promotion:order:list', '', 'A', 0, 1, 0, 3, '2022-11-07 14:29:44', '2022-11-07 14:29:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (571, 76, '积分分页列表', '', 'platform:integral:page:list', '', 'A', 0, 1, 0, 3, '2022-11-09 14:20:00', '2022-11-09 14:20:00'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (572, 7, '定时任务管理', 'cloudy-and-sunny', '', '/maintain/schedule', 'C', 5, 1, 0, 3, '2022-11-22 11:38:50', '2023-02-02 15:48:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (573, 572, '定时任务', '', '', '/maintain/schedule/list', 'C', 0, 1, 0, 3, '2022-11-22 11:39:38', '2022-11-23 09:43:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (574, 572, '定时任务日志', '', '', '/maintain/schedule/logList', 'C', 0, 1, 0, 3, '2022-11-22 11:39:56', '2022-11-23 09:45:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (575, 572, '定时任务日志', '', '', '/', 'C', 0, 1, 1, 3, '2022-11-22 11:39:57', '2022-11-22 11:39:57'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (576, 574, '定时任务日志分页列表', '', 'platform:schedule:job:log:list', '', 'A', 0, 1, 0, 3, '2022-11-22 11:40:32', '2022-11-22 11:40:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (577, 573, '定时任务列表', '', 'platform:schedule:job:list', '', 'A', 0, 1, 0, 3, '2022-11-22 11:40:56', '2022-11-22 11:40:56'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (578, 573, '添加定时任务', '', 'platform:schedule:job:add', '', 'A', 0, 1, 0, 3, '2022-11-22 11:41:10', '2022-11-22 11:41:10'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (579, 573, '定时任务编辑', '', 'platform:schedule:job:update', '', 'A', 0, 1, 0, 3, '2022-11-22 11:41:27', '2022-11-22 11:41:27'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (580, 573, '暂停定时任务', '', 'platform:schedule:job:suspend', '', 'A', 0, 1, 0, 3, '2022-11-22 11:41:44', '2022-11-22 11:41:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (581, 573, '启动定时任务', '', 'platform:schedule:job:start', '', 'A', 0, 1, 0, 3, '2022-11-22 11:42:03', '2022-11-22 11:42:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (582, 573, '删除定时任务', '', 'platform:schedule:job:delete', '', 'A', 0, 1, 0, 3, '2022-11-22 11:42:16', '2022-11-22 11:42:16'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (583, 573, '立即执行定时任务(一次)', '', 'platform:schedule:job:trig', '', 'A', 0, 1, 0, 3, '2022-11-22 11:42:33', '2022-11-22 11:42:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (584, 1, '首页数据', '', 'platform:statistics:home:index', '', 'A', 0, 1, 0, 3, '2022-11-25 19:44:02', '2022-11-25 19:44:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (585, 1, '经营数据', '', 'platform:statistics:home:operating:data', '', 'A', 0, 1, 0, 3, '2022-11-25 19:44:22', '2022-11-25 19:44:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (586, 1, '用户渠道数据', '', 'platform:statistics:home:user:channel', '', 'A', 0, 1, 0, 3, '2022-11-25 19:44:41', '2022-11-25 19:44:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (587, 171, '首页数据', '', 'merchant:statistics:home:index', '', 'A', 1, 1, 0, 4, '2022-11-25 19:45:41', '2022-11-25 19:45:41'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (588, 171, '经营数据', '', 'merchant:statistics:home:operating:data', '', 'A', 1, 1, 0, 4, '2022-11-25 19:45:57', '2022-11-25 19:45:57'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (589, 171, '商品支付排行榜', '', 'merchant:statistics:home:product:pay:ranking', '', 'A', 1, 1, 0, 4, '2022-11-25 19:46:12', '2022-11-25 19:46:12'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (590, 171, '商品浏览量排行榜', '', 'merchant:statistics:home:product:pageview:ranking', '', 'A', 1, 1, 0, 4, '2022-11-25 19:46:29', '2022-11-25 19:46:29'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (591, 72, '微信小程序源码下载', '', 'platform:wechat:code:download', '', 'A', 0, 1, 0, 3, '2022-11-28 15:50:46', '2022-11-28 15:50:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (592, 48, '用户详情', '', 'platform:user:detail', '', 'A', 0, 1, 0, 3, '2022-11-30 09:29:03', '2022-11-30 09:29:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (593, 188, '用户详情', '', 'merchant:user:detail', '', 'A', 1, 1, 0, 4, '2022-11-30 09:29:54', '2022-11-30 09:29:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (594, 25, '获取版权信息', '', 'platform:copyright:get:info', '', 'A', 0, 1, 0, 3, '2022-11-30 15:02:50', '2022-11-30 15:02:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (595, 25, '编辑公司版权信息', '', 'platform:copyright:update:company:info', '', 'A', 0, 1, 0, 3, '2022-11-30 15:43:22', '2022-11-30 15:43:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (596, 179, '获取商户版权信息', '', 'merchant:copyright:get:company:info', '', 'A', 1, 1, 0, 4, '2022-11-30 21:07:06', '2022-11-30 21:07:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (597, 400, '关键字回复', '', '', '/application/publicAccount/wxReply/keyword', 'C', 0, 1, 0, 3, '2022-12-12 17:36:43', '2022-12-12 17:36:43'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (598, 73, '秒杀', 'cold-drink', '', '/marketing/seckill', 'M', 0, 1, 0, 3, '2022-12-19 11:10:20', '2023-02-02 15:44:10'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (599, 598, '秒杀配置', '', '', '/marketing/seckill/config', 'C', 0, 1, 0, 3, '2022-12-19 14:56:06', '2022-12-19 14:56:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (600, 598, '秒杀活动', '', '', '/marketing/seckill/seckillActivity', 'C', 0, 1, 0, 3, '2022-12-19 14:56:31', '2022-12-19 14:56:46'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (601, 598, '秒杀商品', '', '', '/marketing/seckill/list', 'C', 0, 1, 0, 3, '2022-12-19 14:57:38', '2022-12-22 16:57:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (602, 599, '新增秒杀时段', '', 'platform:seckill:time:interval:add', '', 'A', 0, 1, 0, 3, '2022-12-20 14:20:47', '2022-12-20 14:20:47'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (603, 599, '编辑秒杀时段', '', 'platform:seckill:time:interval:update', '', 'A', 0, 1, 0, 3, '2022-12-20 14:21:04', '2022-12-20 14:21:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (604, 599, '删除秒杀时段', '', 'platform:seckill:time:interval:delete', '', 'A', 0, 1, 0, 3, '2022-12-20 14:21:19', '2022-12-20 14:21:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (605, 599, '秒杀时段列表', '', 'platform:seckill:time:interval:list', '', 'A', 0, 1, 0, 3, '2022-12-20 14:21:34', '2022-12-20 14:21:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (606, 11, '可用分类商户列表', '', 'platform:merchant:use:category:list', '', 'A', 0, 1, 0, 3, '2022-12-21 15:31:20', '2022-12-21 15:31:20'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (607, 2, '商品搜索分页列表(活动)', '', 'platform:product:activity:search:page', '', 'A', 0, 1, 0, 3, '2022-12-21 15:31:45', '2022-12-21 15:31:45'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (608, 600, '新增秒杀活动', '', 'platform:seckill:activity:add', '', 'A', 0, 1, 0, 3, '2022-12-21 15:32:09', '2022-12-21 15:32:09'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (609, 600, '秒杀活动分页列表', '', 'platform:seckill:activity:page', '', 'A', 0, 1, 0, 3, '2022-12-21 17:27:03', '2022-12-21 17:27:03'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (610, 600, '秒杀活动详情', '', 'platform:seckill:activity:detail', '', 'A', 0, 1, 0, 3, '2022-12-21 17:27:19', '2022-12-21 17:27:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (611, 600, '编辑秒杀活动', '', 'platform:seckill:activity:update', '', 'A', 0, 1, 0, 3, '2022-12-21 18:09:52', '2022-12-21 18:09:52'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (612, 600, '删除秒杀活动', '', 'platform:seckill:activity:delete', '', 'A', 0, 1, 0, 3, '2022-12-21 18:10:07', '2022-12-21 18:10:07'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (613, 599, '秒杀时段开关', '', 'platform:seckill:time:interval:switch', '', 'A', 0, 1, 0, 3, '2022-12-22 09:43:01', '2022-12-22 09:43:01'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (614, 601, '秒杀商品列表', '', 'platform:seckill:product:list', '', 'A', 0, 1, 0, 3, '2022-12-22 16:58:05', '2022-12-22 16:58:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (615, 601, '秒杀商品设置活动价', '', 'platform:seckill:product:price', '', 'A', 0, 1, 0, 3, '2022-12-22 16:58:21', '2022-12-22 16:58:21'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (616, 601, '秒杀商品下架', '', 'platform:seckill:product:down', '', 'A', 0, 1, 0, 3, '2022-12-22 16:58:35', '2022-12-22 16:58:35'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (617, 601, '秒杀商品删除', '', 'platform:seckill:product:delete', '', 'A', 0, 1, 0, 3, '2022-12-22 16:58:49', '2022-12-22 16:58:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (618, 601, '平台秒杀商品添加', '', 'platform:seckill:product:add', '', 'A', 0, 1, 0, 3, '2022-12-23 17:22:55', '2022-12-23 17:22:55'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (619, 0, '营销', 'picture-outline-round', '', '/marketing', 'M', 1, 1, 0, 4, '2022-12-23 17:26:58', '2022-12-27 15:51:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (620, 619, '秒杀', '', '', '/marketing/seckill', 'C', 1, 1, 0, 4, '2022-12-23 17:27:27', '2022-12-27 10:30:36'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (621, 620, '秒杀活动', '', '', '/marketing/seckill/seckillActivity', 'C', 1, 1, 0, 4, '2022-12-23 17:27:44', '2022-12-27 10:30:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (622, 620, '秒杀商品', '', '', '/marketing/seckill/list', 'C', 1, 1, 0, 4, '2022-12-23 17:27:59', '2022-12-27 10:30:19'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (623, 621, '秒杀活动分页列表', '', 'merchant:seckill:activity:page', '', 'A', 1, 1, 0, 4, '2022-12-23 17:28:19', '2022-12-27 12:05:06'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (624, 621, '秒杀活动详情', '', 'merchant:seckill:activity:detail', '', 'A', 1, 1, 0, 4, '2022-12-23 17:28:33', '2022-12-23 17:28:33'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (625, 622, '秒杀商品列表', '', 'merchant:seckill:product:list', '', 'A', 1, 1, 0, 4, '2022-12-23 17:28:50', '2022-12-23 17:28:50'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (626, 622, '秒杀商品撤回审核', '', 'merchant:seckill:product:withdraw', '', 'A', 1, 1, 0, 4, '2022-12-23 17:29:04', '2022-12-23 17:29:04'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (627, 622, '秒杀商品设置活动价', '', 'merchant:seckill:product:price', '', 'A', 1, 1, 0, 4, '2022-12-23 17:29:24', '2022-12-23 17:29:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (628, 622, '秒杀商品上架', '', 'merchant:seckill:product:up', '', 'A', 1, 1, 0, 4, '2022-12-23 17:29:48', '2022-12-23 17:29:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (629, 622, '秒杀商品下架', '', 'merchant:seckill:product:down', '', 'A', 1, 1, 0, 4, '2022-12-23 17:30:02', '2022-12-23 17:30:02'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (630, 622, '秒杀商品删除', '', 'merchant:seckill:product:delete', '', 'A', 1, 1, 0, 4, '2022-12-23 17:30:18', '2022-12-23 17:30:18'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (631, 622, '秒杀商品添加', '', 'merchant:seckill:product:add', '', 'A', 1, 1, 0, 4, '2022-12-23 17:30:32', '2022-12-23 17:30:32'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (632, 600, '秒杀活动开关', '', 'platform:seckill:activity:switch', '', 'A', 0, 1, 0, 3, '2022-12-24 15:51:37', '2022-12-24 15:51:37'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (633, 172, '商品搜索分页列表(活动)', '', 'merchant:product:activity:search:page', '', 'A', 1, 1, 0, 4, '2022-12-27 12:10:38', '2022-12-27 12:10:38'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (634, 73, '氛围图', 'coffee-cup', '', '/marketing/atmosphere/list', 'M', 0, 1, 0, 3, '2022-12-28 11:46:07', '2023-02-02 15:44:22'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (635, 73, '活动边框', 'water-cup', '', '/marketing/border/list', 'M', 0, 1, 0, 3, '2022-12-28 12:09:56', '2023-02-02 15:44:34'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (636, 601, '秒杀商品审核', '', 'platform:seckill:product:audit', '', 'A', 0, 1, 0, 3, '2022-12-29 17:09:23', '2022-12-29 17:09:23'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (637, 43, '商品id集合列表', '', 'platform:product:list:ids', '', 'A', 0, 1, 0, 3, '2023-01-12 11:52:44', '2023-01-12 11:52:44'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (638, 0, '控制台', 'menu', '', '/dashboard', 'M', 99999, 0, 0, 3, '2023-01-15 17:37:14', '2023-02-02 09:52:48'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (639, 23, '页面底部导航', '', 'platform:page:layout:bottom:navigation', '', 'A', 0, 1, 0, 3, '2023-02-04 15:44:31', '2023-02-04 15:44:31'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (640, 23, '底部导航保存', '', 'platform:page:layout:bottom:navigation:save', '', 'A', 0, 1, 0, 3, '2023-02-04 15:44:49', '2023-02-04 15:44:49'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (641, 634, '分页列表(同边框)', '', 'platform:activitystyle:list', '', 'A', 0, 1, 0, 3, '2023-02-22 18:21:47', '2023-02-22 18:23:24'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (642, 634, '新增氛围图(同边框)', '', 'platform:activitystyle:save', 'platform:activitystyle:save', 'A', 0, 1, 0, 3, '2023-02-22 18:23:05', '2023-02-22 18:23:05'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (643, 634, '修改氛围图(同边框)', '', 'platform:activitystyle:edite', '', 'A', 0, 1, 0, 3, '2023-02-22 18:23:54', '2023-02-22 18:23:54'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (644, 634, '修改氛围图状态(同边框)', '', 'platform:activitystyle:updatestatus', '', 'A', 0, 1, 0, 3, '2023-02-22 18:25:33', '2023-02-22 18:25:51'); INSERT INTO `eb_system_menu` (`id`, `pid`, `name`, `icon`, `perms`, `component`, `menu_type`, `sort`, `is_show`, `is_delte`, `type`, `create_time`, `update_time`) VALUES (645, 634, '删除氛围图(同边框)', '', 'platform:activitystyle:delete\'', '', 'A', 0, 1, 0, 3, '2023-02-22 18:26:40', '2023-02-22 18:26:40'); COMMIT; -- ---------------------------- -- Table structure for eb_system_notification -- ---------------------------- DROP TABLE IF EXISTS `eb_system_notification`; CREATE TABLE `eb_system_notification` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT 'id', `mark` varchar(50) NOT NULL DEFAULT '' COMMENT '标识', `type` varchar(50) NOT NULL DEFAULT '' COMMENT '通知类型', `description` varchar(100) NOT NULL DEFAULT '' COMMENT '通知场景说明', `is_wechat` tinyint(2) NOT NULL DEFAULT '0' COMMENT '公众号模板消息(0:不存在,1:开启,2:关闭)', `wechat_id` int(11) NOT NULL DEFAULT '0' COMMENT '模板消息id', `is_routine` tinyint(2) NOT NULL DEFAULT '0' COMMENT '小程序订阅消息(0:不存在,1:开启,2:关闭)', `routine_id` int(11) NOT NULL DEFAULT '0' COMMENT '订阅消息id', `is_sms` tinyint(2) NOT NULL DEFAULT '0' COMMENT '发送短信(0:不存在,1:开启,2:关闭)', `sms_id` int(11) NOT NULL DEFAULT '0' COMMENT '短信id', `send_type` tinyint(2) NOT NULL DEFAULT '1' COMMENT '发送类型(1:用户,2:管理员)', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE, KEY `mark` (`mark`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='通知设置表'; -- ---------------------------- -- Records of eb_system_notification -- ---------------------------- BEGIN; INSERT INTO `eb_system_notification` (`id`, `mark`, `type`, `description`, `is_wechat`, `wechat_id`, `is_routine`, `routine_id`, `is_sms`, `sms_id`, `send_type`, `create_time`) VALUES (1, 'paySuccess', '订单支付成功通知', '订单支付成功通知', 1, 6, 1, 12, 2, 1, 1, '2021-12-09 17:19:17'); INSERT INTO `eb_system_notification` (`id`, `mark`, `type`, `description`, `is_wechat`, `wechat_id`, `is_routine`, `routine_id`, `is_sms`, `sms_id`, `send_type`, `create_time`) VALUES (2, 'deliverGoods', '订单发货通知', '订单发货通知', 1, 2, 1, 15, 2, 2, 1, '2021-12-09 17:20:32'); INSERT INTO `eb_system_notification` (`id`, `mark`, `type`, `description`, `is_wechat`, `wechat_id`, `is_routine`, `routine_id`, `is_sms`, `sms_id`, `send_type`, `create_time`) VALUES (6, 'rechargeSuccess', '充值成功通知', '充值成功通知', 1, 1, 1, 10, 0, 0, 1, '2021-12-09 17:21:07'); INSERT INTO `eb_system_notification` (`id`, `mark`, `type`, `description`, `is_wechat`, `wechat_id`, `is_routine`, `routine_id`, `is_sms`, `sms_id`, `send_type`, `create_time`) VALUES (7, 'receiptGoods', '确认收货通知', '确认收货通知', 1, 7, 1, 11, 0, 0, 1, '2021-12-09 17:24:22'); INSERT INTO `eb_system_notification` (`id`, `mark`, `type`, `description`, `is_wechat`, `wechat_id`, `is_routine`, `routine_id`, `is_sms`, `sms_id`, `send_type`, `create_time`) VALUES (8, 'auditSuccess', '入驻审核通过通知', '入驻审核通过通知', 0, 0, 0, 0, 1, 3, 1, '2022-08-25 11:48:14'); INSERT INTO `eb_system_notification` (`id`, `mark`, `type`, `description`, `is_wechat`, `wechat_id`, `is_routine`, `routine_id`, `is_sms`, `sms_id`, `send_type`, `create_time`) VALUES (9, 'auditFail', '入驻审核未通过通知', '入驻审核未通过通知', 0, 0, 0, 0, 1, 4, 1, '2022-08-25 11:48:33'); COMMIT; -- ---------------------------- -- Table structure for eb_system_role -- ---------------------------- DROP TABLE IF EXISTS `eb_system_role`; CREATE TABLE `eb_system_role` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '身份管理id', `mer_id` int(11) NOT NULL DEFAULT '0' COMMENT '商户id', `role_name` varchar(32) NOT NULL COMMENT '身份管理名称', `rules` text NOT NULL COMMENT '身份管理权限(menus_id)', `level` tinyint(3) unsigned NOT NULL DEFAULT '0', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态', `type` int(11) NOT NULL DEFAULT '0' COMMENT '管理员类型:1= 平台超管, 2=商户超管, 3=系统管理员,4=商户管理员', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='身份管理表'; -- ---------------------------- -- Records of eb_system_role -- ---------------------------- BEGIN; INSERT INTO `eb_system_role` (`id`, `mer_id`, `role_name`, `rules`, `level`, `status`, `type`, `create_time`, `update_time`) VALUES (1, 0, '超级管理员', '', 0, 1, 1, '2020-04-18 11:19:25', '2022-04-08 20:54:33'); INSERT INTO `eb_system_role` (`id`, `mer_id`, `role_name`, `rules`, `level`, `status`, `type`, `create_time`, `update_time`) VALUES (2, 0, '商户超级管理员', '', 0, 1, 2, '2022-03-04 10:03:54', '2022-04-08 20:54:39'); COMMIT; -- ---------------------------- -- Table structure for eb_system_role_menu -- ---------------------------- DROP TABLE IF EXISTS `eb_system_role_menu`; CREATE TABLE `eb_system_role_menu` ( `rid` int(11) NOT NULL COMMENT '角色id', `menu_id` int(11) NOT NULL COMMENT '权限id', PRIMARY KEY (`rid`,`menu_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='角色菜单关联表'; -- ---------------------------- -- Records of eb_system_role_menu -- ---------------------------- BEGIN; INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 1); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 2); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 3); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 4); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 5); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 6); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 7); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 8); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 9); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 10); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 11); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 14); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 15); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 16); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 17); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 18); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 19); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 20); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 21); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 22); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 23); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 24); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 25); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 26); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 27); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 28); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 33); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 34); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 35); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 36); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 37); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 38); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 40); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 43); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 44); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 45); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 46); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 48); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 50); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 51); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 53); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 55); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 56); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 57); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 58); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 59); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 60); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 61); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 62); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 63); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 64); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 65); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 66); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 67); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 68); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 69); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 70); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 71); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 72); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 73); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 74); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 75); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 76); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 89); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 90); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 91); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 93); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 94); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 95); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 96); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 97); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 98); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 99); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 100); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 101); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 102); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 103); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 104); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 105); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 106); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 107); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 108); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 109); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 110); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 111); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 112); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 113); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 114); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 115); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 116); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 118); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 119); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 120); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 121); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 122); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 123); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 124); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 125); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 126); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 127); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 128); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 129); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 130); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 131); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 132); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 133); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 134); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 135); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 136); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 137); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 138); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 139); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 140); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 141); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 142); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 143); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 144); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 145); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 146); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 147); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 148); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 149); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 150); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 151); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 152); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 153); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 154); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 155); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 156); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 157); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 158); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 159); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 160); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 161); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 163); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 164); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 165); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 166); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 167); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 168); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 169); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 170); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 231); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 232); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 233); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 234); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 235); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 236); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 237); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 238); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 239); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 240); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 241); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 242); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 243); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 244); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 245); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 246); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 247); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 248); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 249); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 250); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 251); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 252); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 253); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 254); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 255); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 256); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 303); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 304); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 305); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 306); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 317); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 318); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 328); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 329); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 330); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 331); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 332); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 333); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 334); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 335); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 336); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 337); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 338); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 339); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 340); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 341); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 342); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 343); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 344); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 345); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 346); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 347); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 348); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 349); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 350); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 351); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 352); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 353); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 354); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 356); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 357); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 358); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 359); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 360); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 361); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 362); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 363); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 364); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 365); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 366); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 367); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 368); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 369); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 370); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 371); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 372); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 373); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 374); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 375); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 376); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 377); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 378); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 379); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 380); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 381); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 382); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 383); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 384); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 385); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 386); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 387); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 388); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 389); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 390); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 391); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 392); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 393); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 394); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 395); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 396); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 397); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 398); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 399); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 400); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 401); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 402); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 403); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 404); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 405); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 417); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 425); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 426); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 428); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 429); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 430); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 431); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 432); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 433); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 434); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 435); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 436); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 437); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 438); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 439); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 440); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 441); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 442); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 443); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 446); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 447); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 448); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 465); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 469); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 470); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 471); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 472); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 473); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 474); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 475); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 477); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 487); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 489); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 490); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 492); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 493); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 497); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 499); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 503); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 504); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 505); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 506); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 507); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 508); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 509); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 510); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 511); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 512); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 513); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 514); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 515); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 516); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 521); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 522); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 523); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 524); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 526); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 530); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 531); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 537); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 541); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 542); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 543); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 544); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 545); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 546); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 547); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 548); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 549); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 552); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 553); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 554); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 555); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 556); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 559); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 560); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 561); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 562); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 563); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 564); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 565); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 566); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 567); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 568); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 569); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 570); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 571); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 572); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 573); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 574); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 576); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 577); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 578); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 579); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 580); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 581); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 582); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 583); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 584); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 585); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 586); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 591); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 592); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 594); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 595); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 597); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 598); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 599); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 600); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 601); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 602); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 603); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 604); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 605); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 606); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 607); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 608); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 609); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 610); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 611); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 612); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 613); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 614); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 615); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 616); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 617); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 618); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 632); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 634); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 635); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 636); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 637); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 638); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 639); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 640); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 641); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 642); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 643); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 644); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (1, 645); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 257); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 258); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 259); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 260); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 261); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 262); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 263); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 265); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 266); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 267); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 268); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 269); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 270); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 271); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 272); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 273); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 274); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 275); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 276); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 277); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 278); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 279); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 280); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 281); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 284); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 285); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 286); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 287); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 288); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 289); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 290); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 291); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 292); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 293); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 294); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 295); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 296); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 297); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 298); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 299); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 300); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 301); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 307); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 308); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 309); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 310); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 311); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 312); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 313); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 314); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 316); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 319); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 320); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 321); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 322); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 323); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 324); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 325); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 326); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 327); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 355); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 406); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 407); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 408); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 409); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 410); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 411); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 412); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 413); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 414); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 415); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 416); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 454); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 455); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 456); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 457); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 458); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 459); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 460); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 461); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 462); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 463); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 464); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 466); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 467); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 468); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 476); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 478); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 479); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 480); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 481); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 482); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 483); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 484); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 485); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 486); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 517); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 518); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 519); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 520); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 525); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 527); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 528); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 529); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 532); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 533); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 534); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 535); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 536); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 538); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 539); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 540); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 550); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 551); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 587); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 588); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 589); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 590); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 593); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 596); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 619); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 620); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 621); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 622); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 623); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 624); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 625); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 626); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 627); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 628); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 629); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 630); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 631); INSERT INTO `eb_system_role_menu` (`rid`, `menu_id`) VALUES (2, 633); COMMIT; -- ---------------------------- -- Table structure for eb_system_user_level -- ---------------------------- DROP TABLE IF EXISTS `eb_system_user_level`; CREATE TABLE `eb_system_user_level` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL DEFAULT '' COMMENT '会员名称', `experience` int(11) NOT NULL DEFAULT '0' COMMENT '达到多少升级经验', `is_show` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否显示 1=显示,0=隐藏', `grade` int(11) NOT NULL DEFAULT '0' COMMENT '会员等级', `discount` int(4) NOT NULL DEFAULT '100' COMMENT '享受折扣', `icon` varchar(255) NOT NULL DEFAULT '' COMMENT '会员图标', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除.1=删除,0=未删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='普通会员等级'; -- ---------------------------- -- Records of eb_system_user_level -- ---------------------------- BEGIN; INSERT INTO `eb_system_user_level` (`id`, `name`, `experience`, `is_show`, `grade`, `discount`, `icon`, `is_del`, `create_time`, `update_time`) VALUES (1, '黄铜', 2000, 1, 2, 10, 'crmebimage/public/maintain/2022/08/04/b908b2b0034343458ba3649c7d1084383u7xxcc3ji.png', 0, '2022-09-03 15:48:20', '2022-11-03 10:55:07'); INSERT INTO `eb_system_user_level` (`id`, `name`, `experience`, `is_show`, `grade`, `discount`, `icon`, `is_del`, `create_time`, `update_time`) VALUES (2, '铜牌', 1, 0, 1, 5, 'crmebimage/public/maintain/2022/08/04/5707216876e14bc7ae8ed279d98b330cavyj6drd78.png', 1, '2022-09-03 15:52:19', '2022-09-03 15:52:19'); INSERT INTO `eb_system_user_level` (`id`, `name`, `experience`, `is_show`, `grade`, `discount`, `icon`, `is_del`, `create_time`, `update_time`) VALUES (3, '黑铁', 10, 1, 1, 5, 'crmebimage/public/maintain/2022/10/17/90849b0ccdf34184acb8c026843e9ee5ljyldtko9k.jpg', 0, '2022-10-21 11:47:17', '2022-11-24 17:19:19'); INSERT INTO `eb_system_user_level` (`id`, `name`, `experience`, `is_show`, `grade`, `discount`, `icon`, `is_del`, `create_time`, `update_time`) VALUES (4, '白银', 3000, 1, 3, 15, 'crmebimage/public/user/2022/11/02/aa0fe0c028874da8a132bbad49aeb640wcm5tht5bh.jpg', 0, '2022-11-03 10:55:45', '2022-11-03 10:55:45'); INSERT INTO `eb_system_user_level` (`id`, `name`, `experience`, `is_show`, `grade`, `discount`, `icon`, `is_del`, `create_time`, `update_time`) VALUES (5, '黄金', 4000, 1, 4, 20, 'crmebimage/public/user/2022/11/02/ad83b1c4514946dba3cb82390dd72931oz6j7q580e.jpg', 0, '2022-11-03 10:56:04', '2022-11-03 10:56:04'); INSERT INTO `eb_system_user_level` (`id`, `name`, `experience`, `is_show`, `grade`, `discount`, `icon`, `is_del`, `create_time`, `update_time`) VALUES (6, '白金', 5000, 1, 5, 0, 'crmebimage/public/finance/2022/12/01/f979e14a850145ddbae74a6cd517ff939248m3agev.png', 0, '2023-02-09 15:28:40', '2023-02-09 15:28:40'); COMMIT; -- ---------------------------- -- Table structure for eb_template_message -- ---------------------------- DROP TABLE IF EXISTS `eb_template_message`; CREATE TABLE `eb_template_message` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '模板id', `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '0=订阅消息,1=微信模板消息', `temp_key` char(50) NOT NULL DEFAULT '' COMMENT '模板编号', `name` char(100) NOT NULL COMMENT '模板名', `content` varchar(1000) NOT NULL COMMENT '回复内容', `temp_id` char(100) DEFAULT NULL COMMENT '模板ID', `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=16 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='微信模板'; -- ---------------------------- -- Records of eb_template_message -- ---------------------------- BEGIN; INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (1, 1, 'OPENTM416050196', '充值成功通知', '\r\n{{first.DATA}}\r\n客户名称:{{keyword1.DATA}}\r\n充值单号:{{keyword2.DATA}}\r\n充值金额:{{keyword3.DATA}}\r\n{{remark.DATA}}', 'gNKsiSNZgoYoyf40OT5vqfvk719rKf3zQgnRgmE5KCE', 1, '2020-06-16 10:44:44', '2023-01-11 17:53:40'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (2, 1, 'OPENTM408918196', '订单发货通知', '{{first.DATA}}\r\n订单编号:{{keyword1.DATA}}\r\n物流公司:{{keyword2.DATA}}\r\n物流单号:{{keyword3.DATA}}\r\n{{remark.DATA}}', '4f0Me0GyWOvnA5b-ftOgGlDq-XrdMh0-Y-kDrsZQnkY', 1, '2020-06-16 10:44:44', '2023-01-12 15:44:37'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (3, 1, 'OPENTM407456411', '拼团成功通知', '{{first.DATA}}\n订单编号:{{keyword1.DATA}}\n团购商品:{{keyword2.DATA}}\n{{remark.DATA}}', 'xMgGRj-Y9mRTFyFDJCfEiIq85pnxnpYND5jf3U8jWUU', 1, '2020-06-16 10:44:44', '2020-12-03 16:26:04'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (4, 1, 'OPENTM410292733', '砍价成功提醒', '{{first.DATA}}\n商品名称:{{keyword1.DATA}}\n底价:{{keyword2.DATA}}\n{{remark.DATA}}', '3gBsCjytdbe-D2anmsW_Rl9DPfwQcX_eVoOt1IQynpo', 1, '2020-06-16 10:44:44', '2020-12-03 16:27:27'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (5, 1, 'OPENTM418209505', '订单配送通知', '{{first.DATA}}\r\n商品明细:{{keyword1.DATA}}\r\n下单时间:{{keyword2.DATA}}\r\n配送地址:{{keyword3.DATA}}\r\n配送人:{{keyword4.DATA}}\r\n联系电话:{{keyword5.DATA}}\r\n{{remark.DATA}}', 'zNHM36D-dK5bDCCzDoCdYB1lBKO_MYubVtwsn89tO78', 1, '2020-12-03 16:03:24', '2021-12-16 10:49:25'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (6, 1, 'OPENTM400231951', '支付成功通知', '{{first.DATA}}\n订单号:{{keyword1.DATA}}\n商品名称:{{keyword2.DATA}}\n支付金额:{{keyword3.DATA}}\n下单人:{{keyword4.DATA}}\n订单支付时间:{{keyword5.DATA}}\n{{remark.DATA}}', 'U6MWDabPBoLbmvmjtrqqp-C4IdG5va9sYqQFFzT8ZB4', 1, '2021-01-28 11:43:51', '2022-11-02 15:20:37'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (7, 1, 'OPENTM413386489', '订单收货通知', '{{first.DATA}}\r\n订单编号:{{keyword1.DATA}}\r\n订单状态:{{keyword2.DATA}}\r\n收货时间:{{keyword3.DATA}}\r\n商品详情:{{keyword4.DATA}}\r\n{{remark.DATA}}', 'BaqGct0EfmTw4wrdonPg3LbTHO_shrvvGqah8lGPb6s', 1, '2021-01-28 15:12:15', '2021-01-28 15:12:15'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (8, 1, 'OPENTM410119152', '退款进度通知', '{{first.DATA}}\r\n订单编号:{{keyword1.DATA}}\r\n订单金额:{{keyword2.DATA}}\r\n下单时间:{{keyword3.DATA}}\r\n{{remark.DATA}}', NULL, 0, '2021-01-29 11:43:06', '2021-01-29 11:43:06'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (9, 0, '1128', '订单配送通知', '商品信息\r\n{{thing8.DATA}}\r\n\r\n订单编号\r\n{{character_string1.DATA}}\r\n\r\n配送人\r\n{{name4.DATA}}\r\n\r\n配送员电话\r\n{{phone_number10.DATA}}', 'B4zbo-s0fS8PRJ62rquZd7-K0SUY3klSL2s2jN8ozcs', 1, '2021-03-05 16:19:50', '2021-12-16 11:03:27'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (10, 0, '755', '充值成功通知', '交易单号\r\n{{character_string1.DATA}}\r\n\r\n充值金额\r\n{{amount3.DATA}}\r\n\r\n充值时间\r\n{{date5.DATA}}\r\n\r\n赠送金额\r\n{{amount6.DATA}}\r\n\r\n备注\r\n{{thing7.DATA}}', 'y8I_vSDMffsipRe3t-Zfz-DH862FPqQcE386XYW8964', 1, '2021-03-05 16:21:19', '2023-01-12 15:33:07'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (11, 0, '1481', '确认收货通知', '订单编号\r\n{{character_string6.DATA}}\r\n\r\n收货时间\r\n{{date5.DATA}}\r\n\r\n订单商品\r\n{{thing2.DATA}}', 'd3n2rN9Kqw4uLBVTY-nD00eUEejXZkyHCbw5We1HzV4', 1, '2021-03-05 16:22:03', '2021-12-16 11:03:35'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (12, 0, '3578', '订单支付成功通知', '订单编号\r\n{{character_string3.DATA}}\r\n\r\n订单金额\r\n{{amount9.DATA}}\r\n\r\n备注\r\n{{thing6.DATA}}', 'WBaA2jZ77wpq6_9u8PABmK_7Df8vHzLGEtae7EmQV8Q', 1, '2021-03-05 16:22:48', '2021-12-16 11:03:40'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (13, 0, '2727', '砍价结果通知', '商品名称\r\n{{thing1.DATA}}\r\n\r\n底价\r\n{{amount2.DATA}}\r\n\r\n备注\r\n{{thing3.DATA}}', '1YkOIsB3ZUh731W9vd76-QXcjfKLxcoy1Am2Yh1NPxI', 1, '2021-03-05 16:23:26', '2021-12-16 11:03:44'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (14, 0, '3098', '拼团成功提醒', '订单号\r\n{{character_string10.DATA}}\r\n\r\n商品名称\r\n{{thing7.DATA}}\r\n\r\n备注\r\n{{thing9.DATA}}', 'l_xoRSL9dC6fA9EmKmxWF8AJIq3ZhbbSQ-vISqKfl7w', 1, '2021-03-05 16:24:13', '2021-12-16 11:03:47'); INSERT INTO `eb_template_message` (`id`, `type`, `temp_key`, `name`, `content`, `temp_id`, `status`, `create_time`, `update_time`) VALUES (15, 0, '1458', '订单发货提醒', '订单编号\r\n{{character_string7.DATA}}\r\n\r\n快递公司\r\n{{thing1.DATA}}\r\n\r\n快递单号\r\n{{character_string2.DATA}}\r\n\r\n备注\r\n{{thing8.DATA}}', 'p2bweRCLAOd90J8RjJvk6rxFsH9B2LpGTNtH_uo-fRM', 1, '2021-03-05 16:25:05', '2023-01-12 15:25:46'); COMMIT; -- ---------------------------- -- Table structure for eb_trading_day_record -- ---------------------------- DROP TABLE IF EXISTS `eb_trading_day_record`; CREATE TABLE `eb_trading_day_record` ( `id` int(11) NOT NULL AUTO_INCREMENT, `date` varchar(20) DEFAULT NULL COMMENT '日期', `product_order_num` int(11) DEFAULT NULL COMMENT '订单数量', `product_order_pay_num` int(11) DEFAULT NULL COMMENT '订单支付数量', `product_order_pay_fee` decimal(8,2) DEFAULT NULL COMMENT '订单支付金额', `product_order_refund_num` int(11) DEFAULT NULL COMMENT '订单退款数量', `product_order_refund_fee` decimal(8,2) DEFAULT NULL COMMENT '订单退款金额', `recharge_order_num` int(11) DEFAULT NULL COMMENT '充值订单数量', `recharge_order_fee` decimal(8,2) DEFAULT NULL COMMENT '充值订单金额', `balance_pay_fee` decimal(8,2) DEFAULT NULL COMMENT '余额支付金额', `brokerage_fee` decimal(8,2) DEFAULT NULL COMMENT '支付佣金金额(用户确认到账佣金)', PRIMARY KEY (`id`) USING BTREE, KEY `date` (`date`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='商城交易日记录表'; -- ---------------------------- -- Records of eb_trading_day_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user -- ---------------------------- DROP TABLE IF EXISTS `eb_user`; CREATE TABLE `eb_user` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户id', `account` varchar(32) NOT NULL DEFAULT '' COMMENT '用户账号', `pwd` varchar(32) NOT NULL DEFAULT '' COMMENT '用户密码', `real_name` varchar(25) NOT NULL DEFAULT '' COMMENT '真实姓名', `birthday` varchar(32) NOT NULL DEFAULT '' COMMENT '生日', `identity_card_no` varchar(20) NOT NULL DEFAULT '' COMMENT '身份证号码', `tag_id` varchar(255) NOT NULL DEFAULT '' COMMENT '标签id,英文逗号分隔', `nickname` varchar(255) NOT NULL DEFAULT '' COMMENT '用户昵称', `avatar` varchar(256) NOT NULL DEFAULT '' COMMENT '用户头像', `phone` varchar(50) NOT NULL DEFAULT '' COMMENT '手机号码', `country` varchar(20) NOT NULL DEFAULT 'CN' COMMENT '国家,中国CN,其他OTHER', `province` varchar(20) NOT NULL DEFAULT '' COMMENT '省份', `city` varchar(20) NOT NULL DEFAULT '' COMMENT '城市', `district` varchar(64) NOT NULL DEFAULT '' COMMENT '区', `address` varchar(255) NOT NULL DEFAULT '' COMMENT '详细地址', `sex` tinyint(2) NOT NULL DEFAULT '1' COMMENT '性别,0未知,1男,2女,3保密', `integral` int(11) NOT NULL DEFAULT '0' COMMENT '用户积分', `experience` int(11) NOT NULL DEFAULT '0' COMMENT '用户经验', `now_money` decimal(16,2) NOT NULL DEFAULT '0.00' COMMENT '用户余额', `brokerage_price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '佣金金额', `level` tinyint(2) NOT NULL DEFAULT '0' COMMENT '等级', `sign_num` int(11) NOT NULL DEFAULT '0' COMMENT '连续签到天数', `is_wechat_public` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否关联公众号', `is_wechat_routine` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否关联小程序', `pay_count` int(11) NOT NULL DEFAULT '0' COMMENT '用户购买次数', `is_promoter` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否为推广员', `promoter_time` timestamp NULL DEFAULT NULL COMMENT '成为分销员时间', `spread_uid` int(10) NOT NULL DEFAULT '0' COMMENT '上级推广员id', `spread_time` timestamp NULL DEFAULT NULL COMMENT '绑定上级推广员时间', `spread_count` int(11) NOT NULL DEFAULT '0' COMMENT '下级人数', `register_type` varchar(32) NOT NULL DEFAULT '' COMMENT '注册类型:public-公众号,mini-小程序,H5-H5,iosWx-微信ios,androidWx-微信安卓,ios-ios', `add_ip` varchar(16) NOT NULL DEFAULT '' COMMENT '创建ip', `last_ip` varchar(16) NOT NULL DEFAULT '' COMMENT '最后一次登录ip', `last_login_time` timestamp NULL DEFAULT NULL COMMENT '最后一次登录时间', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1为正常,0为禁止', `mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `is_logoff` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否注销', `logoff_time` timestamp NULL DEFAULT NULL COMMENT '注销时间', `is_wechat_ios` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否关联微信ios', `is_wechat_android` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否关联微信android', `is_binding_ios` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否关联ios', PRIMARY KEY (`id`) USING BTREE, KEY `spreaduid` (`spread_uid`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `is_promoter` (`is_promoter`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户表'; -- ---------------------------- -- Records of eb_user -- ---------------------------- BEGIN; INSERT INTO `eb_user` (`id`, `account`, `pwd`, `real_name`, `birthday`, `identity_card_no`, `tag_id`, `nickname`, `avatar`, `phone`, `country`, `province`, `city`, `district`, `address`, `sex`, `integral`, `experience`, `now_money`, `brokerage_price`, `level`, `sign_num`, `is_wechat_public`, `is_wechat_routine`, `pay_count`, `is_promoter`, `promoter_time`, `spread_uid`, `spread_time`, `spread_count`, `register_type`, `add_ip`, `last_ip`, `last_login_time`, `status`, `mark`, `create_time`, `update_time`, `is_logoff`, `logoff_time`, `is_wechat_ios`, `is_wechat_android`, `is_binding_ios`) VALUES (1, '18292417675', 'pgjrW1jMqL6wbab2TlkpUg==', '', '2023-02-08', '', '', '123123', 'crmebimage/public/product/2022/11/14/6e557d7a5b71405394a3d1245203f676jkwlistg3u.png', '18292417675', 'CN', '北京市', '北京市', '', '', 0, 32, 12, 999978.09, 0.00, 0, 1, 0, 1, 5, 1, NULL, 0, NULL, 0, 'routine', '', '', '2023-03-02 18:11:51', 1, '', '2022-12-06 15:44:11', '2023-02-08 11:02:00', 0, NULL, 0, 0, 0); COMMIT; -- ---------------------------- -- Table structure for eb_user_address -- ---------------------------- DROP TABLE IF EXISTS `eb_user_address`; CREATE TABLE `eb_user_address` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户地址id', `uid` int(11) unsigned NOT NULL COMMENT '用户id', `real_name` varchar(32) NOT NULL DEFAULT '' COMMENT '收货人姓名', `phone` varchar(16) NOT NULL DEFAULT '' COMMENT '收货人电话', `province` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在省', `province_id` int(11) NOT NULL DEFAULT '0' COMMENT '省份ID', `city` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在市', `city_id` int(11) NOT NULL DEFAULT '0' COMMENT '城市id', `district` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在区/县', `district_id` int(11) NOT NULL DEFAULT '0' COMMENT '区/县id', `street` varchar(64) NOT NULL DEFAULT '' COMMENT '收货人所在街道', `detail` varchar(256) NOT NULL DEFAULT '' COMMENT '收货人详细地址', `post_code` int(10) NOT NULL DEFAULT '0' COMMENT '邮编', `longitude` varchar(16) NOT NULL DEFAULT '0' COMMENT '经度', `latitude` varchar(16) NOT NULL DEFAULT '0' COMMENT '纬度', `is_default` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否默认', `is_del` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `is_default` (`is_default`) USING BTREE, KEY `is_del` (`is_del`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户地址表'; -- ---------------------------- -- Records of eb_user_address -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_balance_record -- ---------------------------- DROP TABLE IF EXISTS `eb_user_balance_record`; CREATE TABLE `eb_user_balance_record` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '记录id', `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid', `link_id` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联id(订单号、充值单号)(system默认为0)', `link_type` varchar(32) NOT NULL DEFAULT 'order' COMMENT '关联类型:order-订单,recharge-充值,system-系统,brokerage-佣金转余额', `type` int(1) NOT NULL DEFAULT '1' COMMENT '类型:1-增加,2-扣减', `amount` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '金额', `balance` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '剩余', `remark` varchar(100) NOT NULL DEFAULT '' COMMENT '备注', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `link_id` (`link_id`) USING BTREE, KEY `link_type` (`link_type`) USING BTREE, KEY `type` (`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户余额记录表'; -- ---------------------------- -- Records of eb_user_balance_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_bill -- ---------------------------- DROP TABLE IF EXISTS `eb_user_bill`; CREATE TABLE `eb_user_bill` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '用户账单id', `uid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '用户uid', `link_id` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联id', `pm` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '0 = 支出 1 = 获得', `title` varchar(64) NOT NULL DEFAULT '' COMMENT '账单标题', `category` varchar(64) NOT NULL DEFAULT '' COMMENT '明细种类', `type` varchar(64) NOT NULL DEFAULT '' COMMENT '明细类型', `number` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '明细数字', `balance` decimal(16,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '剩余', `mark` varchar(512) NOT NULL DEFAULT '' COMMENT '备注', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0 = 带确定 1 = 有效 -1 = 无效', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `openid` (`uid`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `add_time` (`create_time`) USING BTREE, KEY `pm` (`pm`) USING BTREE, KEY `type` (`category`,`type`,`link_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户账单表'; -- ---------------------------- -- Records of eb_user_bill -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_brokerage_record -- ---------------------------- DROP TABLE IF EXISTS `eb_user_brokerage_record`; CREATE TABLE `eb_user_brokerage_record` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '记录id', `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid', `sub_uid` int(11) NOT NULL DEFAULT '0' COMMENT '下级uid', `link_no` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联单号(订单号、提现单号)', `link_type` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联类型(order,withdraw,yue)', `type` int(1) NOT NULL DEFAULT '1' COMMENT '类型:1-增加,2-扣减(提现)', `title` varchar(64) NOT NULL DEFAULT '' COMMENT '标题', `price` decimal(8,2) NOT NULL DEFAULT '0.00' COMMENT '金额', `balance` decimal(16,2) NOT NULL DEFAULT '0.00' COMMENT '剩余', `mark` varchar(512) NOT NULL DEFAULT '' COMMENT '备注', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态:1-订单创建,2-冻结期,3-完成,4-失效(订单退款/申请被拒),5-提现申请', `frozen_time` int(3) NOT NULL DEFAULT '0' COMMENT '冻结期时间(天)', `thaw_time` bigint(14) NOT NULL DEFAULT '0' COMMENT '解冻时间', `brokerage_level` int(2) DEFAULT NULL COMMENT '分销等级', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `type` (`type`) USING BTREE, KEY `link_no` (`link_no`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户佣金记录表'; -- ---------------------------- -- Records of eb_user_brokerage_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_closing -- ---------------------------- DROP TABLE IF EXISTS `eb_user_closing`; CREATE TABLE `eb_user_closing` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `closing_no` varchar(32) NOT NULL COMMENT '结算单号', `uid` int(10) unsigned DEFAULT NULL COMMENT '用户id', `closing_type` varchar(32) NOT NULL DEFAULT '' COMMENT '结算类型:bank = 银行卡 alipay = 支付宝 weixin=微信', `cardholder` varchar(64) NOT NULL DEFAULT '' COMMENT '银行卡持卡人姓名', `bank_card_no` varchar(32) NOT NULL DEFAULT '' COMMENT '银行卡卡号', `bank_name` varchar(512) NOT NULL DEFAULT '' COMMENT '银行名称', `bank_address` varchar(256) NOT NULL DEFAULT '' COMMENT '开户地址', `alipay_account` varchar(64) NOT NULL DEFAULT '' COMMENT '支付宝账号', `wechat_no` varchar(15) NOT NULL DEFAULT '' COMMENT '微信号', `payment_code` varchar(512) NOT NULL DEFAULT '' COMMENT '微信收款二维码', `closing_price` decimal(8,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '结算金额', `balance` decimal(8,2) unsigned DEFAULT '0.00' COMMENT '用户余额', `mark` varchar(512) NOT NULL DEFAULT '' COMMENT '备注', `audit_status` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '审核状态:0-待审核,1-通过审核,2-审核失败', `refusal_reason` varchar(50) NOT NULL DEFAULT '' COMMENT '拒绝原因', `audit_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '审核员id', `audit_time` timestamp NULL DEFAULT NULL COMMENT '审核时间', `account_status` int(2) unsigned NOT NULL DEFAULT '0' COMMENT '到账状态:0-未到账,1-已到账', `closing_proof` varchar(1000) NOT NULL DEFAULT '' COMMENT '结算凭证', `closing_time` timestamp NULL DEFAULT NULL COMMENT '结算时间', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', `real_name` varchar(20) NOT NULL DEFAULT '' COMMENT '真实姓名', PRIMARY KEY (`id`) USING BTREE, KEY `closing_type` (`closing_type`) USING BTREE, KEY `audit_status` (`audit_status`) USING BTREE, KEY `uid` (`uid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户结算表'; -- ---------------------------- -- Records of eb_user_closing -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_experience_record -- ---------------------------- DROP TABLE IF EXISTS `eb_user_experience_record`; CREATE TABLE `eb_user_experience_record` ( `id` int(10) NOT NULL AUTO_INCREMENT COMMENT '记录id', `uid` int(10) NOT NULL DEFAULT '0' COMMENT '用户uid', `link_id` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联id-orderNo,(sign,system默认为0)', `link_type` varchar(32) NOT NULL DEFAULT 'order' COMMENT '关联类型(order,sign,system)', `type` int(1) NOT NULL DEFAULT '1' COMMENT '类型:1-增加,2-扣减', `title` varchar(64) NOT NULL DEFAULT '' COMMENT '标题', `experience` int(11) NOT NULL DEFAULT '0' COMMENT '经验', `balance` int(11) NOT NULL DEFAULT '0' COMMENT '剩余', `mark` varchar(512) NOT NULL DEFAULT '' COMMENT '备注', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态:1-成功(保留字段)', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE, KEY `type` (`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户经验记录表'; -- ---------------------------- -- Records of eb_user_experience_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_integral_record -- ---------------------------- DROP TABLE IF EXISTS `eb_user_integral_record`; CREATE TABLE `eb_user_integral_record` ( `id` int(10) NOT NULL AUTO_INCREMENT COMMENT '记录id', `uid` int(10) NOT NULL DEFAULT '0' COMMENT '用户uid', `link_id` varchar(32) NOT NULL DEFAULT '0' COMMENT '关联id-orderNo,(sign,system默认为0)', `link_type` varchar(32) NOT NULL DEFAULT 'order' COMMENT '关联类型(order,sign,system)', `type` int(1) NOT NULL DEFAULT '1' COMMENT '类型:1-增加,2-扣减', `title` varchar(64) NOT NULL DEFAULT '' COMMENT '标题', `integral` int(11) NOT NULL DEFAULT '0' COMMENT '积分', `balance` int(11) NOT NULL DEFAULT '0' COMMENT '剩余', `mark` varchar(512) NOT NULL DEFAULT '' COMMENT '备注', `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '状态:1-订单创建,2-冻结期,3-完成,4-失效(订单退款)', `frozen_time` int(3) NOT NULL DEFAULT '0' COMMENT '冻结期时间(天)', `thaw_time` bigint(14) NOT NULL DEFAULT '0' COMMENT '解冻时间', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, KEY `openid` (`uid`) USING BTREE, KEY `status` (`status`) USING BTREE, KEY `add_time` (`create_time`) USING BTREE, KEY `type` (`type`) USING BTREE, KEY `type_link` (`type`,`link_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户积分记录表'; -- ---------------------------- -- Records of eb_user_integral_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_level -- ---------------------------- DROP TABLE IF EXISTS `eb_user_level`; CREATE TABLE `eb_user_level` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid', `level_id` int(11) NOT NULL DEFAULT '0' COMMENT '等级vip', `grade` int(11) NOT NULL DEFAULT '0' COMMENT '会员等级', `discount` int(4) NOT NULL DEFAULT '100' COMMENT '享受折扣', `mark` varchar(255) NOT NULL DEFAULT '' COMMENT '备注', `expired_time` timestamp NULL DEFAULT NULL COMMENT '过期时间', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除,0=未删除,1=删除', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `id` (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户等级记录表'; -- ---------------------------- -- Records of eb_user_level -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_merchant_collect -- ---------------------------- DROP TABLE IF EXISTS `eb_user_merchant_collect`; CREATE TABLE `eb_user_merchant_collect` ( `uid` int(11) NOT NULL COMMENT '用户ID', `mer_id` int(11) NOT NULL COMMENT '商户ID', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`uid`,`mer_id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户商户收藏表'; -- ---------------------------- -- Records of eb_user_merchant_collect -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_sign -- ---------------------------- DROP TABLE IF EXISTS `eb_user_sign`; CREATE TABLE `eb_user_sign` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid', `title` varchar(255) NOT NULL DEFAULT '' COMMENT '签到说明', `number` int(11) NOT NULL DEFAULT '0' COMMENT '获得', `balance` int(11) NOT NULL DEFAULT '0' COMMENT '剩余', `type` tinyint(1) NOT NULL DEFAULT '1' COMMENT '类型,1积分,2经验', `create_day` date NOT NULL COMMENT '签到日期', `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`,`type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='签到记录表'; -- ---------------------------- -- Records of eb_user_sign -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_sign_record -- ---------------------------- DROP TABLE IF EXISTS `eb_user_sign_record`; CREATE TABLE `eb_user_sign_record` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户id', `integral` int(5) NOT NULL DEFAULT '0' COMMENT '签到积分', `experience` int(5) NOT NULL DEFAULT '0' COMMENT '签到经验', `day` int(5) NOT NULL DEFAULT '1' COMMENT '连续签到天数', `award_integral` int(5) NOT NULL DEFAULT '0' COMMENT '连续签到奖励积分', `award_experience` int(5) NOT NULL DEFAULT '0' COMMENT '连续签奖励到经验', `date` varchar(20) NOT NULL DEFAULT '' COMMENT '签到日期,yyyy-MM-dd', `mark` varchar(200) NOT NULL DEFAULT '' COMMENT '备注说明', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '添加时间', PRIMARY KEY (`id`) USING BTREE, KEY `uid` (`uid`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户签到记录表'; -- ---------------------------- -- Records of eb_user_sign_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_tag -- ---------------------------- DROP TABLE IF EXISTS `eb_user_tag`; CREATE TABLE `eb_user_tag` ( `id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(64) DEFAULT NULL COMMENT '标签名称', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户标签表'; -- ---------------------------- -- Records of eb_user_tag -- ---------------------------- BEGIN; INSERT INTO `eb_user_tag` (`id`, `name`) VALUES (1, '普通客户'); INSERT INTO `eb_user_tag` (`id`, `name`) VALUES (2, '重要客户'); INSERT INTO `eb_user_tag` (`id`, `name`) VALUES (3, '大客户'); INSERT INTO `eb_user_tag` (`id`, `name`) VALUES (4, 'vip客户'); COMMIT; -- ---------------------------- -- Table structure for eb_user_token -- ---------------------------- DROP TABLE IF EXISTS `eb_user_token`; CREATE TABLE `eb_user_token` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uid` int(10) unsigned NOT NULL COMMENT '用户 id', `token` varchar(255) NOT NULL DEFAULT '' COMMENT 'token', `type` tinyint(1) DEFAULT '1' COMMENT '类型,1 公众号, 2 小程序, 3 unionid, 5AppIos,6AppAndroid,7ios', `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `expires_time` datetime DEFAULT NULL COMMENT '到期时间', `login_ip` varchar(32) DEFAULT NULL COMMENT '登录ip', `is_del` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否删除', PRIMARY KEY (`id`) USING BTREE, KEY `type+token` (`type`,`token`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC; -- ---------------------------- -- Records of eb_user_token -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_user_visit_record -- ---------------------------- DROP TABLE IF EXISTS `eb_user_visit_record`; CREATE TABLE `eb_user_visit_record` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '记录id', `uid` int(11) NOT NULL DEFAULT '0' COMMENT '用户uid', `visit_type` int(2) NOT NULL DEFAULT '1' COMMENT '访问类型 1-首页,2-详情页,3-营销活动详情页,4-个人中心', `num` int(11) NOT NULL DEFAULT '1' COMMENT '访问数量', `date` varchar(20) NOT NULL DEFAULT '' COMMENT '日期', PRIMARY KEY (`id`) USING BTREE, KEY `date` (`date`) USING BTREE, KEY `visit_type` (`visit_type`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='用户访问记录表'; -- ---------------------------- -- Records of eb_user_visit_record -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_wechat_callback -- ---------------------------- DROP TABLE IF EXISTS `eb_wechat_callback`; CREATE TABLE `eb_wechat_callback` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键ID', `to_user_name` varchar(255) DEFAULT NULL COMMENT '商家小程序名称', `from_user_name` varchar(255) DEFAULT NULL COMMENT '微信团队的 OpenID(固定值)', `create_time` bigint(50) unsigned DEFAULT NULL COMMENT '事件时间,Unix时间戳', `msg_type` varchar(255) DEFAULT NULL COMMENT '消息类型', `event` varchar(255) DEFAULT NULL COMMENT '事件类型', `content` text COMMENT '内容', `add_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='微信回调表'; -- ---------------------------- -- Records of eb_wechat_callback -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_wechat_exceptions -- ---------------------------- DROP TABLE IF EXISTS `eb_wechat_exceptions`; CREATE TABLE `eb_wechat_exceptions` ( `id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'id', `errcode` varchar(64) DEFAULT '' COMMENT '错误码', `errmsg` varchar(255) DEFAULT '' COMMENT '错误信息', `data` text COMMENT '回复数据', `remark` text COMMENT '备注', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='微信异常表'; -- ---------------------------- -- Records of eb_wechat_exceptions -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_wechat_pay_info -- ---------------------------- DROP TABLE IF EXISTS `eb_wechat_pay_info`; CREATE TABLE `eb_wechat_pay_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `app_id` varchar(50) DEFAULT NULL COMMENT '公众号唯一标识', `mch_id` varchar(50) DEFAULT NULL COMMENT '商户号', `device_info` varchar(50) DEFAULT NULL COMMENT '设备号,PC网页或公众号内支付可以传-WEB', `open_id` varchar(50) DEFAULT NULL COMMENT '用户的唯一标识', `nonce_str` varchar(50) DEFAULT NULL COMMENT '随机字符串', `sign` varchar(70) DEFAULT NULL COMMENT '签名', `sign_type` varchar(20) DEFAULT 'MD5' COMMENT '签名类型,默认为MD5,支持HMAC-SHA256和MD5', `body` varchar(500) DEFAULT NULL COMMENT '商品描述', `detail` text COMMENT '商品详细描述,对于使用单品优惠的商户,该字段必须按照规范上传', `attach` varchar(255) DEFAULT NULL COMMENT '附加数据,在查询API和支付通知中原样返回,可作为自定义参数使用', `out_trade_no` varchar(50) DEFAULT NULL COMMENT '商户订单号,要求32个字符内', `fee_type` varchar(50) DEFAULT NULL COMMENT '标价币种:CNY:人民币 GBP:英镑 HKD:港币 USD:美元 JPY:日元 CAD:加拿大元 AUD:澳大利亚元 EUR:欧元 NZD:新西兰元 KRW:韩元 THB:泰铢', `total_fee` int(11) DEFAULT NULL COMMENT '标价金额', `spbill_create_ip` varchar(64) DEFAULT NULL COMMENT '终端IP', `time_start` varchar(20) DEFAULT NULL COMMENT '交易起始时间', `time_expire` varchar(20) DEFAULT NULL COMMENT '交易结束时间', `notify_url` varchar(300) DEFAULT NULL COMMENT '通知地址', `trade_type` varchar(20) DEFAULT NULL COMMENT '交易类型,取值为:JSAPI,NATIVE,APP等', `product_id` varchar(32) DEFAULT NULL COMMENT '商品ID', `scene_info` varchar(256) DEFAULT NULL COMMENT '场景信息', `err_code` varchar(50) DEFAULT NULL COMMENT '错误代码', `prepay_id` varchar(100) DEFAULT NULL COMMENT '预支付交易会话标识', `code_url` varchar(64) DEFAULT NULL COMMENT '二维码链接', `is_subscribe` varchar(2) DEFAULT NULL COMMENT '是否关注公众账号', `trade_state` varchar(32) DEFAULT NULL COMMENT '交易状态', `bank_type` varchar(20) DEFAULT NULL COMMENT '付款银行', `cash_fee` int(11) DEFAULT NULL COMMENT '现金支付金额', `coupon_fee` int(11) DEFAULT NULL COMMENT '代金券金额', `transaction_id` varchar(50) DEFAULT NULL COMMENT '微信支付订单号', `time_end` varchar(20) DEFAULT NULL COMMENT '支付完成时间', `trade_state_desc` varchar(256) DEFAULT NULL COMMENT '交易状态描述', PRIMARY KEY (`id`) USING BTREE, KEY `out_trade_no` (`out_trade_no`) USING BTREE ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='微信订单表'; -- ---------------------------- -- Records of eb_wechat_pay_info -- ---------------------------- BEGIN; COMMIT; -- ---------------------------- -- Table structure for eb_wechat_reply -- ---------------------------- DROP TABLE IF EXISTS `eb_wechat_reply`; CREATE TABLE `eb_wechat_reply` ( `id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '微信关键字回复id', `keywords` varchar(64) NOT NULL DEFAULT '' COMMENT '关键字', `type` varchar(32) NOT NULL DEFAULT '' COMMENT '回复类型', `data` text NOT NULL COMMENT '回复数据', `status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '回复状态 0=不可用 1 =可用', `create_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', `update_time` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT '更新时间', PRIMARY KEY (`id`) USING BTREE, UNIQUE KEY `key` (`keywords`) USING BTREE, KEY `type` (`type`) USING BTREE, KEY `status` (`status`) USING BTREE ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=DYNAMIC COMMENT='微信关键字回复表'; -- ---------------------------- -- Records of eb_wechat_reply -- ---------------------------- BEGIN; INSERT INTO `eb_wechat_reply` (`id`, `keywords`, `type`, `data`, `status`, `create_time`, `update_time`) VALUES (1, 'default', 'text', '{\"content\":\"欢迎来的Crmeb Java\",\"mediaId\":\"\",\"srcUrl\":\"\",\"articleData\":{}}', 1, '2022-07-19 14:23:03', '2022-07-19 14:23:03'); INSERT INTO `eb_wechat_reply` (`id`, `keywords`, `type`, `data`, `status`, `create_time`, `update_time`) VALUES (2, 'subscribe', 'text', '{\"content\":\"你好\",\"mediaId\":\"\",\"srcUrl\":\"\",\"articleData\":{}}', 1, '2021-07-05 14:42:26', '2021-07-05 14:42:26'); COMMIT; SET FOREIGN_KEY_CHECKS = 1;